sql
stringlengths
6
1.05M
CREATE PROCEDURE dbo.WebAttachment_Del ( @Id int ) AS SET NOCOUNT ON IF(@Id > 0) DELETE FROM WebAttachment WHERE Id=@Id; RETURN
-- This change allows for the OPTIONAL storage of an additional URL for -- the pull-down of data for the repository source. Also there is the -- introduction of a password hash for authenticating access to the -- repository update functions. ALTER TABLE haikudepot.repository ADD COLUMN password_hash VARCHAR(255); ALTER TABLE haikudepot.repository ADD COLUMN password_salt VARCHAR(255); UPDATE haikudepot.repository SET password_salt = MD5(id || random()::text); ALTER TABLE haikudepot.repository_source ADD COLUMN forced_internal_base_url VARCHAR(1024); -- a small addition to store the time of last import against the repository. ALTER TABLE haikudepot.repository_source ADD COLUMN last_import_timestamp TIMESTAMP;
<filename>SQL/plSql.sql<gh_stars>1-10 set serveroutput on DECLARE a NUMBER :=4; BEGIN a := a+1; if mod(a,2)=0 then dbms_output.put_line(a); else dbms_output.put_line(a+10); end if; END; / DECLARE i NUMBER:=1; BEGIN LOOP INSERT INTO T1 VALUES(i,i+1); i:=i+1; EXIT WHEN i>100; END LOOP; END; / DECLARE i NUMBER; BEGIN FOR i in 101..200 LOOP INSERT INTO T1 VALUES(i,i); END LOOP; END; / DECLARE i NUMBER:=201; BEGIN WHILE i<=300 LOOP INSERT INTO T1 VALUES(i,i); i:=i+1; END LOOP; END; / DECLARE n_pct employees.commission_pct%TYPE; v_eval varchar2(10); n_emp_id employees.employee_id%TYPE := 145; BEGIN SELECT commission_pct INTO n_pct FROM employees WHERE employee_id = n_emp_id; CASE n_pct WHEN 0 THEN v_eval:='N/A'; WHEN 0.1 THEN v_eval:='Low'; WHEN 0.4 THEN v_eval:='High'; ELSE v_eval:='Fair'; END CASE; DBMS_OUTPUT.PUT_LINE('EMPLOYEE '||n_emp_id||' commission is '|| TO_CHAR(n_pct)||' which is '||v_eval); END; / DECLARE givenName users.name%TYPE:=&name; BEGIN dbms_output.put_line('The role of ' || givenName ||' is ' || getRole(givenName)); END; / CREATE OR REPLACE FUNCTION getRole(givenName in users.name%TYPE) RETURN roles.role_name%TYPE IS roleName roles.role_name%TYPE; BEGIN select role_name into roleName from users join roles using (role_id) where users.name=givenName; RETURN roleName; END; / select * from t1; INSERT INTO employee_salary values(2,'Hari',15000,4000,1000,5000,15000,20000); INSERT INTO employee_salary values(1,'Vikram',31000,8000,1000,5000,35000,40000); INSERT INTO employee_salary values(3,'Vishal',14000,4000,1000,5000,15000,19000); INSERT INTO employee_salary values(4,'Pawan',14000,4000,1000,5000,15000,19000); INSERT INTO employee_salary values(5,'Kalyan',13000,4000,1000,5000,15000,18000); declare begin INSERT INTO employee_salary values(6,'Sri',53000,4000,1000,5000,15000,58000); declare ename employee_salary.emp_name%TYPE:='&name'; tax_percent NUMBER:=0; tax NUMBER:=0; grossSal employee_salary.gross_salary%TYPE:=0; BEGIN select gross_salary into grossSal from employee_salary where emp_name=ename; case when (grossSal>=15000 and grossSal<25000) then tax_percent:=5; when (grossSal>=25000 and grossSal<50000) then tax_percent:=10; when grossSal>=50000 then tax_percent:=20; end case; tax:=tax_percent*grossSal/100; dbms_output.put_line('Tax for '|| ename || ' is '||tax); END; end; / DECLARE -- declare a cursor CURSOR cur_chief IS SELECT u.name, r.role_name FROM users u INNER JOIN roles r ON u.role_id = r.role_id; r_chief cur_chief%ROWTYPE; BEGIN OPEN cur_chief; LOOP -- fetch information from cursor into record FETCH cur_chief INTO r_chief; EXIT WHEN cur_chief%NOTFOUND; -- print department - chief DBMS_OUTPUT.PUT_LINE(r_chief.name|| ' - ' || r_chief.role_name); END LOOP; -- close cursor cur_chief CLOSE cur_chief; END; / delete from t1; declare cursor cur_chief is select a,b from t1 where a<b for update; r_chief cur_chief%ROWTYPE; temp t1.a%type; begin open cur_chief; loop fetch cur_chief into r_chief; exit when cur_chief%NOTFOUND; temp:=r_chief.a; update t1 set a=r_chief.b where b=r_chief.b; update t1 set b=temp where b=r_chief.b; end loop; end; / select * from employee_salary; select * from t1; declare cursor cur_chief is select employee_id,first_name,salary,hire_date from employees where hire_date>TO_DATE('31-Dec-2004'); r_chief cur_chief%ROWTYPE; begin OPEN cur_chief; loop fetch cur_chief into r_chief; exit when cur_chief%NOTFOUND; dbms_output.put_line(r_chief.first_name||q'['s]'||' updated salary is '||(r_chief.salary*0.1+r_chief.salary)); end loop; end; / declare cursor cur_chief is select last_name,first_name,hire_date from employees; r_chief cur_chief%ROWTYPE; oldDate employees.hire_date%TYPE:=sysdate; first_name employees.first_name%TYPE; last_name employees.last_name%TYPE; begin open cur_chief; loop fetch cur_chief into r_chief; exit when cur_chief%NOTFOUND; if r_chief.hire_date<oldDate then oldDate:=r_chief.hire_date; first_name:=r_chief.first_name; last_name:=r_chief.last_name; end if; end loop; dbms_output.put_line(first_name||' '||last_name||' is the oldest employee hired on '||oldDate); end; / select * from employees; declare cursor cur_chief is select * from employees; r_chief cur_chief%ROWTYPE; begin open cur_chief; loop fetch cur_chief into r_chief; exit when cur_chief%NOTFOUND; exit when r_chief.employee_id>12; dbms_output.put_line(r_chief.first_name||' '||r_chief.last_name); end loop; end; / DECLARE TYPE t_name IS RECORD( first_name employees.first_name%TYPE, last_name employees.last_name%TYPE ); r_name t_name; -- name record n_emp_id employees.employee_id%TYPE := 200; BEGIN SELECT first_name, last_name INTO r_name FROM employees WHERE employee_id = n_emp_id; -- print out the employee's name DBMS_OUTPUT.PUT_LINE(r_name.first_name || ',' || r_name.last_name ); END; / declare cursor cur_chief is select u.name,r.role_name from users u join roles r on u.role_id=r.role_id; type t_users is record( user_name users.name%TYPE, role_name roles.role_name%TYPE ); r_users t_users; begin open cur_chief; loop fetch cur_chief into r_users; exit when cur_chief%NOTFOUND; dbms_output.put_line(r_users.user_name||' - '||r_users.role_name); end loop; end; / DECLARE TYPE t_name IS RECORD( first_name employees.first_name%TYPE, last_name employees.last_name%TYPE ); r_name t_name; r_name2 t_name; r_name_null t_name; n_emp_id employees.employee_id%TYPE := 200; BEGIN -- assign employee's infomation to record SELECT first_name, last_name INTO r_name FROM employees WHERE employee_id = n_emp_id; -- assign record to another record r_name2 := r_name; -- print out the employee's name DBMS_OUTPUT.PUT_LINE(r_name2.first_name || ',' || r_name2.last_name); -- assign record to NULL r_name2 := r_name_null; -- check NULL for each individual field IF r_name2.first_name IS NULL AND r_name2.last_name IS NULL THEN DBMS_OUTPUT.PUT_LINE('Record r_name2 is NULL'); END IF; END; / declare type t_emps is record( emp_name employees.first_name%TYPE, emp_id employees.employee_id%TYPE, salary employees.salary%TYPE ); type t_dept is record( dept_id departments.department_id%TYPE, location_id departments.location_id%TYPE ); type t_comp is record( r_emps t_emps, r_dept t_dept, location_name locations.city%TYPE ); cursor cur_chief is select e.first_name,e.employee_id,e.salary,e.department_id,c.location_id,c.city from employees e join (select d.department_id,d.location_id,l.city from departments d join locations l on d.location_id=l.location_id ) c on e.department_id=c.department_id; r_comp t_comp; begin open cur_chief; loop fetch cur_chief into r_comp.r_emps.emp_name,r_comp.r_emps.emp_id,r_comp.r_emps.salary,r_comp.r_dept.dept_id,r_comp.r_dept.location_id,r_comp.location_name; exit when cur_chief%NOTFOUND; dbms_output.put_line(r_comp.r_emps.emp_name||r_comp.r_emps.emp_id||r_comp.r_emps.salary||r_comp.r_dept.dept_id||r_comp.r_dept.location_id||r_comp.location_name); end loop; end; / declare password_too_short EXCEPTION; PRAGMA exception_init(password_too_short, -20001); user_password users.password%TYPE:='<PASSWORD>'; u_name users.username%TYPE; begin if length(user_password)<8 then --RAISE password_too_short; raise_application_error(-20001,'Password is too short'); else select username into u_name from users where password=<PASSWORD>; dbms_output.put_line('Username: '||u_name||' Password: '||<PASSWORD>); end if; exception when password_too_short then dbms_output.put_line('The password is too short'); when too_many_rows then dbms_output.put_line('The database returns more than one user'); when no_data_found then dbms_output.put_line('User with password '||user_password||' does not exist'); end; / declare u_name users.name%type; u_id users.user_id%type:=&UserId; begin select name into u_name from users where user_id<=u_id; dbms_output.put_line('customer name is '||u_name); exception when too_many_rows then dbms_output.put_line('The database returns more than one user'); when no_data_found then dbms_output.put_line('Customer '||u_id||' does not exist'); end; / declare salary_too_high exception; pragma exception_init(salary_too_high,-20003); l_emp_id employees.salary%TYPE:=&emp_id; l_salary employees.salary%TYPE:=&salary; l_max_sal employees.salary%TYPE; l_min_sal employees.salary%TYPE; begin select MAX(salary),MIN(salary) into l_max_sal,l_min_sal from employees group by job_id having job_id=(select job_id from employees where employee_id=l_emp_id); if l_salary>l_max_sal or l_salary<l_min_sal then dbms_output.put_line('Given salary is '||l_salary||', max is '||l_max_sal||', min is '||l_min_sal); raise salary_too_high; else update employees set salary=l_salary where employee_id=l_emp_id; dbms_output.put_line('Salary updated'); end if; exception when salary_too_high then dbms_output.put_line('The salary given is not in the range for the Job ID'); end; / select * from employees; select max(salary),min(salary),job_id from employees group by job_id; create or replace procedure hello is begin dbms_output.put_line('Hello World'); end; / begin hello(); end; / call hello(); create or replace procedure dispn(n int) is begin dbms_output.put_line(n||' square is : '||n*n); end; / call dispn(4); declare n int:=&num; begin dispn(n); end; / create or replace procedure giveDetails(emp_id employees.employee_id%TYPE) is emp_name employees.first_name%TYPE; emp_sal employees.salary%TYPE; begin select first_name,salary into emp_name,emp_sal from employees where employee_id = emp_id; dbms_output.put_line(emp_name|| q'['s salary is ]'||emp_sal); end; / declare emp_id employees.employee_id%TYPE:=&id; begin giveDetails(emp_id); end; / create or replace procedure sum_ab(a int,b int,c out int) is begin c:=a+b; end; / declare r int; begin sum_ab(23,29,r); dbms_output.put_line('sum is:' || r); end; / create or replace procedure giveName(emp_id employees.employee_id%TYPE,emp_name out employees.first_name%TYPE) is begin select first_name into emp_name from employees where employee_id = emp_id; end; / create or replace procedure giveSal(emp_name employees.first_name%TYPE,emp_sal out employees.salary%TYPE) is begin select salary into emp_sal from employees where first_name = emp_name; end; / declare emp_name employees.first_name%TYPE:='&name'; emp_sal employees.salary%TYPE; begin giveSal(emp_name,emp_sal); dbms_output.put_line(emp_sal); end; / declare emp_name employees.first_name%TYPE; emp_id employees.employee_id%TYPE:=&id; begin giveName(emp_id,emp_name); dbms_output.put_line(emp_name); end; / create or replace function ADD_TWO(a int,b int) return int is begin return (A+B); end; / declare begin dbms_output.put_line(ADD_TWO(2,3)); end; / create or replace function incrementSal(emp_id employees.employee_id%TYPE,x int) return employees.salary%TYPE is l_sal employees.salary%TYPE; begin select salary into l_sal from employees where employee_id=emp_id; return l_sal+(l_sal*x/100); end; / create or replace function returnSum return employees.salary%TYPE is l_sum employees.salary%TYPE; begin select SUM(salary) into l_sum from employees; return l_sum; end; / declare begin dbms_output.put_line(returnSum()); end; / declare begin dbms_output.put_line(INCREMENTSAL(182,10)); end; / create or replace procedure giveNumberOfBooks(auth_name author.name%TYPE,books_no out int) is begin select count(*) into books_no from book group by author_name having author_name=auth_name ; end; / insert into publisher values('Publisher 1','Hyderabad'); insert into publisher values('Publisher 2','Bangalore'); insert into publisher values('Publisher 3','Chennai'); insert into publisher values('Publisher 4','Mumbai'); delete from publisher; select * from publisher; insert into book values(1,'Title1',58,2001,'short stories','<NAME>','Publisher 1'); insert into book values(2,'Title2',45,2020,'short stories','<NAME>','Publisher 2'); insert into book values(3,'Title3',354,2012,'short stories','<NAME>','Publisher 3'); insert into book values(4,'Title4',234,2010,'novellas','<NAME>','Publisher 4'); insert into book values(5,'Title5',57,2009,'novellas','<NAME>','Publisher 1'); insert into book values(6,'Title6',435,2006,'novels','<NAME>','Publisher 2'); insert into book values(7,'Title7',35,2005,'novels','<NAME>','Publisher 3'); insert into book values(8,'Title8',123,2001,'poems','<NAME>','Publisher 4'); insert into book values(9,'Title9',78,2002,'poems','<NAME>','Publisher 1'); insert into book values(10,'Title10',97,2004,'short stories','<NAME>','Publisher 2'); select * from book; commit;
<filename>Database Files/Stored Procedure Scripts/Seller View/sp_getFeedbacks - Seller RR.sql USE [BuyGrandSellerReadReplica] GO /****** Object: StoredProcedure [dbo].[sp_getFeedbacks] Script Date: 12/20/2020 10:20:38 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: <NAME> -- Create date: 2020/12/20 -- Description: Stored procedure for retrieving feedbacks in seller view -- ============================================= CREATE OR ALTER PROCEDURE [dbo].[sp_getFeedbacks] ( @username nvarchar(15) ) AS BEGIN SET XACT_ABORT, NOCOUNT ON; DECLARE @transactionCount int; SET @transactionCount = @@TRANCOUNT; BEGIN TRY IF @transactionCount=0 BEGIN TRANSACTION; ELSE SAVE TRANSACTION sp_getFeedbacks select concat(firstName,' ', lastName) as 'username', feedbackID, message, submittedDate from dbo.login l inner join dbo.feedback f on l.username=f.username where f.username=@username; IF @transactionCount=0 COMMIT TRANSACTION; END TRY BEGIN CATCH DECLARE @errorNo int, @message varchar(max), @xstate int SELECT @errorNo = ERROR_NUMBER(), @message = ERROR_MESSAGE(), @xstate = XACT_STATE(); IF @transactionCount = 0 ROLLBACK TRANSACTION; ELSE IF @xstate = 1 ROLLBACK TRANSACTION sp_getFeedbacks; ELSE ROLLBACK TRANSACTION; END CATCH END
/* pharmnet_parent_identifiers.sql ~~~~~~~~~~~~~~~~~~~~ Obtains all parent-level identifiers in PhaDbProductMgr. This can be modified to obtain specific modifier types. Note that parent-level implies that this query will not obtain NDC-level identifiers */ select mi.item_id , product_desc = mi.value , identifier_type = uar_get_code_display(mi2.med_identifier_type_cd) , identifier_value = mi2.value from med_identifier mi , med_identifier mi2 , item_definition id , medication_definition md plan id where id.active_ind = 1 join md where md.item_id = id.item_id join mi where mi.item_id = md.item_id and mi.active_ind = 1 and mi.primary_ind = 1 and mi.med_product_id = 0 and mi.med_identifier_type_cd = value(uar_get_code_by("MEANING", 11000, "DESC")) join mi2 where mi2.item_id = mi.item_id and mi2.med_product_id = 0 and mi2.active_ind = 1 and mi2.primary_ind = 1 /*Remove comments for any specific identifiers you wish to look for */ /* - Remove here to filter for specific identifiers and mi2.med_identifier_type_cd in ( 0 ; , value(uar_get_code_by("MEANING", 11000, "DESC")) /*Description*/ ; , value(uar_get_code_by("MEANING", 11000, "BRAND_NAME")) ; , value(uar_get_code_by("MEANING", 11000, "CDM")) ; , value(uar_get_code_by("MEANING", 11000, "DESC_SHORT")) /*Rx Mnemonic*/ ; , value(uar_get_code_by("MEANING", 11000, "HCPCS")) ; , value(uar_get_code_by("MEANING", 11000, "GENERIC_NAME")) ; , value(uar_get_code_by("MEANING", 11000, "PYXIS")) ; , value(uar_get_code_by("MEANING", 11000, "RX DEVICE1")) ; , value(uar_get_code_by("MEANING", 11000, "RX DEVICE2")) ; , value(uar_get_code_by("MEANING", 11000, "RX DEVICE3")) ; , value(uar_get_code_by("MEANING", 11000, "RX DEVICE4")) ; , value(uar_get_code_by("MEANING", 11000, "RX DEVICE5")) ; , value(uar_get_code_by("MEANING", 11000, "RX MISC1")) ; , value(uar_get_code_by("MEANING", 11000, "RX MISC2")) ; , value(uar_get_code_by("MEANING", 11000, "RX MISC3")) ; , value(uar_get_code_by("MEANING", 11000, "RX MISC4")) ; , value(uar_get_code_by("MEANING", 11000, "RX MISC5")) ) */ ; - Remove here to filter for specific identifiers order by mi.value_key , mi2.med_identifier_type_cd , mi2.value_key
IF EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'api.valos_suoritteet')) DROP VIEW api.valos_suoritteet; GO IF EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'api.valos_koulutuksenkustannukset')) DROP VIEW api.valos_koulutuksenkustannukset; GO
-- +goose Up -- FYI this index takes up about 1/10th of the table space. CREATE INDEX CONCURRENTLY archived_jobs_status on archived_jobs (status); -- +goose Down DROP INDEX IF EXISTS archived_jobs_status;
select t.table_catalog as table_catalog, t.table_schema as table_schema, t.table_name as table_name from information_schema.tables as t where t.table_catalog = ? and t.table_schema = ? and t.table_name = ?
-- analyze3.test -- -- execsql { SELECT count(*) FROM t1 WHERE b LIKE like } SELECT count(*) FROM t1 WHERE b LIKE like
CREATE OR REPLACE VIEW grants_privileges AS SELECT r.privilege, r.role, NULL AS user_id, -- CASE WHEN s.privilege IS NOT NULL THEN 'Y' END AS is_active, CASE WHEN r.inherited = 'YES' THEN 'Y' END AS is_inherited, CASE WHEN r.admin_option = 'YES' THEN 'Y' END AS is_admin_option FROM role_sys_privs r LEFT JOIN session_privs s ON s.privilege = r.privilege UNION ALL -- SELECT u.privilege, NULL AS role, u.username AS user_id, -- CASE WHEN s.privilege IS NOT NULL THEN 'Y' END AS is_active, CASE WHEN u.inherited = 'YES' THEN 'Y' END AS is_inherited, CASE WHEN u.admin_option = 'YES' THEN 'Y' END AS is_admin_option FROM user_sys_privs u LEFT JOIN session_privs s ON s.privilege = u.privilege; -- COMMENT ON TABLE grants_privileges IS '[CORE - DASHBOARD] Grants';
<reponame>Shuttl-Tech/antlr_psql -- file:rolenames.sql ln:406 expect:true GRANT ALL PRIVILEGES ON FUNCTION testagg4(int2) TO SESSION_USER
<filename>table_schemata.sql<gh_stars>0 -- Create tables CREATE TABLE "titles" ( "title_id" VARCHAR(5) NOT NULL, "title" VARCHAR(30) NOT NULL, CONSTRAINT "pk_titles" PRIMARY KEY ( "title_id" ), CONSTRAINT "uc_titles_title" UNIQUE ( "title" ) ); CREATE TABLE "departments" ( "dept_no" VARCHAR(4) NOT NULL, "dept_name" VARCHAR(30) NOT NULL, CONSTRAINT "pk_departments" PRIMARY KEY ( "dept_no" ), CONSTRAINT "uc_departments_dept_name" UNIQUE ( "dept_name" ) ); CREATE TABLE "employees" ( "emp_no" INT NOT NULL, -- Cannot use SERIAL as there is a break between 299999 and 400000 "emp_title_id" VARCHAR(5) NOT NULL, "birth_date" DATE NOT NULL, "first_name" VARCHAR(30) NOT NULL, "last_name" VARCHAR(30) NOT NULL, "sex" VARCHAR(1) NOT NULL, "hire_date" DATE NOT NULL, CONSTRAINT "pk_employees" PRIMARY KEY ( "emp_no" ) ); CREATE TABLE "salaries" ( "emp_no" INT NOT NULL, "salary" money NOT NULL, CONSTRAINT "pk_salaries" PRIMARY KEY ( "emp_no" ) ); CREATE TABLE "dept_emp" ( "emp_no" INT NOT NULL, "dept_no" VARCHAR(4) NOT NULL, CONSTRAINT "pk_dept_emp" PRIMARY KEY ( "emp_no","dept_no" ) ); -- Add contraints to tables created ALTER TABLE "employees" ADD CONSTRAINT "fk_employees_emp_title_id" FOREIGN KEY("emp_title_id") REFERENCES "titles" ("title_id"); ALTER TABLE "employees" ADD CONSTRAINT "CHK_sex_validation" CHECK ("sex" IN ("F", "M")) ; ALTER TABLE "salaries" ADD CONSTRAINT "fk_salaries_emp_no" FOREIGN KEY("emp_no") REFERENCES "employees" ("emp_no"); ALTER TABLE "dept_emp" ADD CONSTRAINT "fk_dept_emp_emp_no" FOREIGN KEY("emp_no") REFERENCES "employees" ("emp_no"); ALTER TABLE "dept_emp" ADD CONSTRAINT "fk_dept_emp_dept_no" FOREIGN KEY("dept_no") REFERENCES "departments" ("dept_no");
<gh_stars>1000+ SELECT public.db_alter_table('M_Product_LotNumber_Lock','ALTER TABLE M_Product_LotNumber_Lock RENAME TO M_Product_LotNumber_Quarantine'); SELECT public.db_alter_table('M_Product_LotNumber_Quarantine', 'ALTER TABLE M_Product_LotNumber_Quarantine RENAME COLUMN M_Product_LotNumber_Lock_ID TO M_Product_LotNumber_Quarantine_ID');
<gh_stars>0 ALTER PROCEDURE [transfer].[partner.fetch] -- this sp gets all existing card product in db or selected by binid or bin @filterBy [transfer].filterByTT READONLY, -- information for filters @orderBy [core].orderByTT READONLY, -- information for ordering @paging [core].[pagingTT] READONLY, --information for paging @meta core.metaDataTT READONLY -- information for the user that makes the operation AS SET NOCOUNT ON DECLARE @userId BIGINT = (SELECT [auth.actorId] FROM @meta) -- checks if the user has a right to make the operation DECLARE @actionID VARCHAR(100) = OBJECT_SCHEMA_NAME(@@PROCID) + '.' + OBJECT_NAME(@@PROCID), @RETURN INT = 0 EXEC @RETURN = [user].[permission.check] @actionId = @actionID, @objectId = NULL, @meta = @meta IF @RETURN != 0 BEGIN RETURN 55555 END DECLARE @languageId BIGINT = ( SELECT languageId FROM [core].[language] cl JOIN [user].[session] us ON us.[language] = cl.[iso2Code] WHERE us.[actorId] = @userId ) DECLARE @partnerId NVARCHAR(50) ---the unique reference of transfer partner in UTtransfer DECLARE @name NVARCHAR(50) = NULL -- the name of partner DECLARE @port NVARCHAR(50) = NULL -- the name of the port, DECLARE @mode NVARCHAR(20) ---the mode of the partner, DECLARE @pageSize INT --how many rows will be returned per page DECLARE @pageNumber INT -- which page number to display DECLARE @sortBy VARCHAR(50) = 'updatedOn' -- ON which column results to be sorted DECLARE @sortOrder VARCHAR(4) = 'DESC'--what kind of sort to be used ascending or descending SELECT @partnerId = partnerid, @name = name, @port = port, @mode = mode FROM @filterBy SELECT @sortBy = [field], @sortOrder = [dir] FROM @orderBy WHERE [field] IN ('partnerId', 'name', 'port', 'mode') AND [dir] IN ('ASC', 'DESC') SELECT @pageNumber = ISNULL(pageNumber, 1), @pageSize = ISNULL([pageSize], 20) FROM @paging DECLARE @startRow INT = (@pageNumber - 1) * @pageSize + 1 DECLARE @endRow INT = @startRow + @pageSize - 1 IF OBJECT_ID('tempdb..#Partner') IS NOT NULL DROP TABLE #Partner CREATE TABLE #Partner ( partnerId VARCHAR(50) NOT NULL, [name] NVARCHAR(50) NOT NULL, port VARCHAR(50) NOT NULL, mode VARCHAR(20) NOT NULL, settlementDate datetime, settlementAccount VARCHAR(50), feeAccount VARCHAR(50), commissionAccount VARCHAR(50), serialNumber BIGINT, rowNum INT, recordsTotal INT); WITH CTE AS ( SELECT partnerId, name, port, mode, settlementAccount, settlementDate, feeAccount, commissionAccount, serialNumber, ROW_NUMBER() OVER( ORDER BY CASE WHEN @sortOrder = 'ASC' THEN CASE WHEN @sortBy = 'partnerId' THEN p.partnerId WHEN @sortBy = 'name' THEN p.[name] WHEN @sortBy = 'port' THEN p.port WHEN @sortBy = 'mode' THEN p.mode END END, CASE WHEN @sortOrder = 'DESC' THEN CASE WHEN @sortBy = 'partnerId' THEN p.partnerId WHEN @sortBy = 'name' THEN p.[name] WHEN @sortBy = 'port' THEN p.port WHEN @sortBy = 'mode' THEN p.mode END END DESC ) rowNum, COUNT(*) OVER(PARTITION BY 1) AS recordsTotal FROM ( SELECT p.partnerId, p.name, p.port, p.mode, p.settlementAccount, p.settlementDate, p.feeAccount, p.commissionAccount, p.serialNumber FROM [transfer].partner p WHERE (@partnerId IS NULL OR p.partnerId LIKE '%' + @partnerId + '%') AND (@name IS NULL OR p.name LIKE '%' + @name + '%') AND (@port IS NULL OR p.port LIKE '%' + @port + '%') AND (@mode IS NULL OR p.mode LIKE '%' + @mode + '%') ) p ) INSERT INTO #Partner( partnerId, [name], port, mode, settlementAccount, settlementDate, feeAccount, commissionAccount, serialNumber, rowNum, recordsTotal ) SELECT partnerId, [name], port, mode, settlementAccount, settlementDate, feeAccount, commissionAccount, serialNumber, rowNum, recordsTotal FROM CTE WHERE rowNum BETWEEN @startRow AND @endRow SELECT 'partner' AS resultSetName SELECT partnerId, name, port, mode, settlementAccount, settlementDate, feeAccount, commissionAccount, serialNumber FROM #Partner p ORDER BY rowNum SELECT 'pagination' AS resultSetName SELECT TOP 1 @pageSize AS pageSize, recordsTotal AS recordsTotal, @pageNumber AS pageNumber, (recordsTotal - 1) / @pageSize + 1 AS pagesTotal FROM #Partner DROP TABLE #Partner
<reponame>marianod92/pixie DROP TABLE IF EXISTS data_retention_plugin_releases;
<reponame>pribtech/nodete alter table ?SCHEMA?.employee_salary alter column pay drop expression set generated always as (salary + 2 * bonus); set integrity for ?SCHEMA?.employee_salary generated column immediate unchecked; insert into ?SCHEMA?.employee_salary(empno, salary, bonus) values (3,10000,1000), (4,20000,5000); select * from ?SCHEMA?.employee_salary;
<filename>Database/waterdept.sql<gh_stars>1-10 -- phpMyAdmin SQL Dump -- version 4.7.9 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Aug 16, 2018 at 07:42 PM -- Server version: 5.7.21 -- PHP Version: 5.6.35 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `waterdept` -- -- -------------------------------------------------------- -- -- Table structure for table `application_assigned` -- DROP TABLE IF EXISTS `application_assigned`; CREATE TABLE IF NOT EXISTS `application_assigned` ( `appId` varchar(50) NOT NULL, `empId` varchar(50) NOT NULL, `dateOfCreation` datetime NOT NULL, `dateOfDeletion` datetime DEFAULT NULL, `lastModified` datetime NOT NULL, `applicationStatus` varchar(150) NOT NULL, PRIMARY KEY (`appId`), KEY `empId` (`empId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `chats` -- DROP TABLE IF EXISTS `chats`; CREATE TABLE IF NOT EXISTS `chats` ( `contactNo` varchar(50) NOT NULL, `message` text NOT NULL, `time` datetime NOT NULL, KEY `contactNo` (`contactNo`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `designation_name` -- DROP TABLE IF EXISTS `designation_name`; CREATE TABLE IF NOT EXISTS `designation_name` ( `designationId` varchar(50) NOT NULL, `designationName` varchar(100) NOT NULL, PRIMARY KEY (`designationId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `document` -- DROP TABLE IF EXISTS `document`; CREATE TABLE IF NOT EXISTS `document` ( `documentId` int(50) NOT NULL AUTO_INCREMENT, `documentName` varchar(100) NOT NULL, PRIMARY KEY (`documentId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `employee` -- DROP TABLE IF EXISTS `employee`; CREATE TABLE IF NOT EXISTS `employee` ( `empId` varchar(50) NOT NULL, `firstName` varchar(100) NOT NULL, `lastName` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `password` varchar(100) NOT NULL, `talukaId` int(50) NOT NULL, `designationId` varchar(50) NOT NULL, `isBlocked` varchar(20) NOT NULL DEFAULT '0', PRIMARY KEY (`empId`), KEY `designationId` (`designationId`), KEY `talukaId` (`talukaId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `required_documents` -- DROP TABLE IF EXISTS `required_documents`; CREATE TABLE IF NOT EXISTS `required_documents` ( `scId` varchar(50) NOT NULL, `documentId` int(50) NOT NULL, KEY `scId` (`scId`), KEY `documentId` (`documentId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `required_eligibility_age` -- DROP TABLE IF EXISTS `required_eligibility_age`; CREATE TABLE IF NOT EXISTS `required_eligibility_age` ( `scId` varchar(50) NOT NULL, `min` int(50) NOT NULL, `max` int(50) NOT NULL, KEY `scId` (`scId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `required_eligibility_caste` -- DROP TABLE IF EXISTS `required_eligibility_caste`; CREATE TABLE IF NOT EXISTS `required_eligibility_caste` ( `scId` varchar(50) NOT NULL, `casteId` int(50) NOT NULL, KEY `scId` (`scId`), KEY `casteId` (`casteId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `required_eligibility_district` -- DROP TABLE IF EXISTS `required_eligibility_district`; CREATE TABLE IF NOT EXISTS `required_eligibility_district` ( `scId` varchar(50) NOT NULL, `districtId` int(50) NOT NULL, KEY `scId` (`scId`), KEY `districtId` (`districtId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `required_eligibility_occupation` -- DROP TABLE IF EXISTS `required_eligibility_occupation`; CREATE TABLE IF NOT EXISTS `required_eligibility_occupation` ( `scId` varchar(50) NOT NULL, `occupationId` int(50) NOT NULL, KEY `scId` (`scId`), KEY `occupationId` (`occupationId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `required_eligibility_religion` -- DROP TABLE IF EXISTS `required_eligibility_religion`; CREATE TABLE IF NOT EXISTS `required_eligibility_religion` ( `scId` varchar(50) NOT NULL, `religionId` int(50) NOT NULL, KEY `scId` (`scId`), KEY `religionId` (`religionId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `required_eligibility_salary` -- DROP TABLE IF EXISTS `required_eligibility_salary`; CREATE TABLE IF NOT EXISTS `required_eligibility_salary` ( `scId` varchar(50) NOT NULL, `min` int(50) NOT NULL, `max` int(50) DEFAULT NULL, KEY `scId` (`scId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `required_eligibility_sex` -- DROP TABLE IF EXISTS `required_eligibility_sex`; CREATE TABLE IF NOT EXISTS `required_eligibility_sex` ( `scId` varchar(50) NOT NULL, `sex` varchar(10) DEFAULT NULL, KEY `scId` (`scId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `schemes` -- DROP TABLE IF EXISTS `schemes`; CREATE TABLE IF NOT EXISTS `schemes` ( `scId` varchar(50) NOT NULL, `schemeName` varchar(100) NOT NULL, `startDate` date NOT NULL, `endDate` date NOT NULL, `schemeDescription` text NOT NULL, `dateOfCreation` datetime NOT NULL, `dateOfDeletion` datetime DEFAULT NULL, `isDelete` varchar(20) NOT NULL DEFAULT '0', PRIMARY KEY (`scId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Constraints for dumped tables -- -- -- Constraints for table `application_assigned` -- ALTER TABLE `application_assigned` ADD CONSTRAINT `application_assigned_ibfk_1` FOREIGN KEY (`empId`) REFERENCES `employee` (`empId`) ON DELETE CASCADE, ADD CONSTRAINT `application_assigned_ibfk_2` FOREIGN KEY (`appId`) REFERENCES `citizens`.`applied_schemes` (`appId`) ON DELETE CASCADE; -- -- Constraints for table `chats` -- ALTER TABLE `chats` ADD CONSTRAINT `chats_ibfk_1` FOREIGN KEY (`contactNo`) REFERENCES `citizens`.`citizen_details` (`contactNo`) ON DELETE CASCADE; -- -- Constraints for table `employee` -- ALTER TABLE `employee` ADD CONSTRAINT `employee_ibfk_1` FOREIGN KEY (`designationId`) REFERENCES `designation_name` (`designationId`) ON DELETE CASCADE, ADD CONSTRAINT `employee_ibfk_2` FOREIGN KEY (`talukaId`) REFERENCES `superadmin`.`pin_taluka_rel` (`talukaId`) ON DELETE CASCADE; -- -- Constraints for table `required_documents` -- ALTER TABLE `required_documents` ADD CONSTRAINT `required_documents_ibfk_1` FOREIGN KEY (`scId`) REFERENCES `schemes` (`scId`) ON DELETE CASCADE, ADD CONSTRAINT `required_documents_ibfk_2` FOREIGN KEY (`documentId`) REFERENCES `document` (`documentId`) ON DELETE CASCADE; -- -- Constraints for table `required_eligibility_age` -- ALTER TABLE `required_eligibility_age` ADD CONSTRAINT `required_eligibility_age_ibfk_1` FOREIGN KEY (`scId`) REFERENCES `schemes` (`scId`) ON DELETE CASCADE; -- -- Constraints for table `required_eligibility_caste` -- ALTER TABLE `required_eligibility_caste` ADD CONSTRAINT `required_eligibility_caste_ibfk_1` FOREIGN KEY (`scId`) REFERENCES `schemes` (`scId`) ON DELETE CASCADE, ADD CONSTRAINT `required_eligibility_caste_ibfk_2` FOREIGN KEY (`casteId`) REFERENCES `superadmin`.`caste` (`casteId`) ON DELETE CASCADE; -- -- Constraints for table `required_eligibility_district` -- ALTER TABLE `required_eligibility_district` ADD CONSTRAINT `required_eligibility_district_ibfk_1` FOREIGN KEY (`scId`) REFERENCES `schemes` (`scId`) ON DELETE CASCADE, ADD CONSTRAINT `required_eligibility_district_ibfk_2` FOREIGN KEY (`districtId`) REFERENCES `superadmin`.`district_name` (`districtId`) ON DELETE CASCADE; -- -- Constraints for table `required_eligibility_occupation` -- ALTER TABLE `required_eligibility_occupation` ADD CONSTRAINT `required_eligibility_occupation_ibfk_1` FOREIGN KEY (`scId`) REFERENCES `schemes` (`scId`) ON DELETE CASCADE, ADD CONSTRAINT `required_eligibility_occupation_ibfk_2` FOREIGN KEY (`occupationId`) REFERENCES `superadmin`.`occupation` (`occupationId`) ON DELETE CASCADE; -- -- Constraints for table `required_eligibility_religion` -- ALTER TABLE `required_eligibility_religion` ADD CONSTRAINT `required_eligibility_religion_ibfk_1` FOREIGN KEY (`scId`) REFERENCES `schemes` (`scId`) ON DELETE CASCADE, ADD CONSTRAINT `required_eligibility_religion_ibfk_2` FOREIGN KEY (`religionId`) REFERENCES `superadmin`.`religion` (`religionId`) ON DELETE CASCADE; -- -- Constraints for table `required_eligibility_salary` -- ALTER TABLE `required_eligibility_salary` ADD CONSTRAINT `required_eligibility_salary_ibfk_1` FOREIGN KEY (`scId`) REFERENCES `schemes` (`scId`) ON DELETE CASCADE; -- -- Constraints for table `required_eligibility_sex` -- ALTER TABLE `required_eligibility_sex` ADD CONSTRAINT `required_eligibility_sex_ibfk_1` FOREIGN KEY (`scId`) REFERENCES `schemes` (`scId`) ON DELETE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- ---------------------------- -- 创建用户表 -- ---------------------------- DROP TABLE IF EXISTS `sys_user`; CREATE TABLE `sys_user` ( `user_id` bigint(20) NOT NULL AUTO_INCREMENT, `username` varchar(50) DEFAULT NULL COMMENT '用户名', `name` varchar(100) DEFAULT NULL, `password` varchar(50) DEFAULT NULL COMMENT '密码', `dept_id` bigint(20) DEFAULT NULL, `email` varchar(100) DEFAULT NULL COMMENT '邮箱', `mobile` varchar(100) DEFAULT NULL COMMENT '手机号', `status` tinyint(255) DEFAULT NULL COMMENT '状态 0:禁用,1:正常', `user_id_create` bigint(255) DEFAULT NULL COMMENT '创建用户id', `gmt_create` datetime DEFAULT NULL COMMENT '创建时间', `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间', `sex` bigint(32) DEFAULT NULL COMMENT '性别', `birth` datetime DEFAULT NULL COMMENT '出身日期', `pic_id` bigint(32) DEFAULT NULL, `live_address` varchar(500) DEFAULT NULL COMMENT '现居住地', `hobby` varchar(255) DEFAULT NULL COMMENT '爱好', `province` varchar(255) DEFAULT NULL COMMENT '省份', `city` varchar(255) DEFAULT NULL COMMENT '所在城市', `district` varchar(255) DEFAULT NULL COMMENT '所在地区', `identity` varchar(255) DEFAULT NULL COMMENT '用户身份', PRIMARY KEY (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=138 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of sys_user -- ---------------------------- INSERT INTO `sys_user` VALUES ('1', 'admin', '超级管理员', '<PASSWORD>', '6', '<EMAIL>', '17699999999', '1', '1', '2018-07-15 21:40:39', '2018-07-15 21:41:00', '96', '2018-06-15 00:00:00', '138', 'ccc', '122;121;', '上海市', '上海市郊区', '闵行区','admin'); INSERT INTO `sys_user` VALUES ('2', 'test', '临时用户', 'b132f5f968c9373261f74025c23c2222', '6', '<EMAIL>', null, '1', '1', '2018-07-14 13:43:05', '2018-07-14 21:15:36', null, null, null, null, null, null, null, null,'user'); -- ---------------------------- -- 创建文件表 -- ---------------------------- DROP TABLE IF EXISTS `sys_file`; CREATE TABLE `sys_file` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `type` int(11) DEFAULT NULL COMMENT '文件类型', `url` varchar(200) DEFAULT NULL COMMENT 'URL地址', `create_date` datetime DEFAULT NULL COMMENT '创建时间', `status` varchar(200) DEFAULT NULL COMMENT '状态', `user_id` bigint(20) DEFAULT NULL COMMENT '用户ID', `consult_id` bigint(20) DEFAULT NULL COMMENT '征集id', `file_type` varchar(200) DEFAULT NULL COMMENT '文件下载类型', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=142 DEFAULT CHARSET=utf8 COMMENT='文件上传'; -- ---------------------------- -- 创建菜单表 -- ---------------------------- DROP TABLE IF EXISTS `sys_menu`; CREATE TABLE `sys_menu` ( `menu_id` bigint(20) NOT NULL AUTO_INCREMENT, `parent_id` bigint(20) DEFAULT NULL COMMENT '父菜单ID,一级菜单为0', `name` varchar(50) DEFAULT NULL COMMENT '菜单名称', `url` varchar(200) DEFAULT NULL COMMENT '菜单URL', `perms` varchar(500) DEFAULT NULL COMMENT '授权(多个用逗号分隔,如:user:list,user:create)', `type` int(11) DEFAULT NULL COMMENT '类型 0:目录 1:菜单 2:按钮', `icon` varchar(50) DEFAULT NULL COMMENT '菜单图标', `order_num` int(11) DEFAULT NULL COMMENT '排序', `gmt_create` datetime DEFAULT NULL COMMENT '创建时间', `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间', PRIMARY KEY (`menu_id`) ) ENGINE=InnoDB AUTO_INCREMENT=105 DEFAULT CHARSET=utf8 COMMENT='菜单管理'; -- ---------------------------- -- Records of sys_menu -- ---------------------------- INSERT INTO `sys_menu` VALUES ('1', '0', '用户信息', '', '', '0', 'fa fa-bars', '1', '2017-08-09 22:49:47', null); INSERT INTO `sys_menu` VALUES ('11', '1', '用户管理', 'sys/user/', 'sys:user:user', '1', 'fa fa-user', '0', '2017-08-10 14:12:11', null); INSERT INTO `sys_menu` VALUES ('12', '1', '充值管理', 'sys/recharge/', 'sys:recharge:recharge', '2', 'fa fa-user', '0', '2017-08-10 14:12:11', null); INSERT INTO `sys_menu` VALUES ('2', '0', '多媒体管理', '', '', '0', 'fa fa-bars', '2', '2017-08-09 22:49:47', null); INSERT INTO `sys_menu` VALUES ('21', '2', '多媒体管理', '/common/sysFile','common:sysFile:sysFile', '1', 'fa fa-folder-open', '0', '2017-08-10 14:12:11', null); INSERT INTO `sys_menu` VALUES ('22', '2', '评论管理', 'common/comment', 'common:comment:comment', '1', 'fa fa-user', '0', '2017-08-10 14:12:11', null); INSERT INTO `sys_menu` VALUES ('23', '2', '收藏管理', 'common/collection', 'common:collection:collection', '1', 'fa fa-user', '0', '2017-08-10 14:12:11', null); INSERT INTO `sys_menu` VALUES ('3', '0', '征集信息管理', '', '', '0', 'fa fa-bars', '3', '2017-08-09 22:49:47', null); INSERT INTO `sys_menu` VALUES ('31', '3', '征集表', 'common/consult', 'common:consult:consult', '1', 'fa fa-user', '0', '2017-08-10 14:12:11', null); DROP TABLE IF EXISTS `sys_log`; CREATE TABLE `sys_log` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) DEFAULT NULL COMMENT '用户id', `username` varchar(50) DEFAULT NULL COMMENT '用户名', `operation` varchar(50) DEFAULT NULL COMMENT '用户操作', `time` int(11) DEFAULT NULL COMMENT '响应时间', `method` varchar(200) DEFAULT NULL COMMENT '请求方法', `params` varchar(5000) DEFAULT NULL COMMENT '请求参数', `ip` varchar(64) DEFAULT NULL COMMENT 'IP地址', `gmt_create` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=609 DEFAULT CHARSET=utf8 COMMENT='系统日志'; DROP TABLE IF EXISTS `sys_recharge`; CREATE TABLE `sys_recharge` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) DEFAULT NULL COMMENT '用户id', `type` varchar(50) DEFAULT NULL COMMENT '充值类型', `begin_time` datetime DEFAULT NULL COMMENT '开始时间', `end_time` datetime DEFAULT NULL COMMENT '结束时间', `amount` bigint(20) DEFAULT NULL COMMENT '充值金额', `gmt_create` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=609 DEFAULT CHARSET=utf8 COMMENT='充值记录'; DROP TABLE IF EXISTS `sys_collection`; CREATE TABLE `sys_collection` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) DEFAULT NULL COMMENT '用户id', `file_id` varchar(50) DEFAULT NULL COMMENT '多媒体id', `create_time` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=609 DEFAULT CHARSET=utf8 COMMENT='收藏记录'; DROP TABLE IF EXISTS `sys_comment`; CREATE TABLE `sys_comment` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) DEFAULT NULL COMMENT '用户id', `file_id` bigint(20) DEFAULT NULL COMMENT '多媒体id', `content` varchar(5000) DEFAULT NULL COMMENT '内容', `create_time` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=609 DEFAULT CHARSET=utf8 COMMENT='评论'; DROP TABLE IF EXISTS `sys_consult`; CREATE TABLE `sys_consult` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) DEFAULT NULL COMMENT '用户id', `content` varchar(5000) DEFAULT NULL COMMENT '征集内容', `readed` bigint(20) DEFAULT 0 COMMENT '阅读量', `gooded` bigint(20) DEFAULT 0 COMMENT '点赞数', `create_time` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=609 DEFAULT CHARSET=utf8 COMMENT='征集';
CREATE FUNCTION func333() RETURNS integer LANGUAGE plpgsql AS $$ DECLARE val INTEGER; BEGIN val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.TABLE334);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.TABLE379);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.TABLE388);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.VIEW93);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.VIEW77);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.VIEW9);CALL FUNC151(MYVAR);CALL FUNC472(MYVAR);CALL FUNC877(MYVAR);CALL FUNC47(MYVAR);END $$; GO
<gh_stars>1000+ ALTER TABLE `identity_recovery_tokens` DROP COLUMN `issued_at`;
<reponame>jgmize/kitsune<gh_stars>1-10 /* Allow NULL because the only sane default I can think of (en-US) * may not exist. */ ALTER TABLE `questions_question` ADD COLUMN `locale_id` integer NULL, ADD CONSTRAINT `locale_id_refs_id_643d2ff3` FOREIGN KEY (`locale_id`) REFERENCES `wiki_locale` (`id`), ADD COLUMN `product_id` integer NULL, ADD CONSTRAINT `product_id_refs_id_9659be74` FOREIGN KEY (`product_id`) REFERENCES `products_product` (`id`), ADD COLUMN `topic_id` integer NULL, ADD CONSTRAINT `topic_id_refs_id_b4f2f293` FOREIGN KEY (`topic_id`) REFERENCES `topics_topic` (`id`);
delete from notification; alter table notification add column user_log_id bigint; ALTER TABLE ONLY notification ADD CONSTRAINT fk_notification_user_log FOREIGN KEY (user_log_id) REFERENCES user_log(id); alter table notification add column last_attempt_time timestamp; alter table notification add column next_attempt_time timestamp; alter table notification add column attempt_count int4 not null;
<gh_stars>1-10 -- MODULE XTS742 -- SQL Test Suite, V6.0, Interactive SQL, xts742.sql -- 59-byte ID -- TEd Version # -- AUTHORIZATION CTS1 SELECT USER FROM HU.ECCO; -- RERUN if USER value does not match preceding AUTHORIZATION comment ROLLBACK WORK; -- date_time print -- TEST:7042 COUNT ALL <literal>! SELECT COUNT(ALL 115.5), COUNT(ALL 'ATHINA'), COUNT(ALL 255), COUNT(*) FROM CL_DATA_TYPE; -- PASS:7042 If COUNTs are 6, 6, 6, 6? INSERT INTO CTS1.CL_DATA_TYPE VALUES(NULL,55,225,10); -- PASS:7042 If 1 row inserted successfully? INSERT INTO CTS1.CL_DATA_TYPE VALUES(NULL,15,140,NULL); -- PASS:7042 If 1 row inserted successfully? SELECT COUNT(*),COUNT(ALL 119), COUNT(ALL 'GIORGOS') , COUNT(CL_CHAR), COUNT(CL_REAL) FROM CL_DATA_TYPE; -- PASS:7042 If COUNTs are 8, 8, 8, 6, 7? -- PASS:7042 If WARNING - null value eliminated in set function? INSERT INTO CTS1.CL_DATA_TYPE VALUES(NULL,0,0,NULL); -- PASS:7042 If 1 row inserted successfully? SELECT COUNT(*), COUNT(ALL 1000), COUNT(ALL 'STEFOS'), COUNT(CL_CHAR), COUNT(CL_REAL) FROM CL_DATA_TYPE; -- PASS:7042 If COUNTs = 9, 9, 9, 6, 7? -- PASS:7042 If WARNING - null value eliminated in set function? ROLLBACK WORK; -- END TEST >>> 7042 <<< END TEST -- ********************************************* -- *************************************************////END-OF-MODULE
-- phpMyAdmin SQL Dump -- version 4.8.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jan 28, 2020 at 02:41 PM -- Server version: 10.1.37-MariaDB -- PHP Version: 7.3.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `newsapi` -- -- -------------------------------------------------------- -- -- Table structure for table `academics` -- CREATE TABLE `academics` ( `id` int(10) UNSIGNED NOT NULL, `academicyear` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `academics` -- INSERT INTO `academics` (`id`, `academicyear`, `created_at`, `updated_at`) VALUES (1, 'I', '2019-12-12 07:05:50', NULL), (2, 'II', '2019-12-12 07:05:55', NULL), (3, 'III', '2019-12-12 07:06:01', NULL), (4, 'IV', '2019-12-12 07:06:06', NULL), (5, 'V', '2019-12-12 07:06:12', NULL); -- -------------------------------------------------------- -- -- Table structure for table `academic_details` -- CREATE TABLE `academic_details` ( `id` int(10) UNSIGNED NOT NULL, `academic_id` int(11) NOT NULL, `startdate` date NOT NULL, `enddate` date NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `academic_details` -- INSERT INTO `academic_details` (`id`, `academic_id`, `startdate`, `enddate`, `created_at`, `updated_at`) VALUES (1, 1, '2019-12-02', '2020-01-01', '2019-12-12 07:06:28', NULL); -- -------------------------------------------------------- -- -- Table structure for table `ads_positions` -- CREATE TABLE `ads_positions` ( `id` int(10) UNSIGNED NOT NULL, `position` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ads_positions` -- INSERT INTO `ads_positions` (`id`, `position`, `created_at`, `updated_at`) VALUES (1, 'slidetop', '2019-12-30 23:26:08', NULL), (2, 'adsvideo', '2019-12-31 00:00:44', NULL), (3, 'toppress', '2020-01-03 05:41:01', NULL), (4, 'adspressbartop', '2020-01-03 05:56:42', NULL), (5, 'adspressbarcenter', '2020-01-03 05:56:51', NULL), (6, 'adspressbarbottom', '2020-01-03 05:57:04', NULL), (7, 'pressreleasetop', '2020-01-03 19:51:26', NULL), (8, 'pressreleasecenter', '2020-01-03 19:51:34', NULL), (9, 'pressreleasebottom', '2020-01-03 19:51:42', NULL), (10, 'tagtop', '2020-01-04 05:54:45', NULL), (11, 'tagcenter', '2020-01-04 05:54:55', NULL), (12, 'tagbottom', '2020-01-04 05:55:07', NULL), (13, 'tagreleasetop', '2020-01-04 06:23:52', NULL), (14, 'tagreleasecenter', '2020-01-04 06:24:03', NULL), (15, 'tagreleasebottom', '2020-01-04 06:24:13', NULL); -- -------------------------------------------------------- -- -- Table structure for table `ads_posts` -- CREATE TABLE `ads_posts` ( `id` int(10) UNSIGNED NOT NULL, `adsposition_id` int(11) NOT NULL, `images` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ads_posts` -- INSERT INTO `ads_posts` (`id`, `adsposition_id`, `images`, `url`, `created_at`, `updated_at`) VALUES (1, 1, 'uploads/1/2019-12/4364088ef64b8195407d7d98ead76f88.jpg', '', '2019-12-30 23:30:12', NULL), (2, 1, 'uploads/1/2019-12/c7790ef57c7eb067364d7aa35b9d722f.jpg', '', '2019-12-30 23:30:39', NULL), (3, 2, 'uploads/1/2019-12/9c9b9069d72bcee0b269d25439574421.gif', '', '2019-12-31 00:01:00', NULL), (4, 2, 'uploads/1/2019-12/840d2ed1db63b4c245d792e450fdc78c.gif', '', '2019-12-31 00:01:09', NULL), (5, 3, 'uploads/1/2020-01/tiger.png', 'http://localhost:8000/', '2020-01-03 05:49:38', NULL), (6, 4, 'uploads/1/2020-01/bacd.jpg', '', '2020-01-03 06:07:21', NULL), (7, 5, 'uploads/1/2020-01/dd05fbf5c804f071574b40dacc15f7d4.jpg', '', '2020-01-03 06:11:27', NULL), (8, 6, 'uploads/1/2020-01/0215397b139c91c7829a905e7a3d2647.jpg', '', '2020-01-03 06:12:00', NULL), (9, 7, 'uploads/1/2020-01/sidbae.gif', 'https://www.youtube.com/watch?v=F35JRnrtrMI&t=2127s', '2020-01-03 20:06:03', NULL), (10, 7, 'uploads/1/2020-01/840d2ed1db63b4c245d792e450fdc78c.gif', 'https://www.youtube.com/watch?v=F35JRnrtrMI&t=2127s', '2020-01-03 20:06:26', NULL), (11, 7, 'uploads/1/2020-01/dd05fbf5c804f071574b40dacc15f7d4.jpg', '', '2020-01-03 20:06:48', NULL), (12, 8, 'uploads/1/2020-01/bacd.jpg', '', '2020-01-03 20:08:40', NULL), (13, 9, 'uploads/1/2020-01/0215397b139c91c7829a905e7a3d2647.jpg', '', '2020-01-03 20:09:32', NULL), (14, 10, 'uploads/1/2020-01/4364088ef64b8195407d7d98ead76f88.jpg', '', '2020-01-04 06:18:55', NULL), (15, 11, 'uploads/1/2020-01/0215397b139c91c7829a905e7a3d2647.jpg', '', '2020-01-04 06:20:43', NULL), (16, 12, 'uploads/1/2020-01/bacd.jpg', 'http://localhost:8000/', '2020-01-04 06:21:09', NULL), (17, 13, 'uploads/1/2020-01/c7790ef57c7eb067364d7aa35b9d722f.jpg', '', '2020-01-04 06:25:57', NULL), (18, 14, 'uploads/1/2020-01/bacd.jpg', '', '2020-01-04 06:26:19', NULL), (19, 15, 'uploads/1/2020-01/4364088ef64b8195407d7d98ead76f88.jpg', '', '2020-01-04 06:26:44', NULL); -- -------------------------------------------------------- -- -- Table structure for table `articles` -- CREATE TABLE `articles` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `categories_id` int(11) NOT NULL, `title_kh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `title_en` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description_kh` text COLLATE utf8mb4_unicode_ci NOT NULL, `description_en` text COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `article_kh` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `article_en` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `view` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `articles` -- INSERT INTO `articles` (`id`, `user_id`, `categories_id`, `title_kh`, `title_en`, `description_kh`, `description_en`, `images`, `article_kh`, `article_en`, `view`, `created_at`, `updated_at`) VALUES (1, 1, 1, 'Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On', 'Lorem Ipsum is simply dummy text', 'Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។ ចំនុចនៃការប្', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using', 'uploads/1/2020-01/5e0d5661906ba_1577932380_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ </span>Lorem Ipsum <span lang=\"KHM\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។\r\nកញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ </span>Lorem\r\nIpsum <span lang=\"KHM\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក </span>\'lorem\r\nipsum\' <span lang=\"KHM\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។\r\nកំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង\r\n(កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><img src=\"http://localhost:8000/uploads/1/2020-01/5dfc71f6fc84a627169a8d69f44b150a.jpg\" style=\"width: 740.5px; height: 416.713px;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\"><br></span><o:p></o:p></span></p>', '<p><span style=\"font-size: 10.5pt; line-height: 107%; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a long established fact\r\nthat a reader will be distracted by the readable content of a page when looking\r\nat its layout. The point of using Lorem Ipsum is that it has a more-or-less\r\nnormal distribution of letters, as opposed to using \'Content here, content\r\nhere\', making it look like readable English. Many desktop publishing packages\r\nand web page editors&nbsp;</span><img src=\"http://localhost:8000/uploads/1/2020-01/1ed16dbf438e920e98b066e8776fc76c.jpg\"><br></p>', 0, '2019-12-29 20:42:07', '2020-01-04 20:58:36'), (2, 1, 1, 'Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រា', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry', 'Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry', 'uploads/1/2020-01/5e0da74c574d7_1577953080_small.jpg', 'Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា LED, មាន​កុងទ័រ​បែប​ឌីជីថល​បង្ហាញ​ព័ត៌មាន​សំខាន់ៗ, មាន​ធុង​ប្រេង​ចំណុះ ៨ លីត្រ, មាន​បច្ចេកវិទ្យា​ Idling Stop និង​ប្រើ​ប្រាស់​ Smart Key ជា​ដើម។\r\nLorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។ ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 235, '2019-12-29 20:42:16', '2020-01-04 21:01:03'), (3, 0, 4, 'ចំនុចនៃការប្រើ Lorem Ipsumការចែកចាយអក្សរធម្មតា', 'now use Lorem Ipsum as their Lorem Ipsum', 'ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតា', 'now use Lorem Ipsum as their default model text', 'uploads/1/2020-01/5e0db0_small.jpg', 'ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍ', 'now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).', 2, '2019-12-29 20:42:27', '2020-01-04 21:02:08'), (4, 0, 2, 'Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើត', 'ipsum\' will uncover many web sites still in their infa', 'Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែ', 'here, content here\', making it look like readable English.', 'uploads/1/2020-01/5e0d95261fbfa_1577948400_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ </span>Lorem Ipsum <span lang=\"KHM\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។\r\nកញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ </span>Lorem\r\nIpsum <span lang=\"KHM\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក </span>\'lorem\r\nipsum\' <span lang=\"KHM\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។\r\nកំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង\r\n(កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span><o:p></o:p></span></p>', '<span style=\"font-size: 10.5pt; line-height: 107%; font-family: &quot;Open Sans&quot;, sans-serif;\">here, content here\', making it\r\nlook like readable English. Many desktop publishing packages and web page\r\neditors now use Lorem Ipsum as their default model text, and a search for\r\n\'lorem ipsum\' will uncover many web sites still in their infancy. Various\r\nversions have evolved over the years, sometimes by accident, sometimes on\r\npurpose (injected humour and the like).</span>', 1, '2019-12-29 20:42:35', '2020-01-04 21:03:07'), (5, 0, 1, 'ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវា', 'publishing packages and web page editors', 'ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវាមានការចែកចាយអ', 'It is a long established fact that a reader wil', 'uploads/1/2020-01/5e0da74c574d7_1577953080_small.jpg', 'ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍ\r\nHonda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា LED, មាន​កុងទ័រ​បែប​ឌីជីថល​បង្ហាញ​ព័ត៌មាន​សំខាន់ៗ, មាន​ធុង​ប្រេង​ចំណុះ ៨ លីត្រ, មាន​បច្ចេកវិទ្យា​ Idling Stop និង​ប្រើ​ប្រាស់​ Smart Key ជា​ដើម។', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors', 1, '2019-12-29 20:42:45', '2020-01-04 21:03:43'), (6, 0, 1, '៨កន្លែង ទៅដល់ខេត្តមណ្ឌលគីរីហើយ មិនគួររំលងទៅកម្សាន្ត', 'Lorem Ipsum is simply dummy text of the printing', 'Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោ', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', 'uploads/1/2020-01/5e0da47b34c3b_1577952360_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ </span>Lorem Ipsum <span lang=\"KHM\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។\r\nកញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ </span>Lorem\r\nIpsum <span lang=\"KHM\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក </span>\'lorem\r\nipsum\' <span lang=\"KHM\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។\r\nកំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង\r\n(កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><img src=\"http://localhost:8000/uploads/1/2020-01/d459c91c74adac228a807a412889414f.jpg\" style=\"width: 100%;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\"><br></span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ </span>Lorem Ipsum <span lang=\"KHM\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។\r\nកញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ </span>Lorem\r\nIpsum <span lang=\"KHM\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក </span>\'lorem\r\nipsum\' <span lang=\"KHM\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។\r\nកំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង\r\n(កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ </span>Lorem Ipsum <span lang=\"KHM\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។\r\nកញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ </span>Lorem\r\nIpsum <span lang=\"KHM\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក </span>\'lorem\r\nipsum\' <span lang=\"KHM\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។\r\nកំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង\r\n(កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span><o:p></o:p></span></p>', '<p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p><h2 style=\"margin: 0cm 0cm 7.5pt; line-height: 18pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: DauphinPlain, serif;\">Why do we use\r\nit?<o:p></o:p></span></h2><p>\r\n\r\n\r\n\r\n</p><p style=\"margin: 0cm 0cm 11.25pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a\r\nlong established fact that a reader will be distracted by the readable content\r\nof a page when looking at its layout. The point of using Lorem Ipsum is that it\r\nhas a more-or-less normal distribution of letters, as opposed to using \'Content\r\nhere, content here\', making it look like readable English. Many desktop\r\npublishing packages and web page editors now use Lorem Ipsum as their default\r\nmodel text, and a search for \'lorem ipsum\' will uncover many web sites still in\r\ntheir infancy. Various versions have evolved over the years, sometimes by\r\naccident, sometimes on purpose (injected humour and the like).<o:p></o:p></span></p>', 0, '2020-01-02 06:18:56', '2020-01-04 21:05:15'), (7, 0, 2, 'រំលឹក! ​ស្ត្រី​មាន​ឥទ្ធិពល​បំផុត​ទាំង ១០រូបក្នុង​វិស័យ​បច្ចេកវិទ្យា​កាល​ឆ្នាំ​ ​២០១៦', 'Lorem Ipsum is simply dummy text of the print', 'គឺជាអ្វីដែលខ្ញុំមាន? Lorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', 'uploads/1/2020-01/5e0da181f0bb7_1577951580_small.jpg', '<p>គឺជាអ្វីដែលខ្ញុំមាន?\r\nLorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។ Lorem Ipsum គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ 1500 នៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។ វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ 1960 ជាមួយនឹងការចេញផ្សាយសន្លឹក Letraset ដែលមានអត្ថបទ Lorem Ipsum និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា Aldus PageMaker រួមទាំងកំណែរបស់ Lorem Ipsum ផងដែរ។</p><p><img src=\"http://localhost:8000/uploads/1/2020-01/1d47cb2e3f523f1295e1540f67444713.jpg\" style=\"width: 100%;\"><br></p>', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 0, '2020-01-02 06:20:18', '2020-01-04 21:06:01'), (8, 0, 1, 'ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស', 'Lorem Ipsum is simply dummy text', 'អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន', 'orem Ipsum has been the industry\'s standard dummy text ever since', 'uploads/1/2020-01/5e0db0_small.jpg', '<p>Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។</p><p>Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។</p><p>Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។</p><p>Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។<br></p>', '<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum<br></p>', 1, '2020-01-03 20:30:02', '2020-01-04 21:07:41'), (9, 0, 1, 'Lorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។', 'when an unknown printer took a galley of type and scrambled', 'Lorem Ipsum គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ 1500', 'when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic', 'uploads/1/2020-01/a.jpg', '<p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">.<o:p></o:p></span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">1500</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">1960</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Letraset </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលមានអត្ថបទ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem\r\nIpsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Aldus\r\nPageMaker </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">រួមទាំងកំណែរបស់ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ផងដែរ។</span><br></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p>', '<p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-weight: 700;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<o:p></o:p></span></p><h2 style=\"line-height: 18pt; color: rgb(0, 0, 0); margin: 0cm 0cm 7.5pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: DauphinPlain, serif;\">Why do we use it?<o:p></o:p></span></h2><p></p><p style=\"margin: 0cm 0cm 11.25pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like)</span></p>', 2, '2020-01-04 21:09:13', NULL), (10, 0, 1, 'ត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបាន', 'Lorem Ipsum is simply dummy dummy text', 'វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិច', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum', 'uploads/1/2020-01/b.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span><strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.</span></p><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', 911, '2020-01-04 21:10:31', NULL), (11, 0, 1, 'មិនគួររំលងទៅកម្សាន្ត ទៅដល់ខេត្តមណ្ឌលគីរីហើយ', 'Lorem Ipsum is simply dummy text of the printing', 'ហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្ន', 'electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ip', 'uploads/1/2020-01/c.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Quisque </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">និង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">lectus\r\nac </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Malesuada </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Nam\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">, </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">orci </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅកន្លែងកើតហេតុ\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">sodales </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Quisque </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">និង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">lectus\r\nac </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Malesuada </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Nam\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">, </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">orci </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅកន្លែងកើតហេតុ\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">sodales </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Quisque </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">និង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">lectus\r\nac </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Malesuada </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Nam\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">, </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">orci </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅកន្លែងកើតហេតុ\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">sodales </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', '<p><span style=\"font-weight: 700; text-align: justify;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></span><span style=\"font-size: 10.5pt; text-align: justify; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<o:p></o:p></span><span style=\"font-weight: 700; text-align: justify;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></span><span style=\"font-size: 10.5pt; text-align: justify; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</span><span style=\"font-weight: 700; text-align: justify;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></span><span style=\"font-size: 10.5pt; text-align: justify; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</span><br></p>', 34, '2020-01-04 21:12:07', NULL); INSERT INTO `articles` (`id`, `user_id`, `categories_id`, `title_kh`, `title_en`, `description_kh`, `description_en`, `images`, `article_kh`, `article_en`, `view`, `created_at`, `updated_at`) VALUES (12, 0, 1, 'បើក​ឡើង​ចំណោត​បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ (មាន​វីដេអូ)', 'normally dummy text of the printing and typesetting industry.', 'រដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។ សក្ដានុពលលឿន។', 'ly dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard', 'uploads/1/2020-01/a.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><img src=\"http://localhost:8000/uploads/1/2020-01/dc10b4e01065120436983af1df38074a.jpg\" style=\"width: 100%;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\"><br></span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', '<p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p><h2 style=\"margin: 0cm 0cm 7.5pt; line-height: 18pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: DauphinPlain, serif;\">Why do we use\r\nit?<o:p></o:p></span></h2><p>\r\n\r\n\r\n\r\n</p><p style=\"margin: 0cm 0cm 11.25pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a\r\nlong established fact that a reader will be distracted by the readable content\r\nof a page when looking at its layout. The point of using Lorem Ipsum is that it\r\nhas a more-or-less normal distribution of letters, as opposed to using \'Content\r\nhere, content here\', making it look like readable English. Many desktop\r\npublishing packages and web page editors now use Lorem Ipsum as their default\r\nmodel text, and a search for \'lorem ipsum\' will uncover many web sites still in\r\ntheir infancy. Various versions have evolved over the years, sometimes by\r\naccident, sometimes on purpose (injected humour and the like).<o:p></o:p></span></p>', 2, '2020-01-04 21:13:46', NULL), (13, 0, 1, 'បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់', 'Lorem Ipsum iLorem Ipsum is simply dummy text of the printing', 'Lorem Ipsum គឺQuisque និង lectus ac គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', 'uploads/1/2020-01/b.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p>&nbsp;</o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">គឺជាអ្វីដែលខ្ញុំមាន</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p><h2 style=\"margin: 0cm 0cm 7.5pt; line-height: 18pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: DauphinPlain, serif;\">Why do we use\r\nit?<o:p></o:p></span></h2><p>\r\n\r\n\r\n\r\n</p><p style=\"margin: 0cm 0cm 11.25pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a\r\nlong established fact that a reader will be distracted by the readable content\r\nof a page when looking at its layout. The point of using Lorem Ipsum is that it\r\nhas a more-or-less normal distribution of letters, as opposed to using \'Content\r\nhere, content here\', making it look like readable English. Many desktop\r\npublishing packages and web page editors now use Lorem Ipsum as their default\r\nmodel text, and a search for \'lorem ipsum\' will uncover many web sites still in\r\ntheir infancy. Various versions have evolved over the years, sometimes by\r\naccident, sometimes on purpose (injected humour and the like).<o:p></o:p></span></p>', 2392, '2020-01-04 21:15:31', NULL), (14, 0, 1, 'អ្នកគួរតែទទួលបានលទ្ធផលល្អ', 'Lorem Ipsum is simply dummy text of the printing dummy text of the printing', 'Lorem Ipsum គឺQuisque និង lectus ac គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ,', 'Lorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។', 'uploads/1/2020-01/c.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><ul><li style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ </span></span></li><li style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\">វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span></span></li><li style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\n</span></span></li><li style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\">មានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ </span></span></li><li style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\">លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ </span></span></li><li style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\">វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ </span></span></li><li style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\">សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\n</span></span></li><li style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\">វាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។</span></span></li><li style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\">\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ </span></span></li><li style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\">នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។</span></span></li><li style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\"> ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span></li></ul><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">គឺជាអ្វីដែលខ្ញុំមាន</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<ul><li style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is\r\nsimply dummy text of the printing and </span></li><li style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s </span></li><li style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">standard dummy text ever since the 1500s, when an unknown\r\nprinter </span></li><li style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.</span></li></ul><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p><br></o:p></span></p><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p><br></o:p></span></p><h2 style=\"margin: 0cm 0cm 7.5pt; line-height: 18pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: DauphinPlain, serif;\">Why do we use\r\nit?<o:p></o:p></span></h2><p style=\"margin: 0cm 0cm 11.25pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a\r\nlong established fact that a reader will be distracted by the readable content\r\nof a page when looking at its layout. The point of using Lorem Ipsum is that it\r\nhas a more-or-less normal distribution of letters, as opposed to using \'Content\r\nhere, content here\', making it look like readable English. Many desktop\r\npublishing packages and web page editors now use Lorem Ipsum as their default\r\nmodel text, and a search for \'lorem ipsum\' will uncover many web sites still in\r\ntheir infancy. Various versions have evolved over the years, sometimes by\r\naccident, sometimes on purpose (injected humour and the like).<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><br></p>', 9, '2020-01-04 21:17:28', NULL), (15, 0, 1, 'ទៅដល់ខេត្តមណ្ឌលគី ទៅដល់ខេត្តមណ្ឌលគីរីហើយ មិនគួររំលងទៅកម្សាន្ត', 'Lorem Ipsum is simply dummy text of the printing', 'Lorem Ipsum គឺមានការប្រែប្រួលជាច្រើននៃអត្ថបទគម្ពីរ Lorem Ipsum គួរឱ្យជឿ។ ទំព័រដើមគឺមកពីផ្នែកទី', 'readable content of a page when looking at its layout. The point of using', 'uploads/1/2020-01/a.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ហេតុអ្វីយើងប្រើវា</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ </span>Lorem Ipsum <span lang=\"KHM\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។\r\nកញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ </span>Lorem\r\nIpsum <span lang=\"KHM\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក </span>\'lorem\r\nipsum\' <span lang=\"KHM\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។\r\nកំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង\r\n(កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">តើវាមកពីណា</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺផ្ទុយទៅនឹងជំនឿដ៏ពេញនិយម</span>, Lorem\r\nIpsum <span lang=\"KHM\">មិនមែនជាអត្ថបទចៃដន្យទេ។\r\nវាមានឫសគល់នៅក្នុងអក្សរសិល្ប៍ឡាតាំងបុរាណពីឆ្នាំ </span>45<span lang=\"KHM\"> ម។ គ។\r\nដែលធ្វើឱ្យវាមានអាយុកាលជាង </span>2000<span lang=\"KHM\"> ឆ្នាំ។ លោក </span>Richard\r\nMcClintock <span lang=\"KHM\">សាស្ត្រាចារ្យឡាតាំងនៅមហាវិទ្យាល័យ </span>Hampden-Sydney\r\n<span lang=\"KHM\">នៅរដ្ឋវីជីហ្គីបានមើលពាក្យឡាតាំងមួយដែលមិនច្បាស់លាស់ជាងមុនដែលជាភាសាអង់គ្លេសដែលមានអត្ថន័យជ្រាលជ្រៅពីអត្ថបទគម្ពីរ\r\n</span>Lorem Ipsum <span lang=\"KHM\">ហើយបានឆ្លងកាត់ពាក្យសម្ដីក្នុងអក្សរសិល្ប៍បុរាណហើយបានរកឃើញប្រភពមិនគួរឱ្យជឿ។\r\nទំព័រដើមគឺមកពីផ្នែកទី </span>1.10.32<span lang=\"KHM\"> និង </span>1.10.33<span lang=\"KHM\"> នៃ \"</span>de Finibus Bonorum et Malorum\" <span lang=\"KHM\">ដោយ\r\n</span>Cicero <span lang=\"KHM\">ដែលសរសេរនៅឆ្នាំ </span>45<span lang=\"KHM\"> មុនគ។ ស\r\n..\r\nសៀវភៅនេះគឺជាសក្ខីកម្មមួយស្តីពីទ្រឹស្តីក្រមសីលធម៌ដែលមានប្រជាប្រិយភាពបំផុតក្នុងសម័យកាលរាជវង្ស។\r\nបន្ទាត់ទីមួយនៃទំព័រដើមគឺ \"ពាក្យស្លោកនៃពាក្យស្លោក\"\r\nដែលចេញមកពីបន្ទាត់ក្នុងផ្នែក </span>1.10.32<span lang=\"KHM\"> ។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span lang=\"KHM\" style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">កណ្តុរស្តង់ដារនៃ </span><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">ដែលត្រូវបានប្រើចាប់តាំងពីឆ្នាំ </span>1500<span lang=\"KHM\">\r\nត្រូវបានផលិតឡើងវិញសម្រាប់អ្នកដែលចាប់អារម្មណ៍។ ផ្នែកចំនួន </span>1.10.32<span lang=\"KHM\"> និង </span>1.10.33<span lang=\"KHM\"> ពី \"</span>de Finibus Bonorum\r\net Malorum\" <span lang=\"KHM\">ដោយ </span>Cicero <span lang=\"KHM\">ត្រូវបានផលិតឡើងវិញនៅក្នុងទម្រង់ដើមពិតប្រាកដរបស់ពួកគេដែលអមដោយកំណែជាភាសាអង់គ្លេសពីការបកប្រែឆ្នាំ\r\n</span>1914<span lang=\"KHM\"> ដោយលោក </span><NAME> <span lang=\"KHM\">។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">តើខ្ញុំអាចទទួលបានខ្លះ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺមានការប្រែប្រួលជាច្រើននៃអត្ថបទគម្ពីរ </span>Lorem\r\nIpsum <span lang=\"KHM\">ដែលអាចរកបានប៉ុន្តែភាគច្រើនបានទទួលរងការកែសម្រួលក្នុងទម្រង់មួយចំនួនដោយការកំប្លុកកំប្លែងឬពាក្យចៃដន្យដែលមិនមើលទៅសូម្បីតែជឿតិចតួច។\r\nប្រសិនបើអ្នកនឹងប្រើអត្ថបទគម្ពីរ </span>Lorem Ipsum <span lang=\"KHM\">អ្នកត្រូវប្រាកដថាគ្មានអ្វីដែលលាក់កំបាំងនៅកណ្ដាលអត្ថបទទេ។\r\nរាល់ម៉ាស៊ីនភ្លើង </span>Ipsum <span lang=\"KHM\">ទាំងអស់នៅលើអ៊ីនធឺណែតមាននិន្នាការបង្កើតឡើងវិញនូវកំណាត់ដែលបានកំណត់ជាមុនដែលចាំបាច់ធ្វើឱ្យម៉ាស៊ីននេះក្លាយជាម៉ាស៊ីនភ្លើងពិតដំបូងនៅលើអ៊ីនធឺណិត។\r\nវាប្រើវចនានុក្រមជាង </span>200 <span lang=\"KHM\">ពាក្យឡាតាំងរួមជាមួយកោសិកានៃរចនាសម្ព័ន្ធប្រយោគគំរូមួយដើម្បីបង្កើត\r\n</span>Lorem Ipsum <span lang=\"KHM\">ដែលមើលទៅសមហេតុផល។ ការបង្កើត </span>Lorem\r\nIpsum <span lang=\"KHM\">គឺជានិច្ចកាលមិនគិតពីពាក្យដដែលៗការនិយាយកំប្លែងឬពាក្យដែលមិនមែនជាលក្ខណៈជាដើម។</span><o:p></o:p></span></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ម៉្យាងវិញទៀតយើងប្តឹង</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p>', '<h1 style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is\r\nsimply dummy text</span></b></h1><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"> of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p><h2 style=\"margin: 0cm 0cm 7.5pt; line-height: 18pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: DauphinPlain, serif;\">Why do we use\r\nit?<o:p></o:p></span></h2><p style=\"margin: 0cm 0cm 11.25pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a\r\nlong established fact that a reader will be distracted by the readable content\r\nof a page when looking at its layout. The point of using Lorem Ipsum is that it\r\nhas a more-or-less normal distribution of letters, as opposed to using \'Content\r\nhere, content here\', making it look like readable English. Many desktop\r\npublishing packages and web page editors now use Lorem Ipsum as their default\r\nmodel text, and a search for \'lorem ipsum\' will uncover many web sites still in\r\ntheir infancy. Various versions have evolved over the years, sometimes by\r\naccident, sometimes on purpose (injected humour and the like).<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><br></p>', 10092, '2020-01-04 21:20:35', NULL), (16, 0, 1, 'តើវាមកពីណាតើវាមកពីណា', 'condimentum suscipit. Nunc hendrerit enim lacinia orci commodo dapibus.', 'Lorem Ipsum គឺមានការប្រែប្រួលជាច្រើននៃអត្ថបទគម្ពីរ Lorem Ipsum គឺមានការប្រែប្រួលជាច្រើននៃអត្ថបទគម្ពីរ', 'condimentum suscipit. Nunc hendrerit enim lacinia orci commodo dapibus.condimentum suscipit. Nunc hendrerit enim lacinia orci commodo dapibus.', 'uploads/1/2020-01/c.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ហេតុអ្វីយើងប្រើវា</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ </span>Lorem Ipsum <span lang=\"KHM\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។\r\nកញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ </span>Lorem\r\nIpsum <span lang=\"KHM\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក </span>\'lorem\r\nipsum\' <span lang=\"KHM\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។\r\nកំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង\r\n(កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">តើវាមកពីណា</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺផ្ទុយទៅនឹងជំនឿដ៏ពេញនិយម</span>, Lorem\r\nIpsum <span lang=\"KHM\">មិនមែនជាអត្ថបទចៃដន្យទេ។\r\nវាមានឫសគល់នៅក្នុងអក្សរសិល្ប៍ឡាតាំងបុរាណពីឆ្នាំ </span>45<span lang=\"KHM\"> ម។ គ។\r\nដែលធ្វើឱ្យវាមានអាយុកាលជាង </span>2000<span lang=\"KHM\"> ឆ្នាំ។ លោក </span>Richard\r\nMcClintock <span lang=\"KHM\">សាស្ត្រាចារ្យឡាតាំងនៅមហាវិទ្យាល័យ </span>Hampden-Sydney\r\n<span lang=\"KHM\">នៅរដ្ឋវីជីហ្គីបានមើលពាក្យឡាតាំងមួយដែលមិនច្បាស់លាស់ជាងមុនដែលជាភាសាអង់គ្លេសដែលមានអត្ថន័យជ្រាលជ្រៅពីអត្ថបទគម្ពីរ\r\n</span>Lorem Ipsum <span lang=\"KHM\">ហើយបានឆ្លងកាត់ពាក្យសម្ដីក្នុងអក្សរសិល្ប៍បុរាណហើយបានរកឃើញប្រភពមិនគួរឱ្យជឿ។\r\nទំព័រដើមគឺមកពីផ្នែកទី </span>1.10.32<span lang=\"KHM\"> និង </span>1.10.33<span lang=\"KHM\"> នៃ \"</span>de Finibus Bonorum et Malorum\" <span lang=\"KHM\">ដោយ\r\n</span>Cicero <span lang=\"KHM\">ដែលសរសេរនៅឆ្នាំ </span>45<span lang=\"KHM\"> មុនគ។ ស\r\n..\r\nសៀវភៅនេះគឺជាសក្ខីកម្មមួយស្តីពីទ្រឹស្តីក្រមសីលធម៌ដែលមានប្រជាប្រិយភាពបំផុតក្នុងសម័យកាលរាជវង្ស។\r\nបន្ទាត់ទីមួយនៃទំព័រដើមគឺ \"ពាក្យស្លោកនៃពាក្យស្លោក\"\r\nដែលចេញមកពីបន្ទាត់ក្នុងផ្នែក </span>1.10.32<span lang=\"KHM\"> ។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span lang=\"KHM\" style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">កណ្តុរស្តង់ដារនៃ </span><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">ដែលត្រូវបានប្រើចាប់តាំងពីឆ្នាំ </span>1500<span lang=\"KHM\">\r\nត្រូវបានផលិតឡើងវិញសម្រាប់អ្នកដែលចាប់អារម្មណ៍។ ផ្នែកចំនួន </span>1.10.32<span lang=\"KHM\"> និង </span>1.10.33<span lang=\"KHM\"> ពី \"</span>de Finibus Bonorum\r\net Malorum\" <span lang=\"KHM\">ដោយ </span>Cicero <span lang=\"KHM\">ត្រូវបានផលិតឡើងវិញនៅក្នុងទម្រង់ដើមពិតប្រាកដរបស់ពួកគេដែលអមដោយកំណែជាភាសាអង់គ្លេសពីការបកប្រែឆ្នាំ\r\n</span>1914<span lang=\"KHM\"> ដោយលោក </span><NAME> <span lang=\"KHM\">។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">តើខ្ញុំអាចទទួលបានខ្លះ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺមានការប្រែប្រួលជាច្រើននៃអត្ថបទគម្ពីរ </span>Lorem\r\nIpsum <span lang=\"KHM\">ដែលអាចរកបានប៉ុន្តែភាគច្រើនបានទទួលរងការកែសម្រួលក្នុងទម្រង់មួយចំនួនដោយការកំប្លុកកំប្លែងឬពាក្យចៃដន្យដែលមិនមើលទៅសូម្បីតែជឿតិចតួច។\r\nប្រសិនបើអ្នកនឹងប្រើអត្ថបទគម្ពីរ </span>Lorem Ipsum <span lang=\"KHM\">អ្នកត្រូវប្រាកដថាគ្មានអ្វីដែលលាក់កំបាំងនៅកណ្ដាលអត្ថបទទេ។\r\nរាល់ម៉ាស៊ីនភ្លើង </span>Ipsum <span lang=\"KHM\">ទាំងអស់នៅលើអ៊ីនធឺណែតមាននិន្នាការបង្កើតឡើងវិញនូវកំណាត់ដែលបានកំណត់ជាមុនដែលចាំបាច់ធ្វើឱ្យម៉ាស៊ីននេះក្លាយជាម៉ាស៊ីនភ្លើងពិតដំបូងនៅលើអ៊ីនធឺណិត។\r\nវាប្រើវចនានុក្រមជាង </span>200 <span lang=\"KHM\">ពាក្យឡាតាំងរួមជាមួយកោសិកានៃរចនាសម្ព័ន្ធប្រយោគគំរូមួយដើម្បីបង្កើត\r\n</span>Lorem Ipsum <span lang=\"KHM\">ដែលមើលទៅសមហេតុផល។ ការបង្កើត </span>Lorem\r\nIpsum <span lang=\"KHM\">គឺជានិច្ចកាលមិនគិតពីពាក្យដដែលៗការនិយាយកំប្លែងឬពាក្យដែលមិនមែនជាលក្ខណៈជាដើម។</span><o:p></o:p></span></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ម៉្យាងវិញទៀតយើងប្តឹង</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer bibendum mi a congue pharetra. Donec a ultrices mauris. Vivamus varius sapien a tortor cursus suscipit. Nullam non sem nisi. Phasellus vehicula id massa sed dignissim. Cras vehicula augue sit amet eros hendrerit pharetra. Nulla facilisi. Donec ac massa purus. In hendrerit diam ipsum, tristique varius odio vehicula vitae. Sed orci massa, convallis non sollicitudin vitae, luctus a leo. Nulla ornare felis eget metus posuere bibendum. Sed a condimentum augue. Etiam porttitor gravida urna, at interdum ante semper eget. Morbi fermentum erat sed magna cursus, ut sodales tellus hendrerit. Vestibulum ut risus pretium, ultricies justo eget, semper nulla. Vivamus tincidunt nunc sit amet laoreet molestie.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">In hac habitasse platea dictumst. Aliquam a commodo est, ut fermentum dolor. Integer eu blandit ligula. Donec at pharetra mi. Morbi sem urna, vestibulum quis lacus at, interdum pharetra erat. Aenean eu lacinia nibh. Nunc sodales urna lacus, a fringilla dolor laoreet sit amet. Aenean accumsan lobortis mattis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam faucibus auctor sem, at aliquet mi pulvinar et. Nam tellus tellus, lacinia nec vulputate eget, semper id arcu. Integer et augue ac massa condimentum suscipit. Nunc hendrerit enim lacinia orci commodo dapibus.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Suspendisse euismod ipsum nunc, eget congue sapien ullamcorper at. Suspendisse bibendum euismod purus, rutrum molestie mi cursus eu. Vivamus nec tincidunt quam, a scelerisque metus. Vivamus ultrices convallis turpis nec iaculis. Morbi lacinia maximus lectus, quis iaculis quam pulvinar quis. Ut eros arcu, feugiat eu justo sed, pretium gravida elit. Duis enim mauris, sollicitudin interdum tincidunt id, ultrices non tellus.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Ut ut pellentesque augue, eget dapibus erat. Aliquam erat dolor, porta ac sodales et, posuere sit amet eros. Nam egestas pretium lacinia. Nulla in metus eu est egestas consequat eget et velit. Nam feugiat facilisis odio, in egestas erat ultricies eget. In sed turpis eu lacus lobortis tristique. Nam in efficitur libero. Aliquam viverra scelerisque nisi, quis convallis sem accumsan ac.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Phasellus lacinia, lorem non aliquet condimentum, ante felis cursus ex, eget semper nibh quam vel est. Proin ac suscipit erat. Nulla id molestie lacus. Phasellus suscipit, sem nec lacinia interdum, massa est venenatis orci, vel lacinia quam dolor sed sem. Nulla neque urna, eleifend sit amet urna vitae, suscipit sodales libero. Vestibulum quis sagittis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nullam et nisi turpis. Nam laoreet orci libero, ut varius diam vehicula ac. Praesent vitae tincidunt lectus. Curabitur in lacus elit. Pellentesque ut purus ac nibh porta scelerisque ut pellentesque justo. Pellentesque bibendum pretium aliquet. Vivamus ut bibendum diam, sed feugiat ligula.</p>', 293291, '2020-01-04 21:22:17', NULL); INSERT INTO `articles` (`id`, `user_id`, `categories_id`, `title_kh`, `title_en`, `description_kh`, `description_en`, `images`, `article_kh`, `article_en`, `view`, `created_at`, `updated_at`) VALUES (17, 0, 1, 'ចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើង', 'Lorem ipsum dolor sit amet, consectetur adipiscing eli', 'Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer bibendum mi a congue pharetra.', 'uploads/1/2020-01/b.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p>&nbsp;</o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p>&nbsp;</o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">គឺជាអ្វីដែលខ្ញុំមាន</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer bibendum mi a congue pharetra. Donec a ultrices mauris. Vivamus varius sapien a tortor cursus suscipit. Nullam non sem nisi. Phasellus vehicula id massa sed dignissim. Cras vehicula augue sit amet eros hendrerit pharetra. Nulla facilisi. Donec ac massa purus. In hendrerit diam ipsum, tristique varius odio vehicula vitae. Sed orci massa, convallis non sollicitudin vitae, luctus a leo. Nulla ornare felis eget metus posuere bibendum. Sed a condimentum augue. Etiam porttitor gravida urna, at interdum ante semper eget. Morbi fermentum erat sed magna cursus, ut sodales tellus hendrerit. Vestibulum ut risus pretium, ultricies justo eget, semper nulla. Vivamus tincidunt nunc sit amet laoreet molestie.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">In hac habitasse platea dictumst. Aliquam a commodo est, ut fermentum dolor. Integer eu blandit ligula. Donec at pharetra mi. Morbi sem urna, vestibulum quis lacus at, interdum pharetra erat. Aenean eu lacinia nibh. Nunc sodales urna lacus, a fringilla dolor laoreet sit amet. Aenean accumsan lobortis mattis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam faucibus auctor sem, at aliquet mi pulvinar et. Nam tellus tellus, lacinia nec vulputate eget, semper id arcu. Integer et augue ac massa condimentum suscipit. Nunc hendrerit enim lacinia orci commodo dapibus.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Suspendisse euismod ipsum nunc, eget congue sapien ullamcorper at. Suspendisse bibendum euismod purus, rutrum molestie mi cursus eu. Vivamus nec tincidunt quam, a scelerisque metus. Vivamus ultrices convallis turpis nec iaculis. Morbi lacinia maximus lectus, quis iaculis quam pulvinar quis. Ut eros arcu, feugiat eu justo sed, pretium gravida elit. Duis enim mauris, sollicitudin interdum tincidunt id, ultrices non tellus.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Ut ut pellentesque augue, eget dapibus erat. Aliquam erat dolor, porta ac sodales et, posuere sit amet eros. Nam egestas pretium lacinia. Nulla in metus eu est egestas consequat eget et velit. Nam feugiat facilisis odio, in egestas erat ultricies eget. In sed turpis eu lacus lobortis tristique. Nam in efficitur libero. Aliquam viverra scelerisque nisi, quis convallis sem accumsan ac.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Phasellus lacinia, lorem non aliquet condimentum, ante felis cursus ex, eget semper nibh quam vel est. Proin ac suscipit erat. Nulla id molestie lacus. Phasellus suscipit, sem nec lacinia interdum, massa est venenatis orci, vel lacinia quam dolor sed sem. Nulla neque urna, eleifend sit amet urna vitae, suscipit sodales libero. Vestibulum quis sagittis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nullam et nisi turpis. Nam laoreet orci libero, ut varius diam vehicula ac. Praesent vitae tincidunt lectus. Curabitur in lacus elit. Pellentesque ut purus ac nibh porta scelerisque ut pellentesque justo. Pellentesque bibendum pretium aliquet. Vivamus ut bibendum diam, sed feugiat ligula.</p>', 26, '2020-01-04 21:24:10', NULL), (18, 0, 1, 'បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។', 'Nam tellus tellus, lacinia nec vulputate eget', 'វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ, ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ Malesuada ឬ។ អ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា', 'Nam tellus tellus, lacinia nec vulputate eget, semper id arcu. Integer et augue ac massa condimentum suscipit. Nunc hendrerit enim lacinia orci commodo dapibus.', 'uploads/1/2020-01/a.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer bibendum mi a congue pharetra. Donec a ultrices mauris. Vivamus varius sapien a tortor cursus suscipit. Nullam non sem nisi. Phasellus vehicula id massa sed dignissim. Cras vehicula augue sit amet eros hendrerit pharetra. Nulla facilisi. Donec ac massa purus. In hendrerit diam ipsum, tristique varius odio vehicula vitae. Sed orci massa, convallis non sollicitudin vitae, luctus a leo. Nulla ornare felis eget metus posuere bibendum. Sed a condimentum augue. Etiam porttitor gravida urna, at interdum ante semper eget. Morbi fermentum erat sed magna cursus, ut sodales tellus hendrerit. Vestibulum ut risus pretium, ultricies justo eget, semper nulla. Vivamus tincidunt nunc sit amet laoreet molestie.<br></p><p><br></p><p>In hac habitasse platea dictumst. Aliquam a commodo est, ut fermentum dolor. Integer eu blandit ligula. Donec at pharetra mi. Morbi sem urna, vestibulum quis lacus at, interdum pharetra erat. Aenean eu lacinia nibh. Nunc sodales urna lacus, a fringilla dolor laoreet sit amet. Aenean accumsan lobortis mattis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam faucibus auctor sem, at aliquet mi pulvinar et. Nam tellus tellus, lacinia nec vulputate eget, semper id arcu. Integer et augue ac massa condimentum suscipit. Nunc hendrerit enim lacinia orci commodo dapibus.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer bibendum mi a congue pharetra. Donec a ultrices mauris. Vivamus varius sapien a tortor cursus suscipit. Nullam non sem nisi. Phasellus vehicula id massa sed dignissim. Cras vehicula augue sit amet eros hendrerit pharetra. Nulla facilisi. Donec ac massa purus. In hendrerit diam ipsum, tristique varius odio vehicula vitae. Sed orci massa, convallis non sollicitudin vitae, luctus a leo. Nulla ornare felis eget metus posuere bibendum. Sed a condimentum augue. Etiam porttitor gravida urna, at interdum ante semper eget. Morbi fermentum erat sed magna cursus, ut sodales tellus hendrerit. Vestibulum ut risus pretium, ultricies justo eget, semper nulla. Vivamus tincidunt nunc sit amet laoreet molestie.<br></p><p><br></p><p>In hac habitasse platea dictumst. Aliquam a commodo est, ut fermentum dolor. Integer eu blandit ligula. Donec at pharetra mi. Morbi sem urna, vestibulum quis lacus at, interdum pharetra erat. Aenean eu lacinia nibh. Nunc sodales urna lacus, a fringilla dolor laoreet sit amet. Aenean accumsan lobortis mattis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam faucibus auctor sem, at aliquet mi pulvinar et. Nam tellus tellus, lacinia nec vulputate eget, semper id arcu. Integer et augue ac massa condimentum suscipit. Nunc hendrerit enim lacinia orci commodo dapibus.</p>', 4, '2020-01-04 21:25:45', NULL), (19, 0, 1, 'ដល់ខេត្តមណ្ឌលគីរីហើយ មិនគួររំលងទៅកម្សាន្ត', 'Lorem Ipsum is simply dummy text of the printing', 'អ្នកគួរតែទទួលបានលទ្ធផលល្អLorem Ipsum គឺQuisque និង lectus', 'There are many variations of passages of Lorem Ipsum available,There are many variations of passages of Lorem Ipsum available,', 'uploads/1/2020-01/b.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><br></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">Where can I get some?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">Where can I get some?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>', 54863, '2020-01-04 21:27:23', NULL), (20, 0, 1, 'បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់', 'Lorem Ipsum is simply dummy text of the printing', 'Lorem Ipsum និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា Aldus PageMaker រួមទាំងកំណែរបស់ Lorem Ipsum ផងដែរ។', 'of the word in classical literature, discovered the undoubtable source.', 'uploads/1/2020-01/c.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p>&nbsp;</o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p>&nbsp;</o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">គឺជាអ្វីដែលខ្ញុំមាន</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">Where does it come from?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. <NAME>, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">Where does it come from?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. <NAME>, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>', 926, '2020-01-04 21:28:24', '2020-01-16 09:28:10'), (21, 1, 1, 'នៅក្នុង orci នៅកន្លែងកើតហេតុ sodales ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ', 'Lorem Ipsum is simply dummy text of the printing simply dummy text', 'ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់', 'Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).', 'uploads/1/2020-01/a.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p>&nbsp;</o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p>&nbsp;</o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">គឺជាអ្វីដែលខ្ញុំមាន</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">Why do we use it?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">Why do we use it?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>', 26, '2020-01-04 21:29:41', '2020-01-16 09:30:23'), (22, 0, 2, 'អ្នកគួរតែទទួលបានលទ្ធផលល្', 'Lorem Ipsum is simply dummy text ply dummy text of the printing', 'អ្នកគួរតែទទួលបានលទ្ធផលល្អ Lorem Ipsum គឺQuisque និង lectus ac គឺជាលទ្ធផលនៃការ', 'Lorem Ipsum is simply dummy text of the printing Lorem Ipsum is simply dummy text of the printing Lorem Ipsum is sim', 'uploads/1/2020-01/ia.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ជាអ្វីដែលខ្ញុំមាន</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?</span></b><br></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">What is Lorem Ipsum?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\"><strong style=\"margin: 0px; padding: 0px;\">Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 3733, '2020-01-04 21:44:22', NULL); INSERT INTO `articles` (`id`, `user_id`, `categories_id`, `title_kh`, `title_en`, `description_kh`, `description_en`, `images`, `article_kh`, `article_en`, `view`, `created_at`, `updated_at`) VALUES (23, 0, 2, 'មាន​វីដេអូបើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់', 'technology', 'Lorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់ តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។', 'more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 'uploads/1/2020-01/ib.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: \"Open Sans\", sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: \"Open Sans\", sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\"> </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">1500</span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">1960</span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Letraset </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">ដែលមានអត្ថបទ </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Lorem\r\nIpsum </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Aldus\r\nPageMaker </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">រួមទាំងកំណែរបស់ </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">ផងដែរ។</span><br></p>', '<h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">What is Lorem Ipsum?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\"><strong style=\"margin: 0px; padding: 0px;\">Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">What is Lorem Ipsum?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\"><strong style=\"margin: 0px; padding: 0px;\">Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 8964, '2020-01-04 21:46:18', '2020-01-04 22:24:17'), (24, 0, 2, 'ទៅដល់ខេត្តមណ្ឌលគីរីហើយ មិនគួររំលងទៅកម្សាន្ត', 'with the release of Letraset sheets containing Lorem Ipsum', 'អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។ អ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង orci នៅកន្លែងកើតហេតុ sodales ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។', 'with the release of Letraset sheets containing Lorem Ipsum passages, with the release of Letraset sheets containing Lorem Ipsum passages,', 'uploads/1/2020-01/ic.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>,&nbsp;</span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p>&nbsp;</o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p>&nbsp;</o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">គឺជាអ្វីដែលខ្ញុំមាន</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">What is Lorem Ipsum?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\"><strong style=\"margin: 0px; padding: 0px;\">Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">What is Lorem Ipsum?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\"><strong style=\"margin: 0px; padding: 0px;\">Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">What is Lorem Ipsum?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\"><strong style=\"margin: 0px; padding: 0px;\">Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 12234, '2020-01-04 21:47:20', NULL), (25, 0, 2, 'Lorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។', 'Lorem Ipsum is simply dummy text of the printingLorem Ipsum', 'ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។', 'Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage', 'uploads/1/2020-01/ia.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p>&nbsp;</o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p>&nbsp;</o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">គឺជាអ្វីដែលខ្ញុំមាន</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\">ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">Where does it come from?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. <NAME>, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by <NAME>.</p>', NULL, '2020-01-04 21:50:17', NULL), (26, 0, 3, 'សូមអរគុណ។ នៅក្នុង orci នៅកក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ (មាន​វីដេអូ)', 'Lorem Ipsum is simply dummy text of the printing', 'សូមអរគុណ។ នៅក្នុង orci នៅកន្លែងកើតហេតុ sodales ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។', 'their exact original form, accompanied by English versions from the 1914 translation by <NAME>.', 'uploads/1/2020-01/5e0da74c574d7_1577953080_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។&nbsp;</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">គឺជាអ្វីដែលខ្ញុំមាន</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">Where does it come from?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. <NAME>, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by <NAME>.</p><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">Where does it come from?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. <NAME>, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by <NAME>.</p>', NULL, '2020-01-04 22:28:30', NULL), (27, 0, 2, 'វាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើ', 'Lorem Ipsum is simply dummy text of the printing and typesetting', 'វាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។ ប្រសិនបើអ្នកទទួលបានលទ្ធផល, អ្នកគួរតែទទួលបានអាហារពេលព្រឹក', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type', 'uploads/1/2020-01/ic.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', '<p><strong style=\"margin: 0px; padding: 0px; font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">Lorem Ipsum</strong><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</span><br></p>', NULL, '2020-01-05 08:25:54', NULL), (28, 0, 2, 'បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើង', 'web page editors now use Lorem Ipsum as their default model text', 'បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។ សក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ', 'and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy.', 'uploads/1/2020-01/ib.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Quisque </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">និង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">lectus\r\nac </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Malesuada </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Nam\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">, </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">orci </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅកន្លែងកើតហេតុ\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">sodales </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', '<p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><br></p>', 1, '2020-01-05 08:27:04', NULL), (29, 0, 2, '​ចំណោត​សាក​មើល​រួច​អត់មានពាសពេញខ្មោចដែលមិនមានត្', 'The point of using Lorem Ipsum is that', 'មានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក Nam នៅលើសំណុំបែបបទ', 'it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like', 'uploads/1/2020-01/ia.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', '<p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><br></p>', 7, '2020-01-05 08:29:54', '2020-01-09 07:18:27'); INSERT INTO `articles` (`id`, `user_id`, `categories_id`, `title_kh`, `title_en`, `description_kh`, `description_en`, `images`, `article_kh`, `article_en`, `view`, `created_at`, `updated_at`) VALUES (30, 0, 4, 'វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍', 'handful of model sentence structures, to generate Lorem Ipsu', 'អេឡិចត្រូនិច។ សក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ', 'necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a', 'uploads/1/2020-01/ba.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Quisque </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">និង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">lectus\r\nac </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Malesuada </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Nam\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">, </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">orci </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅកន្លែងកើតហេតុ\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">sodales </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Quisque </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">និង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">lectus\r\nac </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Malesuada </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Nam\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">, </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">orci </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅកន្លែងកើតហេតុ\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">sodales </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', '<p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><br></p>', 1, '2020-01-05 08:38:47', NULL), (31, 0, 4, 'សូមអរគុណ។ នៅក្នុង orci នៅកន្លែងកើតហេតុ sodales ស្ងួត', 'Ipsum is therefore always free from repetition', 'ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។Lorem Ipsum គឺQuisque និង lectus ac គឺជាល', 'injected humour, or non-characteristic words etc.There are many variations of passages of Lorem Ipsum available', 'uploads/1/2020-01/bb.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Quisque </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">និង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">lectus\r\nac </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Malesuada </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Nam\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">, </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">orci </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅកន្លែងកើតហេតុ\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">sodales </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Quisque </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">និង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">lectus\r\nac </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Malesuada </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Nam\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">, </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">orci </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅកន្លែងកើតហេតុ\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">sodales </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', '<p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><br></p>', 1, '2020-01-05 08:40:06', NULL), (32, 0, 3, 'នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍', 'There are many variations of passages of Lorem Ipsum available', 'វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត, ultrices នៅ tortor', 'If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text', 'uploads/1/2020-01/pa.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p>\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\"><br></span><o:p></o:p></span><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p>', '<p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><br></p>', NULL, '2020-01-05 08:44:06', NULL), (33, 0, 4, 'Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត', 'Lorem Ipsum is simply dummy text of the printing', 'អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised', 'uploads/1/2020-01/bc.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p>\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p>', '<p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><br></p>', 1, '2020-01-05 08:45:48', NULL), (34, 0, 3, 'ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស', 'There are many variations of passages of Lorem', 'អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ', 'combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable.', 'uploads/1/2020-01/pb.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p>\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p>', '<p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span><br></p>', NULL, '2020-01-05 08:47:14', NULL), (35, 0, 4, 'ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស', 'Donec ullamcorper feugiat odio in euismod', 'Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas sapien nibh, viverra vel sollicitudin', 'uploads/1/2020-01/ba.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p>\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi nec risus eu risus cursus fringilla a ut mi. Suspendisse bibendum nisl mattis erat porttitor, id dignissim turpis faucibus. Vivamus a dui non est fermentum ornare a eget felis. Aenean tincidunt mauris nisi, ut varius leo commodo vel. Sed ac porta metus. Ut vel porta elit. Nam a eros suscipit, finibus magna in, congue risus. Mauris mattis ipsum sit amet eros dignissim, sagittis commodo dui congue. Proin tempor sollicitudin leo, et tristique augue laoreet et. Duis sollicitudin felis augue, et accumsan tellus imperdiet ac. Vivamus rutrum augue ex, eget porta nunc gravida at. Proin ac metus vel diam dictum dignissim luctus at magna. Proin gravida vehicula mauris, vitae porttitor velit consectetur vitae. Integer aliquet est sit amet volutpat porttitor.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Nulla vitae orci quis purus scelerisque hendrerit in non leo. Donec pulvinar pretium orci, vel imperdiet odio iaculis condimentum. Curabitur malesuada, leo ac faucibus consequat, est dui elementum mi, ut malesuada quam metus et massa. In commodo sed ex nec consequat. Quisque non orci accumsan, aliquam erat at, condimentum magna. Curabitur eleifend laoreet convallis. Donec luctus vulputate finibus. Nullam vel nisi at leo euismod tincidunt in et odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas sapien nibh, viverra vel sollicitudin non, tempor et leo. Sed ultrices commodo arcu. Donec ullamcorper feugiat odio in euismod. Aliquam dictum tellus a felis vestibulum semper. Duis at odio non felis semper cursus. Nunc dapibus dignissim orci non placerat.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Fusce euismod sagittis tristique. Curabitur at vestibulum dolor, ac molestie tortor. Nam eu tincidunt tortor. Ut id volutpat turpis, a iaculis tellus. Morbi ipsum mi, sagittis eget maximus eu, gravida et odio. Donec gravida ullamcorper lectus, vitae imperdiet ante feugiat vitae. Quisque eu justo mollis, facilisis sapien quis, rutrum massa. Duis blandit lectus id velit ultrices, tincidunt suscipit magna dapibus. Phasellus vehicula, eros mollis porttitor rhoncus, lacus tellus tristique nisi, eu tempor nibh urna quis dui. Proin tincidunt, tortor tempor blandit porta, elit ante gravida mauris, vitae maximus magna odio a enim. Nulla arcu sapien, elementum non vestibulum eu, suscipit ut nibh. Nunc eu fringilla enim, et luctus justo. Nulla quis vulputate arcu. Sed a dapibus augue.</p>', NULL, '2020-01-06 05:53:35', NULL); INSERT INTO `articles` (`id`, `user_id`, `categories_id`, `title_kh`, `title_en`, `description_kh`, `description_en`, `images`, `article_kh`, `article_en`, `view`, `created_at`, `updated_at`) VALUES (36, 0, 3, 'គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក', 'est pellentesque ultricies.', 'វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ', 'odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at', 'uploads/1/2020-01/pa.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p>\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi nec risus eu risus cursus fringilla a ut mi. Suspendisse bibendum nisl mattis erat porttitor, id dignissim turpis faucibus. Vivamus a dui non est fermentum ornare a eget felis. Aenean tincidunt mauris nisi, ut varius leo commodo vel. Sed ac porta metus. Ut vel porta elit. Nam a eros suscipit, finibus magna in, congue risus. Mauris mattis ipsum sit amet eros dignissim, sagittis commodo dui congue. Proin tempor sollicitudin leo, et tristique augue laoreet et. Duis sollicitudin felis augue, et accumsan tellus imperdiet ac. Vivamus rutrum augue ex, eget porta nunc gravida at. Proin ac metus vel diam dictum dignissim luctus at magna. Proin gravida vehicula mauris, vitae porttitor velit consectetur vitae. Integer aliquet est sit amet volutpat porttitor.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Nulla vitae orci quis purus scelerisque hendrerit in non leo. Donec pulvinar pretium orci, vel imperdiet odio iaculis condimentum. Curabitur malesuada, leo ac faucibus consequat, est dui elementum mi, ut malesuada quam metus et massa. In commodo sed ex nec consequat. Quisque non orci accumsan, aliquam erat at, condimentum magna. Curabitur eleifend laoreet convallis. Donec luctus vulputate finibus. Nullam vel nisi at leo euismod tincidunt in et odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas sapien nibh, viverra vel sollicitudin non, tempor et leo. Sed ultrices commodo arcu. Donec ullamcorper feugiat odio in euismod. Aliquam dictum tellus a felis vestibulum semper. Duis at odio non felis semper cursus. Nunc dapibus dignissim orci non placerat.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Fusce euismod sagittis tristique. Curabitur at vestibulum dolor, ac molestie tortor. Nam eu tincidunt tortor. Ut id volutpat turpis, a iaculis tellus. Morbi ipsum mi, sagittis eget maximus eu, gravida et odio. Donec gravida ullamcorper lectus, vitae imperdiet ante feugiat vitae. Quisque eu justo mollis, facilisis sapien quis, rutrum massa. Duis blandit lectus id velit ultrices, tincidunt suscipit magna dapibus. Phasellus vehicula, eros mollis porttitor rhoncus, lacus tellus tristique nisi, eu tempor nibh urna quis dui. Proin tincidunt, tortor tempor blandit porta, elit ante gravida mauris, vitae maximus magna odio a enim. Nulla arcu sapien, elementum non vestibulum eu, suscipit ut nibh. Nunc eu fringilla enim, et luctus justo. Nulla quis vulputate arcu. Sed a dapibus augue.</p>', NULL, '2020-01-06 05:54:46', NULL), (37, 0, 4, 'ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស', 'Proin enim leo, congue ut facilisis quis, malesuada id velit.', 'វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ', 'Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante.', 'uploads/1/2020-01/bb.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">នៅ </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><br></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi nec risus eu risus cursus fringilla a ut mi. Suspendisse bibendum nisl mattis erat porttitor, id dignissim turpis faucibus. Vivamus a dui non est fermentum ornare a eget felis. Aenean tincidunt mauris nisi, ut varius leo commodo vel. Sed ac porta metus. Ut vel porta elit. Nam a eros suscipit, finibus magna in, congue risus. Mauris mattis ipsum sit amet eros dignissim, sagittis commodo dui congue. Proin tempor sollicitudin leo, et tristique augue laoreet et. Duis sollicitudin felis augue, et accumsan tellus imperdiet ac. Vivamus rutrum augue ex, eget porta nunc gravida at. Proin ac metus vel diam dictum dignissim luctus at magna. Proin gravida vehicula mauris, vitae porttitor velit consectetur vitae. Integer aliquet est sit amet volutpat porttitor.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Nulla vitae orci quis purus scelerisque hendrerit in non leo. Donec pulvinar pretium orci, vel imperdiet odio iaculis condimentum. Curabitur malesuada, leo ac faucibus consequat, est dui elementum mi, ut malesuada quam metus et massa. In commodo sed ex nec consequat. Quisque non orci accumsan, aliquam erat at, condimentum magna. Curabitur eleifend laoreet convallis. Donec luctus vulputate finibus. Nullam vel nisi at leo euismod tincidunt in et odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas sapien nibh, viverra vel sollicitudin non, tempor et leo. Sed ultrices commodo arcu. Donec ullamcorper feugiat odio in euismod. Aliquam dictum tellus a felis vestibulum semper. Duis at odio non felis semper cursus. Nunc dapibus dignissim orci non placerat.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Fusce euismod sagittis tristique. Curabitur at vestibulum dolor, ac molestie tortor. Nam eu tincidunt tortor. Ut id volutpat turpis, a iaculis tellus. Morbi ipsum mi, sagittis eget maximus eu, gravida et odio. Donec gravida ullamcorper lectus, vitae imperdiet ante feugiat vitae. Quisque eu justo mollis, facilisis sapien quis, rutrum massa. Duis blandit lectus id velit ultrices, tincidunt suscipit magna dapibus. Phasellus vehicula, eros mollis porttitor rhoncus, lacus tellus tristique nisi, eu tempor nibh urna quis dui. Proin tincidunt, tortor tempor blandit porta, elit ante gravida mauris, vitae maximus magna odio a enim. Nulla arcu sapien, elementum non vestibulum eu, suscipit ut nibh. Nunc eu fringilla enim, et luctus justo. Nulla quis vulputate arcu. Sed a dapibus augue.</p>', NULL, '2020-01-06 05:56:18', '2020-01-06 05:57:19'), (38, 0, 3, 'បុរសម្នាក់នៅក្នុងរឿងអេក។', 'Nulla quis vulputate arcu. Sed a dapibus augue.', 'វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត, ultrices នៅ tortor ។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។', 'Nulla arcu sapien, elementum non vestibulum eu, suscipit ut nibh. Nunc eu fringilla enim, et luctus justo.', 'uploads/1/2020-01/pc.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p>\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\"><br></span><o:p></o:p></span><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi nec risus eu risus cursus fringilla a ut mi. Suspendisse bibendum nisl mattis erat porttitor, id dignissim turpis faucibus. Vivamus a dui non est fermentum ornare a eget felis. Aenean tincidunt mauris nisi, ut varius leo commodo vel. Sed ac porta metus. Ut vel porta elit. Nam a eros suscipit, finibus magna in, congue risus. Mauris mattis ipsum sit amet eros dignissim, sagittis commodo dui congue. Proin tempor sollicitudin leo, et tristique augue laoreet et. Duis sollicitudin felis augue, et accumsan tellus imperdiet ac. Vivamus rutrum augue ex, eget porta nunc gravida at. Proin ac metus vel diam dictum dignissim luctus at magna. Proin gravida vehicula mauris, vitae porttitor velit consectetur vitae. Integer aliquet est sit amet volutpat porttitor.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Nulla vitae orci quis purus scelerisque hendrerit in non leo. Donec pulvinar pretium orci, vel imperdiet odio iaculis condimentum. Curabitur malesuada, leo ac faucibus consequat, est dui elementum mi, ut malesuada quam metus et massa. In commodo sed ex nec consequat. Quisque non orci accumsan, aliquam erat at, condimentum magna. Curabitur eleifend laoreet convallis. Donec luctus vulputate finibus. Nullam vel nisi at leo euismod tincidunt in et odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas sapien nibh, viverra vel sollicitudin non, tempor et leo. Sed ultrices commodo arcu. Donec ullamcorper feugiat odio in euismod. Aliquam dictum tellus a felis vestibulum semper. Duis at odio non felis semper cursus. Nunc dapibus dignissim orci non placerat.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Fusce euismod sagittis tristique. Curabitur at vestibulum dolor, ac molestie tortor. Nam eu tincidunt tortor. Ut id volutpat turpis, a iaculis tellus. Morbi ipsum mi, sagittis eget maximus eu, gravida et odio. Donec gravida ullamcorper lectus, vitae imperdiet ante feugiat vitae. Quisque eu justo mollis, facilisis sapien quis, rutrum massa. Duis blandit lectus id velit ultrices, tincidunt suscipit magna dapibus. Phasellus vehicula, eros mollis porttitor rhoncus, lacus tellus tristique nisi, eu tempor nibh urna quis dui. Proin tincidunt, tortor tempor blandit porta, elit ante gravida mauris, vitae maximus magna odio a enim.&nbsp;</p>', 2, '2020-01-06 05:58:28', NULL), (39, 0, 4, 'ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស', 'Lorem Ipsum is simply dummy text of the printing', 'វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត', 'Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.', 'uploads/1/2020-01/bc.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\"><span style=\"font-size: 9pt;\">Lorem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-size: 9pt;\">,&nbsp;</span><span lang=\"KHM\" style=\"font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-size: 9pt;\">,&nbsp;</span><span lang=\"KHM\" style=\"font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-size: 9pt;\">, ultrices&nbsp;</span><span lang=\"KHM\" style=\"font-size: 9pt;\">នៅ&nbsp;</span><span style=\"font-size: 9pt;\">tortor&nbsp;</span><span lang=\"KHM\" style=\"font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\"><span lang=\"KHM\" style=\"font-size: 9pt;\"><span style=\"font-size: 9pt;\">Lorem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-size: 9pt;\">,&nbsp;</span><span lang=\"KHM\" style=\"font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-size: 9pt;\">,&nbsp;</span><span lang=\"KHM\" style=\"font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-size: 9pt;\">, ultrices&nbsp;</span><span lang=\"KHM\" style=\"font-size: 9pt;\">នៅ&nbsp;</span><span style=\"font-size: 9pt;\">tortor&nbsp;</span><span lang=\"KHM\" style=\"font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។</span><br></span><br></span><br></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Fusce euismod sagittis tristique. Curabitur at vestibulum dolor, ac molestie tortor. Nam eu tincidunt tortor. Ut id volutpat turpis, a iaculis tellus. Morbi ipsum mi, sagittis eget maximus eu, gravida et odio. Donec gravida ullamcorper lectus, vitae imperdiet ante feugiat vitae. Quisque eu justo mollis, facilisis sapien quis, rutrum massa. Duis blandit lectus id velit ultrices, tincidunt suscipit magna dapibus. Phasellus vehicula, eros mollis porttitor rhoncus, lacus tellus tristique nisi, eu tempor nibh urna quis dui. Proin tincidunt, tortor tempor blandit porta, elit ante gravida mauris, vitae maximus magna odio a enim. Nulla arcu sapien, elementum non vestibulum eu, suscipit ut nibh. Nunc eu fringilla enim, et luctus justo. Nulla quis vulputate arcu. Sed a dapibus augue.</p>', 2, '2020-01-06 05:59:50', NULL), (40, 0, 3, 'ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស', 'Lorem Ipsum is simply dummy text', 'Lorem Ipsum គឺQuisque និង lectus ac គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ, ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ Malesuada', 'Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.', 'uploads/1/2020-01/pb.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p>\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Fusce euismod sagittis tristique. Curabitur at vestibulum dolor, ac molestie tortor. Nam eu tincidunt tortor. Ut id volutpat turpis, a iaculis tellus. Morbi ipsum mi, sagittis eget maximus eu, gravida et odio. Donec gravida ullamcorper lectus, vitae imperdiet ante feugiat vitae. Quisque eu justo mollis, facilisis sapien quis, rutrum massa. Duis blandit lectus id velit ultrices, tincidunt suscipit magna dapibus. Phasellus vehicula, eros mollis porttitor rhoncus, lacus tellus tristique nisi, eu tempor nibh urna quis dui. Proin tincidunt, tortor tempor blandit porta, elit ante gravida mauris, vitae maximus magna odio a enim. Nulla arcu sapien, elementum non vestibulum eu, suscipit ut nibh. Nunc eu fringilla enim, et luctus justo. Nulla quis vulputate arcu. Sed a dapibus augue.Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin.&nbsp;</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Fusce euismod sagittis tristique. Curabitur at vestibulum dolor, ac molestie tortor. Nam eu tincidunt tortor. Ut id volutpat turpis, a iaculis tellus. Morbi ipsum mi, sagittis eget maximus eu, gravida et odio. Donec gravida ullamcorper lectus, vitae imperdiet ante feugiat vitae. Quisque eu justo mollis, facilisis sapien quis, rutrum massa. Duis blandit lectus id velit ultrices, tincidunt suscipit magna dapibus. Phasellus vehicula, eros mollis porttitor rhoncus, lacus tellus tristique nisi, eu tempor nibh urna quis dui. Proin tincidunt, tortor tempor blandit porta, elit ante gravida mauris, vitae maximus magna odio a enim. Nulla arcu sapien, elementum non vestibulum eu, suscipit ut nibh. Nunc eu fringilla enim, et luctus justo. Nulla quis vulputate arcu. Sed a dapibus augue.</p>', NULL, '2020-01-06 06:02:02', NULL), (41, 0, 4, 'វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត', 'Fusce facilisis urna fermentum tristique molestie. Morbi', 'អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។', 'Sed a dapibus augue.Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit.', 'uploads/1/2020-01/ba.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Fusce euismod sagittis tristique. Curabitur at vestibulum dolor, ac molestie tortor. Nam eu tincidunt tortor. Ut id volutpat turpis, a iaculis tellus. Morbi ipsum mi, sagittis eget maximus eu, gravida et odio. Donec gravida ullamcorper lectus, vitae imperdiet ante feugiat vitae. Quisque eu justo mollis, facilisis sapien quis, rutrum massa. Duis blandit lectus id velit ultrices, tincidunt suscipit magna dapibus. Phasellus vehicula, eros mollis porttitor rhoncus, lacus tellus tristique nisi, eu tempor nibh urna quis dui. Proin tincidunt, tortor tempor blandit porta, elit ante gravida mauris, vitae maximus magna odio a enim. Nulla arcu sapien, elementum non vestibulum eu, suscipit ut nibh. Nunc eu fringilla enim, et luctus justo. Nulla quis vulputate arcu. Sed a dapibus augue.Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Fusce euismod sagittis tristique. Curabitur at vestibulum dolor, ac molestie tortor. Nam eu tincidunt tortor. Ut id volutpat turpis, a iaculis tellus. Morbi ipsum mi, sagittis eget maximus eu, gravida et odio. Donec gravida ullamcorper lectus, vitae imperdiet ante feugiat vitae. Quisque eu justo mollis, facilisis sapien quis, rutrum massa. Duis blandit lectus id velit ultrices, tincidunt suscipit magna dapibus. Phasellus vehicula, eros mollis porttitor rhoncus, lacus tellus tristique nisi, eu tempor nibh urna quis dui. Proin tincidunt, tortor tempor blandit porta, elit ante gravida mauris, vitae maximus magna odio a enim. Nulla arcu sapien, elementum non vestibulum eu, suscipit ut nibh. Nunc eu fringilla enim, et luctus justo. Nulla quis vulputate arcu. Sed a dapibus augue.</p>', 4, '2020-01-06 06:03:32', NULL), (42, 0, 3, 'វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក', 'Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur.', 'លោក Nam នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។', 'Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis.', 'uploads/1/2020-01/pb.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។</span></span></p><p>\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Nulla vitae orci quis purus scelerisque hendrerit in non leo. Donec pulvinar pretium orci, vel imperdiet odio iaculis condimentum. Curabitur malesuada, leo ac faucibus consequat, est dui elementum mi, ut malesuada quam metus et massa. In commodo sed ex nec consequat. Quisque non orci accumsan, aliquam erat at, condimentum magna. Curabitur eleifend laoreet convallis. Donec luctus vulputate finibus. Nullam vel nisi at leo euismod tincidunt in et odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas sapien nibh, viverra vel sollicitudin non, tempor et leo. Sed ultrices commodo arcu. Donec ullamcorper feugiat odio in euismod. Aliquam dictum tellus a felis vestibulum semper. Duis at odio non felis semper cursus. Nunc dapibus dignissim orci non placerat.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.Nulla vitae orci quis purus scelerisque hendrerit in non leo. Donec pulvinar pretium orci, vel imperdiet odio iaculis condimentum. Curabitur malesuada, leo ac faucibus consequat, est dui elementum mi, ut malesuada quam metus et massa. In commodo sed ex nec consequat. Quisque non orci accumsan, aliquam erat at, condimentum magna. Curabitur eleifend laoreet convallis. Donec luctus vulputate finibus. Nullam vel nisi at leo euismod tincidunt in et odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas sapien nibh, viverra vel sollicitudin non, tempor et leo. Sed ultrices commodo arcu. Donec ullamcorper feugiat odio in euismod. Aliquam dictum tellus a felis vestibulum semper. Duis at odio non felis semper cursus. Nunc dapibus dignissim orci non placerat.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">&nbsp;Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p>', 2, '2020-01-06 06:04:48', NULL); INSERT INTO `articles` (`id`, `user_id`, `categories_id`, `title_kh`, `title_en`, `description_kh`, `description_en`, `images`, `article_kh`, `article_en`, `view`, `created_at`, `updated_at`) VALUES (43, 0, 4, 'ultrices នៅ tortor ។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។', 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.', 'វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត,', 'Quisque non orci accumsan, aliquam erat at, condimentum magna. Curabitur eleifend laoreet convallis. Donec luctus vulputate finibus. Nullam vel nisi at leo euismod tincidunt in et odio.', 'uploads/1/2020-01/bb.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។&nbsp;</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Nulla vitae orci quis purus scelerisque hendrerit in non leo. Donec pulvinar pretium orci, vel imperdiet odio iaculis condimentum. Curabitur malesuada, leo ac faucibus consequat, est dui elementum mi, ut malesuada quam metus et massa. In commodo sed ex nec consequat. Quisque non orci accumsan, aliquam erat at, condimentum magna. Curabitur eleifend laoreet convallis. Donec luctus vulputate finibus. Nullam vel nisi at leo euismod tincidunt in et odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas sapien nibh, viverra vel sollicitudin non, tempor et leo. Sed ultrices commodo arcu. Donec ullamcorper feugiat odio in euismod. Aliquam dictum tellus a felis vestibulum semper. Duis at odio non felis semper cursus. Nunc dapibus dignissim orci non placerat.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.Nulla vitae orci quis purus scelerisque hendrerit in non leo. Donec pulvinar pretium orci, vel imperdiet odio iaculis condimentum. Curabitur malesuada, leo ac faucibus consequat, est dui elementum mi, ut malesuada quam metus et massa. In commodo sed ex nec consequat.Maecenas sapien nibh, viverra vel sollicitudin non, tempor et leo. Sed ultrices commodo arcu. Donec ullamcorper feugiat odio in euismod. Aliquam dictum tellus a felis vestibulum semper. Duis at odio non felis semper cursus. Nunc dapibus dignissim orci non placerat.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p>', 5, '2020-01-06 06:06:37', NULL), (44, 0, 3, 'អ្នកគួរតែទទួលបានលទ្ធផលល្អ Lorem Ipsum គឺQuisque', 'Vivamus accumsanVivamus accumsan iaculis laoreet.', 'វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត', 'ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices.', 'uploads/1/2020-01/pa.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">lectus\r\nac </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Malesuada </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Nam\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">, </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">orci </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅកន្លែងកើតហេតុ\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">sodales </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span><br></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.</p>', 4, '2020-01-06 06:07:50', NULL), (45, 1, 3, 'ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស', 'Lorem Ipsum is simply dummy text', 'អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន', 'Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue', 'uploads/1/2020-01/pc.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាន</span></span></p><p>\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\"><o:p></o:p></span></p>', '<p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies., nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.</p>', 3, '2020-01-06 06:09:18', '2020-01-22 08:42:25'); -- -------------------------------------------------------- -- -- Table structure for table `back_ground_students` -- CREATE TABLE `back_ground_students` ( `id` int(10) UNSIGNED NOT NULL, `khname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `diploma` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mention` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `year` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mental` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `occupation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `back_ground_students` -- INSERT INTO `back_ground_students` (`id`, `khname`, `enname`, `diploma`, `mention`, `year`, `mental`, `occupation`, `created_at`, `updated_at`) VALUES (1, 'ដារា', 'Dara', 'II', 'pass', '2011', 'A', 'student', '2019-12-05 09:10:29', NULL); -- -------------------------------------------------------- -- -- Table structure for table `batches` -- CREATE TABLE `batches` ( `id` int(10) UNSIGNED NOT NULL, `batchname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `batches` -- INSERT INTO `batches` (`id`, `batchname`, `created_at`, `updated_at`) VALUES (1, '1', '2019-12-12 07:07:04', '2019-12-12 07:07:41'), (2, '2', '2019-12-12 07:07:15', NULL), (3, '3', '2019-12-12 07:07:19', NULL), (4, '4', '2019-12-12 07:07:24', NULL), (5, '5', '2019-12-12 07:07:28', NULL), (6, '6', '2019-12-12 07:07:32', NULL); -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` int(10) UNSIGNED NOT NULL, `title_kh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `title_en` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `order_level` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `categories` -- INSERT INTO `categories` (`id`, `title_kh`, `title_en`, `order_level`, `created_at`, `updated_at`) VALUES (1, 'កម្សាន្ត', 'entertainment', 1, '2019-12-29 20:36:50', NULL), (2, 'បច្ចេកវិទ្យា', 'technology', 1, '2019-12-29 20:37:11', NULL), (3, 'ជីវិតនិងសង្គម', 'life', 1, '2019-12-29 20:37:40', NULL), (4, 'កីឡា', 'sport', 1, '2019-12-29 20:38:04', NULL), (5, 'ធម្មជាតិ', 'nature', 2, '2019-12-31 02:14:53', '2020-01-04 22:52:48'), (6, 'សប្បាយដើរ', 'sabayder', 2, '2019-12-31 02:15:04', '2020-01-04 22:50:09'); -- -------------------------------------------------------- -- -- Table structure for table `classes` -- CREATE TABLE `classes` ( `id` int(10) UNSIGNED NOT NULL, `classname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cms_apicustom` -- CREATE TABLE `cms_apicustom` ( `id` int(10) UNSIGNED NOT NULL, `permalink` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tabel` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `aksi` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `kolom` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `orderby` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_query_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sql_where` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `nama` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `keterangan` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parameter` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `method_type` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parameters` longtext COLLATE utf8mb4_unicode_ci, `responses` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cms_apikey` -- CREATE TABLE `cms_apikey` ( `id` int(10) UNSIGNED NOT NULL, `screetkey` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `hit` int(11) DEFAULT NULL, `status` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cms_dashboard` -- CREATE TABLE `cms_dashboard` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id_cms_privileges` int(11) DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cms_email_queues` -- CREATE TABLE `cms_email_queues` ( `id` int(10) UNSIGNED NOT NULL, `send_at` datetime DEFAULT NULL, `email_recipient` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_from_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_from_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_cc_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_subject` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_content` text COLLATE utf8mb4_unicode_ci, `email_attachments` text COLLATE utf8mb4_unicode_ci, `is_sent` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cms_email_templates` -- CREATE TABLE `cms_email_templates` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `subject` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `from_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `from_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cc_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `cms_email_templates` -- INSERT INTO `cms_email_templates` (`id`, `name`, `slug`, `subject`, `content`, `description`, `from_name`, `from_email`, `cc_email`, `created_at`, `updated_at`) VALUES (1, 'Email Template Forgot Password Backend', 'forgot_password_backend', NULL, '<p>Hi,</p><p>Someone requested forgot password, here is your new password : </p><p>[password]</p><p><br></p><p>--</p><p>Regards,</p><p>Admin</p>', '[password]', 'System', '<EMAIL>', NULL, '2019-11-27 08:57:09', NULL); -- -------------------------------------------------------- -- -- Table structure for table `cms_logs` -- CREATE TABLE `cms_logs` ( `id` int(10) UNSIGNED NOT NULL, `ipaddress` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `useragent` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `details` text COLLATE utf8mb4_unicode_ci, `id_cms_users` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `cms_logs` -- INSERT INTO `cms_logs` (`id`, `ipaddress`, `useragent`, `url`, `description`, `details`, `id_cms_users`, `created_at`, `updated_at`) VALUES (1, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2019-11-27 08:58:21', NULL), (2, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/users/edit-save/1', 'Update data Super Admin at Users Management', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>photo</td><td></td><td>uploads/1/2019-11/flatvector.jpg</td></tr><tr><td>password</td><td><PASSWORD>GmyDXODq</td><td></td></tr><tr><td>status</td><td>Active</td><td></td></tr></tbody></table>', 1, '2019-11-27 08:59:07', NULL), (3, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/logout', '<EMAIL> logout', '', 1, '2019-11-27 08:59:30', NULL), (4, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2019-11-27 08:59:37', NULL), (5, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2019-12-05 07:58:15', NULL), (6, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/parents/add-save', 'Add New Data at Parents', '', 1, '2019-12-05 08:59:26', NULL), (7, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/parents/edit-save/1', 'Update data at Parents', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2019-12-05 09:01:36', NULL), (8, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/promotions/add-save', 'Add New Data at Promotions', '', 1, '2019-12-05 09:06:03', NULL), (9, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/promotions/add-save', 'Add New Data at Promotions', '', 1, '2019-12-05 09:06:14', NULL), (10, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/promotions/add-save', 'Add New Data at Promotions', '', 1, '2019-12-05 09:06:37', NULL), (11, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/back_ground_students/add-save', 'Add New Data at BackGroundStudents', '', 1, '2019-12-05 09:10:29', NULL), (12, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/menu_management/add-save', 'Add New Data StudentsInformation at Menu Management', '', 1, '2019-12-05 09:18:59', NULL), (13, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/menu_management/edit-save/5', 'Update data StudentsInformation at Menu Management', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>type</td><td>Module</td><td>URL</td></tr></tbody></table>', 1, '2019-12-05 09:21:35', NULL), (14, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/students_infos/add-save', 'Add New Data at StudentsInformation', '', 1, '2019-12-05 10:01:06', NULL), (15, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/students_infos/edit-save/1', 'Update data at StudentsInformation', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2019-12-05 10:02:10', NULL), (16, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/students_infos/add-save', 'Add New Data at StudentsInformation', '', 1, '2019-12-05 10:08:13', NULL), (17, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/students_infos/edit-save/2', 'Update data at StudentsInformation', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>sex</td><td>Male,Female</td><td>Female</td></tr></tbody></table>', 1, '2019-12-05 10:09:51', NULL), (18, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/students_infos/edit-save/1', 'Update data at StudentsInformation', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>sex</td><td>FK</td><td>Male</td></tr></tbody></table>', 1, '2019-12-05 10:11:44', NULL), (19, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/logout', '<EMAIL> logout', '', 1, '2019-12-05 10:14:37', NULL), (20, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2019-12-12 06:42:49', NULL), (21, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/academics/add-save', 'Add New Data at Academics', '', 1, '2019-12-12 07:05:50', NULL), (22, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/academics/add-save', 'Add New Data at Academics', '', 1, '2019-12-12 07:05:56', NULL), (23, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/academics/add-save', 'Add New Data at Academics', '', 1, '2019-12-12 07:06:01', NULL), (24, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/academics/add-save', 'Add New Data at Academics', '', 1, '2019-12-12 07:06:06', NULL), (25, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/academics/add-save', 'Add New Data at Academics', '', 1, '2019-12-12 07:06:12', NULL), (26, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/academic_details/add-save', 'Add New Data at AcademicsDetails', '', 1, '2019-12-12 07:06:28', NULL), (27, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/batches/add-save', 'Add New Data I at Batches', '', 1, '2019-12-12 07:07:04', NULL), (28, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/batches/add-save', 'Add New Data 2 at Batches', '', 1, '2019-12-12 07:07:15', NULL), (29, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/batches/add-save', 'Add New Data 3 at Batches', '', 1, '2019-12-12 07:07:19', NULL), (30, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/batches/add-save', 'Add New Data 4 at Batches', '', 1, '2019-12-12 07:07:24', NULL), (31, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/batches/add-save', 'Add New Data 5 at Batches', '', 1, '2019-12-12 07:07:28', NULL), (32, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/batches/add-save', 'Add New Data 6 at Batches', '', 1, '2019-12-12 07:07:32', NULL), (33, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/batches/edit-save/1', 'Update data 1 at Batches', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>batchname</td><td>I</td><td>1</td></tr></tbody></table>', 1, '2019-12-12 07:07:41', NULL), (34, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/menu_management/add-save', 'Add New Data Academics at Menu Management', '', 1, '2019-12-12 07:09:26', NULL), (35, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/menu_management/edit-save/9', 'Update data Academics at Menu Management', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>sorting</td><td>3</td><td></td></tr></tbody></table>', 1, '2019-12-12 07:10:54', NULL), (36, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/faculties/add-save', 'Add New Data Computer Science at Faculty', '', 1, '2019-12-12 07:25:25', NULL), (37, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/faculties/add-save', 'Add New Data Computer Network Technology at Faculty', '', 1, '2019-12-12 07:25:42', NULL), (38, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/faculties/add-save', 'Add New Data Electronic and Electricity Engineering at Faculty', '', 1, '2019-12-12 07:25:51', NULL), (39, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/faculties/edit-save/1', 'Update data Faculty of Science and Technology at Faculty', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>facultiename</td><td>Computer Science</td><td>Faculty of Science and Technology</td></tr></tbody></table>', 1, '2019-12-12 07:30:59', NULL), (40, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/majors/add-save', 'Add New Data Computer Science at Majors', '', 1, '2019-12-12 07:31:17', NULL), (41, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/majors/add-save', 'Add New Data Computer Network Technology at Majors', '', 1, '2019-12-12 07:31:35', NULL), (42, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/majors/add-save', 'Add New Data Electronic and Electricity Engineering at Majors', '', 1, '2019-12-12 07:31:48', NULL), (43, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/faculties/edit-save/2', 'Update data Faculty of Law and Political Science at Faculty', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>facultiename</td><td>Computer Network Technology</td><td>Faculty of Law and Political Science</td></tr></tbody></table>', 1, '2019-12-12 07:32:14', NULL), (44, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/majors/add-save', 'Add New Data Public Law at Majors', '', 1, '2019-12-12 07:32:27', NULL), (45, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/majors/add-save', 'Add New Data Public Administration at Majors', '', 1, '2019-12-12 07:32:37', NULL), (46, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/majors/add-save', 'Add New Data Political Science at Majors', '', 1, '2019-12-12 07:32:47', NULL), (47, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/faculties/edit-save/3', 'Update data Faculty of Social Science and Economics at Faculty', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>facultiename</td><td>Electronic and Electricity Engineering</td><td>Faculty of Social Science and Economics</td></tr></tbody></table>', 1, '2019-12-12 07:33:08', NULL), (48, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/majors/add-save', 'Add New Data Community Development at Majors', '', 1, '2019-12-12 07:33:32', NULL), (49, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/majors/add-save', 'Add New Data Finance and Banking at Majors', '', 1, '2019-12-12 07:33:41', NULL), (50, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/majors/add-save', 'Add New Data Economics at Majors', '', 1, '2019-12-12 07:33:50', NULL), (51, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/menu_management/add-save', 'Add New Data Faculty at Menu Management', '', 1, '2019-12-12 07:35:14', NULL), (52, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/menu_management/edit-save/12', 'Update data Faculty at Menu Management', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>sorting</td><td>4</td><td></td></tr></tbody></table>', 1, '2019-12-12 07:35:57', NULL), (53, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/semesters/add-save', 'Add New Data at Semesters', '', 1, '2019-12-12 07:41:08', NULL), (54, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/semesters/add-save', 'Add New Data at Semesters', '', 1, '2019-12-12 07:41:12', NULL), (55, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/semesters/add-save', 'Add New Data at Semesters', '', 1, '2019-12-12 07:41:15', NULL), (56, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/semesters/add-save', 'Add New Data at Semesters', '', 1, '2019-12-12 07:41:21', NULL), (57, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/degrees/add-save', 'Add New Data at Degrees', '', 1, '2019-12-12 08:01:32', NULL), (58, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/sub_phemantaries/add-save', 'Add New Data at SubPhemantary', '', 1, '2019-12-12 08:02:33', NULL), (59, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/logout', '<EMAIL> logout', '', 1, '2019-12-12 08:08:14', NULL), (60, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2019-12-16 08:45:59', NULL), (61, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2019-12-29 20:28:16', NULL), (62, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/add-save', 'Add New Data កម្សាន្ត at Categories', '', 1, '2019-12-29 20:36:50', NULL), (63, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/add-save', 'Add New Data បច្ចេកវិទ្យា at Categories', '', 1, '2019-12-29 20:37:11', NULL), (64, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/add-save', 'Add New Data ជីវិតនិងសង្គម at Categories', '', 1, '2019-12-29 20:37:40', NULL), (65, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/add-save', 'Add New Data កីឡា at Categories', '', 1, '2019-12-29 20:38:04', NULL), (66, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data at Articles', '', 1, '2019-12-29 20:42:07', NULL), (67, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data at Articles', '', 1, '2019-12-29 20:42:16', NULL), (68, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data at Articles', '', 1, '2019-12-29 20:42:27', NULL), (69, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data at Articles', '', 1, '2019-12-29 20:42:35', NULL), (70, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data at Articles', '', 1, '2019-12-29 20:42:45', NULL), (71, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/1', 'Update data គឺជាម៉ូតូ​អូតូ at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2019-12-29 20:43:35', NULL), (72, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/menu_management/add-save', 'Add New Data Articles at Menu Management', '', 1, '2019-12-29 20:47:08', NULL), (73, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/menu_management/edit-save/19', 'Update data Articles at Menu Management', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>sorting</td><td></td><td></td></tr></tbody></table>', 1, '2019-12-29 20:47:30', NULL), (74, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/add-save', 'Add New Data uploads/1/2019-12/auto.png at Tag', '', 1, '2019-12-29 20:56:47', NULL), (75, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/add-save', 'Add New Data uploads/1/2019-12/healthy.png at Tag', '', 1, '2019-12-29 20:57:01', NULL), (76, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/add-save', 'Add New Data uploads/1/2019-12/vilege.png at Tag', '', 1, '2019-12-29 20:57:15', NULL), (77, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/add-save', 'Add New Data uploads/1/2019-12/weekly.png at Tag', '', 1, '2019-12-29 20:57:29', NULL), (78, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/menu_management/add-save', 'Add New Data Tag at Menu Management', '', 1, '2019-12-29 20:58:13', NULL), (79, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/menu_management/edit-save/20', 'Update data Tag at Menu Management', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>type</td><td>Route</td><td>Module</td></tr><tr><td>path</td><td>AdminTagsControllerGetIndex</td><td>tags</td></tr><tr><td>color</td><td></td><td>normal</td></tr><tr><td>sorting</td><td>5</td><td></td></tr></tbody></table>', 1, '2019-12-29 20:58:39', NULL), (80, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/menu_management/edit-save/21', 'Update data Tag at Menu Management', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2019-12-29 20:59:21', NULL), (81, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2019-12-29 21:10:52', NULL), (82, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2019-12-29 21:11:16', NULL), (83, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2019-12-30 01:28:46', NULL), (84, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/4', 'Update data ម៉ូតូ​អូតូ​បែប at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td></td><td>ម៉ូតូ​អូតូ​បែប</td></tr><tr><td>title_en</td><td></td><td>ម៉ូតូ​អូតូ​បែប</td></tr><tr><td>article_kh</td><td></td><td>Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេក</td></tr></tbody></table>', 1, '2019-12-30 02:27:23', NULL), (85, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/4', 'Update data ម៉ូតូ​អូតូ​បែប at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>images</td><td></td><td>uploads/1/2019-12/photo_2019_11_15_20_41_52.jpg</td></tr></tbody></table>', 1, '2019-12-30 02:32:40', NULL), (86, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2019-12-30 23:14:31', NULL), (87, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/menu_management/add-save', 'Add New Data Ads at Menu Management', '', 1, '2019-12-30 23:24:54', NULL), (88, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/menu_management/edit-save/25', 'Update data Ads at Menu Management', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>sorting</td><td>3</td><td></td></tr></tbody></table>', 1, '2019-12-30 23:25:32', NULL), (89, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2019-12-30 23:26:08', NULL), (90, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2019-12-30 23:30:12', NULL), (91, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2019-12-30 23:30:39', NULL), (92, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2019-12-31 00:00:44', NULL), (93, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2019-12-31 00:01:00', NULL), (94, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2019-12-31 00:01:09', NULL), (95, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2019-12-31 00:03:02', NULL), (96, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2019-12-31 00:03:14', NULL), (97, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2019-12-31 00:03:25', NULL), (98, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/5', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2019-12-31 00:06:49', NULL), (99, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/4', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2019-12-31 00:07:04', NULL), (100, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/3', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2019-12-31 00:07:47', NULL), (101, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/5', 'Update data at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2019-12-31 01:05:05', NULL), (102, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/1', 'Update data គឺជាម៉ូតូ​អូតូ at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2019-12-31 01:05:21', NULL), (103, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/3', 'Update data at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2019-12-31 01:05:44', NULL), (104, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/2', 'Update data at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2019-12-31 01:05:57', NULL), (105, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/edit-save/4', 'Update data uploads/1/2019-12/weekly.png at Tag', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>order_level</td><td>0</td><td>1</td></tr></tbody></table>', 1, '2019-12-31 01:50:16', NULL), (106, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/add-save', 'Add New Data ប្រលោមលោក at Categories', '', 1, '2019-12-31 02:14:53', NULL), (107, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/add-save', 'Add New Data សប្បាយដើរ at Categories', '', 1, '2019-12-31 02:15:04', NULL), (108, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/edit-save/5', 'Update data ប្រលោមលោក at Categories', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>order_level</td><td>2</td><td>0</td></tr></tbody></table>', 1, '2019-12-31 02:16:04', NULL), (109, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2020-01-02 05:45:05', NULL), (110, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/2', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2020-01-02 05:51:28', NULL), (111, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/1', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2020-01-02 05:51:43', NULL), (112, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/delete-image', 'Delete the image of 5 at Post Tags', '', 1, '2020-01-02 05:55:02', NULL), (113, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/5', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2020-01-02 05:55:16', NULL), (114, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/delete-image', 'Delete the image of 4 at Post Tags', '', 1, '2020-01-02 05:55:28', NULL), (115, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/4', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2020-01-02 05:55:39', NULL), (116, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/delete-image', 'Delete the image of 3 at Post Tags', '', 1, '2020-01-02 05:55:51', NULL), (117, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/3', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2020-01-02 05:56:07', NULL), (118, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/delete-image', 'Delete the image of at Articles', '', 1, '2020-01-02 05:57:30', NULL), (119, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/5', 'Update data at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2020-01-02 05:57:42', NULL), (120, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/delete-image', 'Delete the image of ម៉ូតូ​អូតូ​បែប at Articles', '', 1, '2020-01-02 05:57:59', NULL), (121, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/4', 'Update data ម៉ូតូ​អូតូ​បែប at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>images</td><td></td><td>uploads/1/2020-01/5e0d95261fbfa_1577948400_small.jpg</td></tr></tbody></table>', 1, '2020-01-02 05:58:21', NULL), (122, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/delete-image', 'Delete the image of គឺជាម៉ូតូ​អូតូ at Articles', '', 1, '2020-01-02 05:58:32', NULL), (123, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/1', 'Update data គឺជាម៉ូតូ​អូតូ at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2020-01-02 05:58:45', NULL), (124, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/delete-image', 'Delete the image of at Articles', '', 1, '2020-01-02 05:58:55', NULL), (125, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/3', 'Update data at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2020-01-02 05:59:04', NULL), (126, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/delete-image', 'Delete the image of at Articles', '', 1, '2020-01-02 05:59:15', NULL), (127, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/2', 'Update data at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2020-01-02 05:59:27', NULL), (128, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/delete-image', 'Delete the image of at Articles', '', 1, '2020-01-02 05:59:42', NULL), (129, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/3', 'Update data at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2020-01-02 06:00:22', NULL), (130, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/delete-image', 'Delete the image of 2 at Post Tags', '', 1, '2020-01-02 06:01:07', NULL), (131, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/2', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody></tbody></table>', 1, '2020-01-02 06:01:52', NULL), (132, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/edit-save/5', 'Update data ប្រលោមលោក at Categories', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_en</td><td></td><td>enovel</td></tr></tbody></table>', 1, '2020-01-02 06:08:39', NULL), (133, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/edit-save/6', 'Update data សប្បាយដើរ at Categories', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_en</td><td></td><td>sabayder</td></tr></tbody></table>', 1, '2020-01-02 06:09:13', NULL), (134, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ៨កន្លែង ទៅដល់ខេត្តមណ្ឌលគីរីហើយ មិនគួររំលងទៅកម្សាន្ត at Articles', '', 1, '2020-01-02 06:18:56', NULL), (135, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data រំលឹក! ​ស្ត្រី​មាន​ឥទ្ធិពល​បំផុត​ទាំង ១០រូបក្នុង​វិស័យ​បច្ចេកវិទ្យា​កាល​ឆ្នាំ​ ​២០១៦ at Articles', '', 1, '2020-01-02 06:20:18', NULL), (136, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/edit-save/6', 'Update data សប្បាយដើរ at Categories', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>order_level</td><td>2</td><td>0</td></tr></tbody></table>', 1, '2020-01-02 06:56:25', NULL), (137, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2020-01-03 05:40:33', NULL), (138, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-03 05:41:01', NULL), (139, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-03 05:49:38', NULL), (140, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-03 05:56:42', NULL), (141, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-03 05:56:51', NULL), (142, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-03 05:57:04', NULL), (143, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-03 06:07:21', NULL), (144, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-03 06:11:27', NULL), (145, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-03 06:12:00', NULL), (146, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2020-01-03 19:51:07', NULL), (147, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-03 19:51:26', NULL), (148, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-03 19:51:34', NULL), (149, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-03 19:51:42', NULL), (150, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-03 20:06:03', NULL), (151, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-03 20:06:26', NULL), (152, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-03 20:06:48', NULL), (153, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-03 20:08:40', NULL), (154, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-03 20:09:32', NULL), (155, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/edit-save/5', 'Update data ប្រលោមលោក at Categories', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>order_level</td><td>0</td><td>2</td></tr></tbody></table>', 1, '2020-01-03 20:24:18', NULL), (156, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស at Articles', '', 1, '2020-01-03 20:30:02', NULL), (157, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/add-save', 'Add New Data at TagBanner', '', 1, '2020-01-03 21:00:21', NULL), (158, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/add-save', 'Add New Data at TagBanner', '', 1, '2020-01-03 21:00:34', NULL), (159, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/add-save', 'Add New Data at TagBanner', '', 1, '2020-01-03 21:00:46', NULL), (160, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/add-save', 'Add New Data at TagBanner', '', 1, '2020-01-03 21:00:57', NULL), (161, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/edit-save/4', 'Update data at TagBanner', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>status</td><td>0</td><td>1</td></tr></tbody></table>', 1, '2020-01-03 21:18:18', NULL); INSERT INTO `cms_logs` (`id`, `ipaddress`, `useragent`, `url`, `description`, `details`, `id_cms_users`, `created_at`, `updated_at`) VALUES (162, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/delete-image', 'Delete the image of 2 at TagBanner', '', 1, '2020-01-03 21:21:08', NULL), (163, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/edit-save/2', 'Update data at TagBanner', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>images</td><td></td><td>uploads/1/2020-01/life.png</td></tr></tbody></table>', 1, '2020-01-03 21:22:04', NULL), (164, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/edit-save/2', 'Update data at TagBanner', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>status</td><td>0</td><td>1</td></tr></tbody></table>', 1, '2020-01-03 21:22:16', NULL), (165, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/delete-image', 'Delete the image of 3 at TagBanner', '', 1, '2020-01-03 21:33:12', NULL), (166, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/edit-save/3', 'Update data at TagBanner', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>images</td><td></td><td>uploads/1/2020-01/rod.jpg</td></tr><tr><td>status</td><td>0</td><td>1</td></tr></tbody></table>', 1, '2020-01-03 21:33:37', NULL), (167, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/delete-image', 'Delete the image of 4 at TagBanner', '', 1, '2020-01-03 21:44:16', NULL), (168, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/edit-save/4', 'Update data at TagBanner', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>images</td><td></td><td>uploads/1/2020-01/weeklybanner.jpg</td></tr></tbody></table>', 1, '2020-01-03 21:44:29', NULL), (169, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tag_banners/edit-save/1', 'Update data at TagBanner', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>status</td><td>0</td><td>1</td></tr></tbody></table>', 1, '2020-01-03 21:46:11', NULL), (170, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2020-01-04 05:07:23', NULL), (171, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2020-01-04 05:09:40', NULL), (172, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2020-01-04 05:10:35', NULL), (173, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2020-01-04 05:11:21', NULL), (174, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2020-01-04 05:13:22', NULL), (175, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2020-01-04 05:14:14', NULL), (176, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2020-01-04 05:15:16', NULL), (177, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/5', 'Update data ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវា at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td></td><td>ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវា</td></tr><tr><td>title_en</td><td></td><td>publishing packages and web page editors</td></tr><tr><td>article_kh</td><td>Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា LED, មាន​កុងទ័រ​បែប​ឌីជីថល​បង្ហាញ​ព័ត៌មាន​សំខាន់ៗ, មាន​ធុង​ប្រេង​ចំណុះ ៨ លីត្រ, មាន​បច្ចេកវិទ្យា​ Idling Stop និង​ប្រើ​ប្រាស់​ Smart Key ជា​ដើម។</td><td>ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍ\r\nHonda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា LED, មាន​កុងទ័រ​បែប​ឌីជីថល​បង្ហាញ​ព័ត៌មាន​សំខាន់ៗ, មាន​ធុង​ប្រេង​ចំណុះ ៨ លីត្រ, មាន​បច្ចេកវិទ្យា​ Idling Stop និង​ប្រើ​ប្រាស់​ Smart Key ជា​ដើម។</td></tr><tr><td>article_en</td><td></td><td>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors</td></tr></tbody></table>', 1, '2020-01-04 05:16:40', NULL), (178, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/3', 'Update data ចំនុចនៃការប្រើ Lorem Ipsum at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td></td><td>ចំនុចនៃការប្រើ Lorem Ipsum</td></tr><tr><td>title_en</td><td></td><td>now use Lorem Ipsum as their</td></tr><tr><td>article_kh</td><td>Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា LED, មាន​កុងទ័រ​បែប​ឌីជីថល​បង្ហាញ​ព័ត៌មាន​សំខាន់ៗ, មាន​ធុង​ប្រេង​ចំណុះ ៨ លីត្រ, មាន​បច្ចេកវិទ្យា​ Idling Stop និង​ប្រើ​ប្រាស់​ Smart Key ជា​ដើម។</td><td>ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍ</td></tr><tr><td>article_en</td><td></td><td>now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</td></tr></tbody></table>', 1, '2020-01-04 05:17:18', NULL), (179, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/2', 'Update data Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រា at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td></td><td>Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រា</td></tr><tr><td>title_en</td><td></td><td>Lorem Ipsum is simply</td></tr><tr><td>article_kh</td><td>Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា LED, មាន​កុងទ័រ​បែប​ឌីជីថល​បង្ហាញ​ព័ត៌មាន​សំខាន់ៗ, មាន​ធុង​ប្រេង​ចំណុះ ៨ លីត្រ, មាន​បច្ចេកវិទ្យា​ Idling Stop និង​ប្រើ​ប្រាស់​ Smart Key ជា​ដើម។</td><td>Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា LED, មាន​កុងទ័រ​បែប​ឌីជីថល​បង្ហាញ​ព័ត៌មាន​សំខាន់ៗ, មាន​ធុង​ប្រេង​ចំណុះ ៨ លីត្រ, មាន​បច្ចេកវិទ្យា​ Idling Stop និង​ប្រើ​ប្រាស់​ Smart Key ជា​ដើម។\r\nLorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។ ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</td></tr><tr><td>article_en</td><td></td><td>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</td></tr></tbody></table>', 1, '2020-01-04 05:18:02', NULL), (180, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/7', 'Update data រំលឹក! ​ស្ត្រី​មាន​ឥទ្ធិពល​បំផុត​ទាំង ១០រូបក្នុង​វិស័យ​បច្ចេកវិទ្យា​កាល​ឆ្នាំ​ ​២០១៦ at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_en</td><td></td><td>Lorem Ipsum is simply dummy text of the print</td></tr><tr><td>article_en</td><td></td><td>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</td></tr></tbody></table>', 1, '2020-01-04 05:20:36', NULL), (181, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-04 05:54:45', NULL), (182, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-04 05:54:55', NULL), (183, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-04 05:55:07', NULL), (184, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-04 06:18:55', NULL), (185, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-04 06:20:43', NULL), (186, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-04 06:21:09', NULL), (187, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-04 06:23:52', NULL), (188, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-04 06:24:03', NULL), (189, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_positions/add-save', 'Add New Data at AdsPositions', '', 1, '2020-01-04 06:24:13', NULL), (190, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-04 06:25:57', NULL), (191, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-04 06:26:20', NULL), (192, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/ads_posts/add-save', 'Add New Data at AdsPosts', '', 1, '2020-01-04 06:26:44', NULL), (193, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2020-01-04 20:42:31', NULL), (194, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/1', 'Update data Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td>គឺជាម៉ូតូ​អូតូ</td><td>Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On</td></tr><tr><td>title_en</td><td></td><td>Lorem Ipsum is simply dummy text</td></tr><tr><td>description_kh</td><td></td><td>Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។ ចំនុចនៃការប្</td></tr><tr><td>description_en</td><td></td><td>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using</td></tr><tr><td>article_kh</td><td>Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា LED, មាន​កុងទ័រ​បែប​ឌីជីថល​បង្ហាញ​ព័ត៌មាន​សំខាន់ៗ, មាន​ធុង​ប្រេង​ចំណុះ ៨ លីត្រ, មាន​បច្ចេកវិទ្យា​ Idling Stop និង​ប្រើ​ប្រាស់​ Smart Key ជា​ដើម។</td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ </span>Lorem Ipsum <span lang=\"KHM\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។\r\nកញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ </span>Lorem\r\nIpsum <span lang=\"KHM\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក </span>\'lorem\r\nipsum\' <span lang=\"KHM\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។\r\nកំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង\r\n(កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><img src=\"http://localhost:8000/uploads/1/2020-01/5dfc71f6fc84a627169a8d69f44b150a.jpg\" style=\"width: 740.5px; height: 416.713px;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><span lang=\"KHM\"><br></span><o:p></o:p></span></p></td></tr><tr><td>article_en</td><td></td><td><p><span style=\"font-size: 10.5pt; line-height: 107%; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a long established fact\r\nthat a reader will be distracted by the readable content of a page when looking\r\nat its layout. The point of using Lorem Ipsum is that it has a more-or-less\r\nnormal distribution of letters, as opposed to using \'Content here, content\r\nhere\', making it look like readable English. Many desktop publishing packages\r\nand web page editors&nbsp;</span><img src=\"http://localhost:8000/uploads/1/2020-01/1ed16dbf438e920e98b066e8776fc76c.jpg\"><br></p></td></tr></tbody></table>', 1, '2020-01-04 20:58:36', NULL), (195, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/2', 'Update data Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រា at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_en</td><td>Lorem Ipsum is simply</td><td>Lorem Ipsum is simply dummy text of the printing and typesetting industry</td></tr><tr><td>description_kh</td><td></td><td>Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា</td></tr><tr><td>description_en</td><td></td><td>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry</td></tr></tbody></table>', 1, '2020-01-04 21:01:03', NULL), (196, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/3', 'Update data ចំនុចនៃការប្រើ Lorem Ipsumការចែកចាយអក្សរធម្មតា at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>categories_id</td><td>1</td><td>4</td></tr><tr><td>title_kh</td><td>ចំនុចនៃការប្រើ Lorem Ipsum</td><td>ចំនុចនៃការប្រើ Lorem Ipsumការចែកចាយអក្សរធម្មតា</td></tr><tr><td>title_en</td><td>now use Lorem Ipsum as their</td><td>now use Lorem Ipsum as their Lorem Ipsum</td></tr><tr><td>description_kh</td><td></td><td>ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតា</td></tr><tr><td>description_en</td><td></td><td>now use Lorem Ipsum as their default model text</td></tr></tbody></table>', 1, '2020-01-04 21:02:08', NULL), (197, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/4', 'Update data Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើត at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>categories_id</td><td>1</td><td>2</td></tr><tr><td>title_kh</td><td>ម៉ូតូ​អូតូ​បែប</td><td>Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើត</td></tr><tr><td>title_en</td><td>ម៉ូតូ​អូតូ​បែប</td><td>ipsum\' will uncover many web sites still in their infa</td></tr><tr><td>description_kh</td><td></td><td>Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែ</td></tr><tr><td>description_en</td><td></td><td>here, content here\', making it look like readable English.</td></tr><tr><td>article_kh</td><td>Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេក</td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ </span>Lorem Ipsum <span lang=\"KHM\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។\r\nកញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ </span>Lorem\r\nIpsum <span lang=\"KHM\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក </span>\'lorem\r\nipsum\' <span lang=\"KHM\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។\r\nកំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង\r\n(កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span><o:p></o:p></span></p></td></tr><tr><td>article_en</td><td>Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា LED, មាន​កុងទ័រ​បែប​ឌីជីថល​បង្ហាញ​ព័ត៌មាន​សំខាន់ៗ, មាន​ធុង​ប្រេង​ចំណុះ ៨ លីត្រ, មាន​បច្ចេកវិទ្យា​ Idling Stop និង​ប្រើ​ប្រាស់​ Smart Key ជា​ដើម។</td><td><span style=\"font-size: 10.5pt; line-height: 107%; font-family: &quot;Open Sans&quot;, sans-serif;\">here, content here\', making it\r\nlook like readable English. Many desktop publishing packages and web page\r\neditors now use Lorem Ipsum as their default model text, and a search for\r\n\'lorem ipsum\' will uncover many web sites still in their infancy. Various\r\nversions have evolved over the years, sometimes by accident, sometimes on\r\npurpose (injected humour and the like).</span></td></tr></tbody></table>', 1, '2020-01-04 21:03:07', NULL), (198, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/5', 'Update data ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវា at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>categories_id</td><td>4</td><td>1</td></tr><tr><td>description_kh</td><td></td><td>ចំនុចនៃការប្រើ Lorem Ipsum គឺថាវាមានការចែកចាយអ</td></tr><tr><td>description_en</td><td></td><td>It is a long established fact that a reader wil</td></tr></tbody></table>', 1, '2020-01-04 21:03:43', NULL), (199, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/6', 'Update data ៨កន្លែង ទៅដល់ខេត្តមណ្ឌលគីរីហើយ មិនគួររំលងទៅកម្សាន្ត at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>categories_id</td><td>3</td><td>1</td></tr><tr><td>title_en</td><td></td><td>Lorem Ipsum is simply dummy text of the printing</td></tr><tr><td>description_kh</td><td></td><td>Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោ</td></tr><tr><td>description_en</td><td></td><td>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</td></tr><tr><td>article_en</td><td></td><td><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p><h2 style=\"margin: 0cm 0cm 7.5pt; line-height: 18pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: DauphinPlain, serif;\">Why do we use\r\nit?<o:p></o:p></span></h2><p>\r\n\r\n\r\n\r\n</p><p style=\"margin: 0cm 0cm 11.25pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a\r\nlong established fact that a reader will be distracted by the readable content\r\nof a page when looking at its layout. The point of using Lorem Ipsum is that it\r\nhas a more-or-less normal distribution of letters, as opposed to using \'Content\r\nhere, content here\', making it look like readable English. Many desktop\r\npublishing packages and web page editors now use Lorem Ipsum as their default\r\nmodel text, and a search for \'lorem ipsum\' will uncover many web sites still in\r\ntheir infancy. Various versions have evolved over the years, sometimes by\r\naccident, sometimes on purpose (injected humour and the like).<o:p></o:p></span></p></td></tr></tbody></table>', 1, '2020-01-04 21:05:15', NULL), (200, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/7', 'Update data រំលឹក! ​ស្ត្រី​មាន​ឥទ្ធិពល​បំផុត​ទាំង ១០រូបក្នុង​វិស័យ​បច្ចេកវិទ្យា​កាល​ឆ្នាំ​ ​២០១៦ at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>description_kh</td><td></td><td>គឺជាអ្វីដែលខ្ញុំមាន? Lorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។</td></tr><tr><td>description_en</td><td></td><td>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</td></tr><tr><td>article_kh</td><td>គឺជាអ្វីដែលខ្ញុំមាន?\r\nLorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។ Lorem Ipsum គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ 1500 នៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។ វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ 1960 ជាមួយនឹងការចេញផ្សាយសន្លឹក Letraset ដែលមានអត្ថបទ Lorem Ipsum និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា Aldus PageMaker រួមទាំងកំណែរបស់ Lorem Ipsum ផងដែរ។</td><td><p>គឺជាអ្វីដែលខ្ញុំមាន?\r\nLorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។ Lorem Ipsum គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ 1500 នៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។ វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ 1960 ជាមួយនឹងការចេញផ្សាយសន្លឹក Letraset ដែលមានអត្ថបទ Lorem Ipsum និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា Aldus PageMaker រួមទាំងកំណែរបស់ Lorem Ipsum ផងដែរ។</p><p><img src=\"http://localhost:8000/uploads/1/2020-01/1d47cb2e3f523f1295e1540f67444713.jpg\" style=\"width: 100%;\"><br></p></td></tr></tbody></table>', 1, '2020-01-04 21:06:01', NULL), (201, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/8', 'Update data ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>categories_id</td><td>5</td><td>1</td></tr><tr><td>description_kh</td><td></td><td>អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន</td></tr><tr><td>description_en</td><td></td><td>orem Ipsum has been the industry\'s standard dummy text ever since</td></tr><tr><td>article_kh</td><td>Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។</td><td><p>Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។</p><p>Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។</p><p>Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។</p><p>Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។<br></p></td></tr><tr><td>article_en</td><td>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</td><td><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum<br></p></td></tr></tbody></table>', 1, '2020-01-04 21:07:41', NULL), (202, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data Lorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។ at Articles', '', 1, '2020-01-04 21:09:13', NULL), (203, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបាន at Articles', '', 1, '2020-01-04 21:10:31', NULL), (204, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data មិនគួររំលងទៅកម្សាន្ត ទៅដល់ខេត្តមណ្ឌលគីរីហើយ at Articles', '', 1, '2020-01-04 21:12:07', NULL), (205, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data បើក​ឡើង​ចំណោត​បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ (មាន​វីដេអូ) at Articles', '', 1, '2020-01-04 21:13:46', NULL), (206, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ at Articles', '', 1, '2020-01-04 21:15:31', NULL), (207, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data អ្នកគួរតែទទួលបានលទ្ធផលល្អ at Articles', '', 1, '2020-01-04 21:17:28', NULL), (208, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ទៅដល់ខេត្តមណ្ឌលគី ទៅដល់ខេត្តមណ្ឌលគីរីហើយ មិនគួររំលងទៅកម្សាន្ត at Articles', '', 1, '2020-01-04 21:20:35', NULL), (209, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data តើវាមកពីណាតើវាមកពីណា at Articles', '', 1, '2020-01-04 21:22:17', NULL), (210, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើង at Articles', '', 1, '2020-01-04 21:24:10', NULL), (211, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។ at Articles', '', 1, '2020-01-04 21:25:45', NULL), (212, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ដល់ខេត្តមណ្ឌលគីរីហើយ មិនគួររំលងទៅកម្សាន្ត at Articles', '', 1, '2020-01-04 21:27:23', NULL), (213, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ at Articles', '', 1, '2020-01-04 21:28:24', NULL), (214, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data នៅក្នុង orci នៅកន្លែងកើតហេតុ sodales ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ at Articles', '', 1, '2020-01-04 21:29:41', NULL), (215, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data អ្នកគួរតែទទួលបានលទ្ធផលល្ at Articles', '', 1, '2020-01-04 21:44:22', NULL), (216, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data មាន​វីដេអូបើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ at Articles', '', 1, '2020-01-04 21:46:18', NULL), (217, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ទៅដល់ខេត្តមណ្ឌលគីរីហើយ មិនគួររំលងទៅកម្សាន្ត at Articles', '', 1, '2020-01-04 21:47:20', NULL), (218, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data Lorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។ at Articles', '', 1, '2020-01-04 21:50:17', NULL); INSERT INTO `cms_logs` (`id`, `ipaddress`, `useragent`, `url`, `description`, `details`, `id_cms_users`, `created_at`, `updated_at`) VALUES (219, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/23', 'Update data មាន​វីដេអូបើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>categories_id</td><td>1</td><td>2</td></tr><tr><td>article_kh</td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">&nbsp;</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">1500</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">1960</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Letraset </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលមានអត្ថបទ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem\r\nIpsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Aldus\r\nPageMaker </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">រួមទាំងកំណែរបស់ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ផងដែរ។</span><br></p></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: \"Open Sans\", sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: \"Open Sans\", sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\"> </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">1500</span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">1960</span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Letraset </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">ដែលមានអត្ថបទ </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Lorem\r\nIpsum </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Aldus\r\nPageMaker </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">រួមទាំងកំណែរបស់ </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">ផងដែរ។</span><br></p></td></tr><tr><td>article_en</td><td><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">What is Lorem Ipsum?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\"><strong style=\"margin: 0px; padding: 0px;\">Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">What is Lorem Ipsum?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\"><strong style=\"margin: 0px; padding: 0px;\">Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></td><td><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">What is Lorem Ipsum?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\"><strong style=\"margin: 0px; padding: 0px;\">Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">What is Lorem Ipsum?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\"><strong style=\"margin: 0px; padding: 0px;\">Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></td></tr><tr><td>view</td><td>8963</td><td></td></tr></tbody></table>', 1, '2020-01-04 22:24:17', NULL), (220, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data សូមអរគុណ។ នៅក្នុង orci នៅកក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ (មាន​វីដេអូ) at Articles', '', 1, '2020-01-04 22:28:30', NULL), (221, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/1', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td>ថ្មីៗនេះ Channel YouTube</td><td>អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍</td></tr><tr><td>title_en</td><td>ថ្មីៗនេះ Channel YouTube</td><td>Lorem Ipsum passage, and going through the cites of the word in classical</td></tr><tr><td>description_kh</td><td></td><td>អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន</td></tr><tr><td>description_en</td><td></td><td>Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered.</td></tr><tr><td>article_kh</td><td><p><span style=\"color: rgb(34, 34, 34); font-family: Battambang, Arial, Helvetica, sans-serif;\">ថ្មីៗនេះ Channel YouTube មួយរបស់ប្រទេសថៃ មានឈ្មោះថា Moto Rival បានធ្វើការតេស្តល្បឿនរបស់ Honda ADV 150 ដោយមួលមួយកប់ ដើម្បីចង់ដឹងថាវាអាចបានល្បឿនប៉ុន្មាន។ ជាក់ស្តែង ការធ្វើតេស្តខាងលើ ម៉ូតូ ADV ដែលមានកម្លាំង ១៥០សេសេ អាចមួលឡើងដល់កុងទ័រត្រឹម ១១៩គីឡូម៉ែត្រក្នុងមួយម៉ោងប៉ុណ្ណោះ នៅលើស្ថានភាពផ្លូវលាតរាបស្មើ។</span><br></p></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><br></p></td></tr><tr><td>article_en</td><td></td><td><h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">Where does it come from?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. <NAME>, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by <NAME>.</p></td></tr></tbody></table>', 1, '2020-01-04 22:33:33', NULL), (222, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/2', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td>ថ្មីៗនេះ Channel YouTube</td><td>វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។</td></tr><tr><td>title_en</td><td>Channel YouTube</td><td>Many desktop publishing packages and web</td></tr><tr><td>description_kh</td><td></td><td>វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។</td></tr><tr><td>description_en</td><td></td><td>Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text</td></tr><tr><td>article_kh</td><td><p><span style=\"color: rgb(34, 34, 34); font-family: Battambang, Arial, Helvetica, sans-serif;\">Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ។ អំពូល​ភ្លើង​មុខ​ក្រោយរបស់វា​ប្រើ​ប្រាស់​បច្ចេកវិទ្យា LED, មាន​កុងទ័រ​បែប​ឌីជីថល​បង្ហាញ​ព័ត៌មាន​សំខាន់ៗ, មាន​ធុង​ប្រេង​ចំណុះ ៨ លីត្រ, មាន​បច្ចេកវិទ្យា​ Idling Stop និង​ប្រើ​ប្រាស់​ Smart Key ជា​ដើម។</span><br></p></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><br></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">គឺជាអ្វីដែលខ្ញុំមាន</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p></td></tr><tr><td>article_en</td><td></td><td><p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><br></p></td></tr><tr><td>view</td><td>2</td><td></td></tr></tbody></table>', 1, '2020-01-04 22:34:31', NULL), (223, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/3', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td>យក Prius បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ (មាន​វីដេអូ)</td><td>បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់</td></tr><tr><td>title_en</td><td></td><td>more-or-less normal distribution of letters</td></tr><tr><td>description_kh</td><td></td><td>វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត, ultrices នៅ tortor ។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។</td></tr><tr><td>description_en</td><td></td><td>The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters</td></tr><tr><td>article_kh</td><td><p><a href=\"http://news.sabay.com.kh/article/1182123#utm_campaign=onpage\" style=\"background-color: rgb(255, 255, 255); color: rgb(34, 34, 34); outline: 0px; font-family: Battambang, Arial, Helvetica, sans-serif;\"></a></p><div class=\"title\" style=\"box-sizing: border-box; padding: 10px 15px 10px 0px; font-weight: 700; font-size: 15px;\">យក Prius បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ (មាន​វីដេអូ)</div></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p></td></tr><tr><td>article_en</td><td></td><td><p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, </span></p><p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><br></p></td></tr><tr><td>view</td><td>0</td><td></td></tr></tbody></table>', 1, '2020-01-04 22:36:01', NULL), (224, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/4', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td>យក Prius បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ (មាន​វីដេអូ)</td><td>បុរសម្នាក់នៅក្នុងរឿងអេក បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់</td></tr><tr><td>title_en</td><td></td><td>Many desktop publishing packages and</td></tr><tr><td>description_kh</td><td></td><td>បុរសម្នាក់នៅក្នុងរឿងអេក។Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ</td></tr><tr><td>description_en</td><td></td><td>Many desktop publishing packages and web page editors now use Lorem Ipsum as their default</td></tr><tr><td>article_kh</td><td><p><a href=\"http://news.sabay.com.kh/article/1182123#utm_campaign=onpage\" style=\"background-color: rgb(255, 255, 255); color: rgb(34, 34, 34); outline: 0px; font-family: Battambang, Arial, Helvetica, sans-serif;\"></a></p><div class=\"title\" style=\"box-sizing: border-box; padding: 10px 15px 10px 0px; font-weight: 700; font-size: 15px;\">យក Prius បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ (មាន​វីដេអូ)</div></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p></td></tr><tr><td>article_en</td><td></td><td><p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span></p><p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\"><br></span><br></p></td></tr><tr><td>view</td><td>0</td><td></td></tr></tbody></table>', 1, '2020-01-04 22:37:31', NULL); INSERT INTO `cms_logs` (`id`, `ipaddress`, `useragent`, `url`, `description`, `details`, `id_cms_users`, `created_at`, `updated_at`) VALUES (225, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/5', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td>យក Prius បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ (មាន​វីដេអូ)</td><td>វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ</td></tr><tr><td>title_en</td><td></td><td>and a search for \'lorem ipsum\' will uncover</td></tr><tr><td>description_kh</td><td></td><td>ultrices នៅ tortor ។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។Lorem Ipsum</td></tr><tr><td>description_en</td><td></td><td>opposed to using \'Content here, content here\', making it look like readable English.</td></tr><tr><td>article_kh</td><td><p><a href=\"http://news.sabay.com.kh/article/1182123#utm_campaign=onpage\" style=\"background-color: rgb(255, 255, 255); color: rgb(34, 34, 34); outline: 0px; font-family: Battambang, Arial, Helvetica, sans-serif;\"></a></p><div class=\"title\" style=\"box-sizing: border-box; padding: 10px 15px 10px 0px; font-weight: 700; font-size: 15px;\">យក Prius បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់ (មាន​វីដេអូ)</div></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p></td></tr><tr><td>article_en</td><td></td><td><p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><br></p></td></tr><tr><td>view</td><td>0</td><td></td></tr></tbody></table>', 1, '2020-01-04 22:38:28', NULL), (226, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/11', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_en</td><td>It is a long established fact that a reader will be distracted</td><td>Many desktop publishing packages and web page editors</td></tr><tr><td>description_kh</td><td></td><td>Lorem Ipsum គឺផ្ទុយទៅនឹងជំនឿដ៏ពេញនិយម, Lorem Ipsum មិនមែនជាអត្ថបទចៃដន្យទេ។ វាមានឫសគល់នៅក្នុងអក្សរសិល្ប៍ឡាតាំងបុរាណពីឆ្នាំ 45 ម។ គ។ ដែលធ្វើឱ្យវាមានអាយុកាលជាង 2000 ឆ្នាំ។ លោក Richard</td></tr><tr><td>description_en</td><td></td><td>page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution</td></tr><tr><td>article_kh</td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺផ្ទុយទៅនឹងជំនឿដ៏ពេញនិយម</span>, Lorem\r\nIpsum <span lang=\"KHM\">មិនមែនជាអត្ថបទចៃដន្យទេ។\r\nវាមានឫសគល់នៅក្នុងអក្សរសិល្ប៍ឡាតាំងបុរាណពីឆ្នាំ </span>45<span lang=\"KHM\"> ម។ គ។\r\nដែលធ្វើឱ្យវាមានអាយុកាលជាង </span>2000<span lang=\"KHM\"> ឆ្នាំ។ លោក </span>Richard\r\nMcClintock <span lang=\"KHM\">សាស្ត្រាចារ្យឡាតាំងនៅមហាវិទ្យាល័យ </span>Hampden-Sydney\r\n<span lang=\"KHM\">នៅរដ្ឋវីជីហ្គីបានមើលពាក្យឡាតាំងមួយដែលមិនច្បាស់លាស់ជាងមុនដែលជាភាសាអង់គ្លេសដែលមានអត្ថន័យជ្រាលជ្រៅពីអត្ថបទគម្ពីរ\r\n</span>Lorem Ipsum <span lang=\"KHM\">ហើយបានឆ្លងកាត់ពាក្យសម្ដីក្នុងអក្សរសិល្ប៍បុរាណហើយបានរកឃើញប្រភពមិនគួរឱ្យជឿ។\r\nទំព័រដើមគឺមកពីផ្នែកទី </span>1.10.32<span lang=\"KHM\"> និង </span>1.10.33<span lang=\"KHM\"> នៃ \"</span>de Finibus Bonorum et Malorum\" <span lang=\"KHM\">ដោយ\r\n</span>Cicero <span lang=\"KHM\">ដែលសរសេរនៅឆ្នាំ </span>45<span lang=\"KHM\"> មុនគ។ ស\r\n..\r\nសៀវភៅនេះគឺជាសក្ខីកម្មមួយស្តីពីទ្រឹស្តីក្រមសីលធម៌ដែលមានប្រជាប្រិយភាពបំផុតក្នុងសម័យកាលរាជវង្ស។\r\nបន្ទាត់ទីមួយនៃទំព័រដើមគឺ \"ពាក្យស្លោកនៃពាក្យស្លោក\"\r\nដែលចេញមកពីបន្ទាត់ក្នុងផ្នែក </span>1.10.32<span lang=\"KHM\"> ។</span><o:p></o:p></span></p></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺផ្ទុយទៅនឹងជំនឿដ៏ពេញនិយម</span>, Lorem\r\nIpsum <span lang=\"KHM\">មិនមែនជាអត្ថបទចៃដន្យទេ។\r\nវាមានឫសគល់នៅក្នុងអក្សរសិល្ប៍ឡាតាំងបុរាណពីឆ្នាំ </span>45<span lang=\"KHM\"> ម។ គ។\r\nដែលធ្វើឱ្យវាមានអាយុកាលជាង </span>2000<span lang=\"KHM\"> ឆ្នាំ។ លោក </span>Richard\r\nMcClintock <span lang=\"KHM\">សាស្ត្រាចារ្យឡាតាំងនៅមហាវិទ្យាល័យ </span>Hampden-Sydney\r\n<span lang=\"KHM\">នៅរដ្ឋវីជីហ្គីបានមើលពាក្យឡាតាំងមួយដែលមិនច្បាស់លាស់ជាងមុនដែលជាភាសាអង់គ្លេសដែលមានអត្ថន័យជ្រាលជ្រៅពីអត្ថបទគម្ពីរ\r\n</span>Lorem Ipsum <span lang=\"KHM\">ហើយបានឆ្លងកាត់ពាក្យសម្ដីក្នុងអក្សរសិល្ប៍បុរាណហើយបានរកឃើញប្រភពមិនគួរឱ្យជឿ។\r\nទំព័រដើមគឺមកពីផ្នែកទី </span>1.10.32<span lang=\"KHM\"> និង </span>1.10.33<span lang=\"KHM\"> នៃ \"</span>de Finibus Bonorum et Malorum\" <span lang=\"KHM\">ដោយ\r\n</span>Cicero <span lang=\"KHM\">ដែលសរសេរនៅឆ្នាំ </span>45<span lang=\"KHM\"> មុនគ។ ស\r\n..\r\nសៀវភៅនេះគឺជាសក្ខីកម្មមួយស្តីពីទ្រឹស្តីក្រមសីលធម៌ដែលមានប្រជាប្រិយភាពបំផុតក្នុងសម័យកាលរាជវង្ស។\r\nបន្ទាត់ទីមួយនៃទំព័រដើមគឺ \"ពាក្យស្លោកនៃពាក្យស្លោក\"\r\nដែលចេញមកពីបន្ទាត់ក្នុងផ្នែក </span>1.10.32<span lang=\"KHM\"> ។</span><o:p></o:p></span></p></td></tr><tr><td>article_en</td><td><p><span style=\"font-size: 10.5pt; line-height: 107%; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a long established fact\r\nthat a reader will be distracted by the readable content of a page when looking\r\nat its layout. The point of using Lorem Ipsum is that it has a more-or-less\r\nnormal distribution of letters, as opposed to using \'Content here, content\r\nhere\', making it look like readable English. Many desktop publishing packages\r\nand web page editors&nbsp;</span><br></p></td><td><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem </p><ul><li>Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, </li><li>content here\', making it look like readable English. </li><li>Many desktop publishing packages and web page editors&nbsp;<br></li></ul></td></tr><tr><td>view</td><td>0</td><td></td></tr></tbody></table>', 1, '2020-01-04 22:39:53', NULL), (227, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/10', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>description_kh</td><td></td><td>Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអា</td></tr><tr><td>description_en</td><td></td><td>Lorem Ipsum is simply dummy text of the printing and typ</td></tr><tr><td>article_kh</td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ </span>Lorem Ipsum <span lang=\"KHM\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។\r\nកញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ </span>Lorem\r\nIpsum <span lang=\"KHM\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក </span>\'lorem\r\nipsum\' <span lang=\"KHM\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។\r\nកំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង\r\n(កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span><o:p></o:p></span></p></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \" khmer=\"\" os\";\"=\"\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ&nbsp;</span></span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt;\">L</span>orem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។<span style=\"font-size: 12px;\">orem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ&nbsp;</span><span style=\"font-size: 12px;\">Lorem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក&nbsp;</span><span style=\"font-size: 12px;\">\'lorem ipsum\'&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt;\">L</span>orem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។<span style=\"font-size: 12px;\">orem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ&nbsp;</span><span style=\"font-size: 12px;\">Lorem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក&nbsp;</span><span style=\"font-size: 12px;\">\'lorem ipsum\'&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt;\">L</span>orem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។<span style=\"font-size: 12px;\">orem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ&nbsp;</span><span style=\"font-size: 12px;\">Lorem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក&nbsp;</span><span style=\"font-size: 12px;\">\'lorem ipsum\'&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span></p></td></tr><tr><td>article_en</td><td><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p></td><td><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: \" open=\"\" sans\",=\"\" sans-serif;\"=\"\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: \" open=\"\" sans\",=\"\" sans-serif;\"=\"\">&nbsp;is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived no<o:p></o:p></span>t only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.t only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.t only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.t only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></td></tr><tr><td>view</td><td>0</td><td></td></tr></tbody></table>', 1, '2020-01-04 22:40:35', NULL), (228, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/9', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>description_kh</td><td></td><td>ឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ 1960 ជាមួយនឹងការចេញផ្សាយសន្លឹក Letraset ដែលមានអត្ថបទ Lorem Ipsum និងថ្មីៗនេះជាមួយនឹងកម្មវិ</td></tr><tr><td>description_en</td><td></td><td>making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted</td></tr><tr><td>article_kh</td><td><p><span lang=\"KHM\" style=\"font-size: 9pt; line-height: 107%; font-family: &quot;Khmer OS&quot;;\">វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span><span style=\"font-size: 9pt; line-height: 107%; font-family: &quot;Khmer OS&quot;;\">1960<span lang=\"KHM\"> ជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem Ipsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា\r\n</span>Aldus PageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span></span><br></p></td><td><p><span lang=\"KHM\" khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ&nbsp;</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">1960<span lang=\"KHM\">&nbsp;ជាមួយនឹងការចេញផ្សាយសន្លឹក&nbsp;</span>Letraset&nbsp;<span lang=\"KHM\">ដែលមានអត្ថបទ&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា&nbsp;</span>Aldus PageMaker&nbsp;<span lang=\"KHM\">រួមទាំងកំណែរបស់&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">ផងដែរ។</span></span><span lang=\"KHM\" khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ&nbsp;</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">1960<span lang=\"KHM\">&nbsp;ជាមួយនឹងការចេញផ្សាយសន្លឹក&nbsp;</span>Letraset&nbsp;<span lang=\"KHM\">ដែលមានអត្ថបទ&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា&nbsp;</span>Aldus PageMaker&nbsp;<span lang=\"KHM\">រួមទាំងកំណែរបស់&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">ផងដែរ។</span></span><span lang=\"KHM\" khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ&nbsp;</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">1960<span lang=\"KHM\">&nbsp;ជាមួយនឹងការចេញផ្សាយសន្លឹក&nbsp;</span>Letraset&nbsp;<span lang=\"KHM\">ដែលមានអត្ថបទ&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា&nbsp;</span>Aldus PageMaker&nbsp;<span lang=\"KHM\">រួមទាំងកំណែរបស់&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">ផងដែរ។</span></span><span lang=\"KHM\" khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ&nbsp;</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">1960<span lang=\"KHM\">&nbsp;ជាមួយនឹងការចេញផ្សាយសន្លឹក&nbsp;</span>Letraset&nbsp;<span lang=\"KHM\">ដែលមានអត្ថបទ&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា&nbsp;</span>Aldus PageMaker&nbsp;<span lang=\"KHM\">រួមទាំងកំណែរបស់&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">ផងដែរ។</span></span><span lang=\"KHM\" khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ&nbsp;</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">1960<span lang=\"KHM\">&nbsp;ជាមួយនឹងការចេញផ្សាយសន្លឹក&nbsp;</span>Letraset&nbsp;<span lang=\"KHM\">ដែលមានអត្ថបទ&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា&nbsp;</span>Aldus PageMaker&nbsp;<span lang=\"KHM\">រួមទាំងកំណែរបស់&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">ផងដែរ។</span></span><br></p></td></tr><tr><td>article_en</td><td><p><span style=\"font-size: 10.5pt; line-height: 107%; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a long established fact\r\nthat a reader will be distracted by the readable content of a page when looking\r\nat its layout. The point of using Lorem Ipsum is that it has a more-or-less\r\nnormal distribution of letters, as opposed to using \'Content here, content\r\nhere\', making it look like readable English. Many desktop publishing packages\r\nand web page editors&nbsp;</span><br></p></td><td><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors&nbsp;<br></p></td></tr><tr><td>view</td><td>0</td><td></td></tr></tbody></table>', 1, '2020-01-04 22:41:06', NULL), (229, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/8', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>description_kh</td><td></td><td>Letraset ដែលមានអត្ថបទ Lorem Ipsum និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា Aldus PageMaker រួមទាំងកំណែរបស់ Lorem Ipsum ផងដែរ។</td></tr><tr><td>description_en</td><td></td><td>normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors</td></tr><tr><td>article_kh</td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p></td></tr><tr><td>article_en</td><td><p><span style=\"font-size: 10.5pt; line-height: 107%; font-family: &quot;Open Sans&quot;, sans-serif;\">It is a long established fact\r\nthat a reader will be distracted by the readable content of a page when looking\r\nat its layout. The point of using Lorem Ipsum is that it has a more-or-less\r\nnormal distribution of letters, as opposed to using \'Content here, content\r\nhere\', making it look like readable English. Many desktop publishing packages\r\nand web page editors&nbsp;</span><br></p></td><td><p><span style=\"font-size: 10.5pt; line-height: 107%; font-family: \"Open Sans\", sans-serif;\">It is a long established fact\r\nthat a reader will be distracted by the readable content of a page when looking\r\nat its layout. The point of using Lorem Ipsum is that it has a more-or-less\r\nnormal distribution of letters, as opposed to using \'Content here, content\r\nhere\', making it look like readable English. Many desktop publishing packages\r\nand web page editors </span><br></p></td></tr><tr><td>view</td><td>0</td><td></td></tr></tbody></table>', 1, '2020-01-04 22:41:51', NULL), (230, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/7', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>description_kh</td><td></td><td>Lorem Ipsum គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ 1500 នៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទ</td></tr><tr><td>description_en</td><td></td><td>galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic</td></tr><tr><td>article_kh</td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p></td></tr><tr><td>article_en</td><td><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p></td><td><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\"> is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p></td></tr><tr><td>view</td><td>0</td><td></td></tr></tbody></table>', 1, '2020-01-04 22:42:17', NULL), (231, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/6', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>description_kh</td><td></td><td>Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</td></tr><tr><td>description_en</td><td></td><td>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</td></tr><tr><td>article_kh</td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p></td></tr><tr><td>article_en</td><td><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\">&nbsp;is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p></td><td><p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\"> is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p></td></tr><tr><td>view</td><td>0</td><td></td></tr></tbody></table>', 1, '2020-01-04 22:42:43', NULL), (232, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/edit-save/6', 'Update data សប្បាយដើរ at Categories', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>order_level</td><td>0</td><td>2</td></tr></tbody></table>', 1, '2020-01-04 22:50:09', NULL), (233, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/categories/edit-save/5', 'Update data ធម្មជាតិ at Categories', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td>ប្រលោមលោក</td><td>ធម្មជាតិ</td></tr><tr><td>title_en</td><td>enovel</td><td>nature</td></tr></tbody></table>', 1, '2020-01-04 22:52:48', NULL), (234, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2020-01-05 08:24:00', NULL), (235, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data វាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើ at Articles', '', 1, '2020-01-05 08:25:54', NULL), (236, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើង at Articles', '', 1, '2020-01-05 08:27:04', NULL), (237, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ​ចំណោត​សាក​មើល​រួច​អត់មានពាសពេញខ្មោចដែលមិនមានត្ at Articles', '', 1, '2020-01-05 08:29:54', NULL), (238, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍ at Articles', '', 1, '2020-01-05 08:38:47', NULL), (239, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data សូមអរគុណ។ នៅក្នុង orci នៅកន្លែងកើតហេតុ sodales ស្ងួត at Articles', '', 1, '2020-01-05 08:40:06', NULL); INSERT INTO `cms_logs` (`id`, `ipaddress`, `useragent`, `url`, `description`, `details`, `id_cms_users`, `created_at`, `updated_at`) VALUES (240, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍ at Articles', '', 1, '2020-01-05 08:44:06', NULL), (241, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត at Articles', '', 1, '2020-01-05 08:45:48', NULL), (242, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស at Articles', '', 1, '2020-01-05 08:47:14', NULL), (243, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/logout', '<EMAIL> logout', '', 1, '2020-01-05 09:00:00', NULL), (244, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2020-01-06 05:50:35', NULL), (245, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស at Articles', '', 1, '2020-01-06 05:53:35', NULL), (246, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក at Articles', '', 1, '2020-01-06 05:54:46', NULL), (247, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស at Articles', '', 1, '2020-01-06 05:56:18', NULL), (248, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/delete-image', 'Delete the image of ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស at Articles', '', 1, '2020-01-06 05:57:06', NULL), (249, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/37', 'Update data ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>images</td><td></td><td>uploads/1/2020-01/bb.jpg</td></tr><tr><td>article_kh</td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><br></p></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">នៅ </span><span style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: \"Khmer OS\"; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><br></p></td></tr><tr><td>article_en</td><td><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi nec risus eu risus cursus fringilla a ut mi. Suspendisse bibendum nisl mattis erat porttitor, id dignissim turpis faucibus. Vivamus a dui non est fermentum ornare a eget felis. Aenean tincidunt mauris nisi, ut varius leo commodo vel. Sed ac porta metus. Ut vel porta elit. Nam a eros suscipit, finibus magna in, congue risus. Mauris mattis ipsum sit amet eros dignissim, sagittis commodo dui congue. Proin tempor sollicitudin leo, et tristique augue laoreet et. Duis sollicitudin felis augue, et accumsan tellus imperdiet ac. Vivamus rutrum augue ex, eget porta nunc gravida at. Proin ac metus vel diam dictum dignissim luctus at magna. Proin gravida vehicula mauris, vitae porttitor velit consectetur vitae. Integer aliquet est sit amet volutpat porttitor.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Nulla vitae orci quis purus scelerisque hendrerit in non leo. Donec pulvinar pretium orci, vel imperdiet odio iaculis condimentum. Curabitur malesuada, leo ac faucibus consequat, est dui elementum mi, ut malesuada quam metus et massa. In commodo sed ex nec consequat. Quisque non orci accumsan, aliquam erat at, condimentum magna. Curabitur eleifend laoreet convallis. Donec luctus vulputate finibus. Nullam vel nisi at leo euismod tincidunt in et odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas sapien nibh, viverra vel sollicitudin non, tempor et leo. Sed ultrices commodo arcu. Donec ullamcorper feugiat odio in euismod. Aliquam dictum tellus a felis vestibulum semper. Duis at odio non felis semper cursus. Nunc dapibus dignissim orci non placerat.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Fusce euismod sagittis tristique. Curabitur at vestibulum dolor, ac molestie tortor. Nam eu tincidunt tortor. Ut id volutpat turpis, a iaculis tellus. Morbi ipsum mi, sagittis eget maximus eu, gravida et odio. Donec gravida ullamcorper lectus, vitae imperdiet ante feugiat vitae. Quisque eu justo mollis, facilisis sapien quis, rutrum massa. Duis blandit lectus id velit ultrices, tincidunt suscipit magna dapibus. Phasellus vehicula, eros mollis porttitor rhoncus, lacus tellus tristique nisi, eu tempor nibh urna quis dui. Proin tincidunt, tortor tempor blandit porta, elit ante gravida mauris, vitae maximus magna odio a enim. Nulla arcu sapien, elementum non vestibulum eu, suscipit ut nibh. Nunc eu fringilla enim, et luctus justo. Nulla quis vulputate arcu. Sed a dapibus augue.</p></td><td><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi nec risus eu risus cursus fringilla a ut mi. Suspendisse bibendum nisl mattis erat porttitor, id dignissim turpis faucibus. Vivamus a dui non est fermentum ornare a eget felis. Aenean tincidunt mauris nisi, ut varius leo commodo vel. Sed ac porta metus. Ut vel porta elit. Nam a eros suscipit, finibus magna in, congue risus. Mauris mattis ipsum sit amet eros dignissim, sagittis commodo dui congue. Proin tempor sollicitudin leo, et tristique augue laoreet et. Duis sollicitudin felis augue, et accumsan tellus imperdiet ac. Vivamus rutrum augue ex, eget porta nunc gravida at. Proin ac metus vel diam dictum dignissim luctus at magna. Proin gravida vehicula mauris, vitae porttitor velit consectetur vitae. Integer aliquet est sit amet volutpat porttitor.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Nulla vitae orci quis purus scelerisque hendrerit in non leo. Donec pulvinar pretium orci, vel imperdiet odio iaculis condimentum. Curabitur malesuada, leo ac faucibus consequat, est dui elementum mi, ut malesuada quam metus et massa. In commodo sed ex nec consequat. Quisque non orci accumsan, aliquam erat at, condimentum magna. Curabitur eleifend laoreet convallis. Donec luctus vulputate finibus. Nullam vel nisi at leo euismod tincidunt in et odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas sapien nibh, viverra vel sollicitudin non, tempor et leo. Sed ultrices commodo arcu. Donec ullamcorper feugiat odio in euismod. Aliquam dictum tellus a felis vestibulum semper. Duis at odio non felis semper cursus. Nunc dapibus dignissim orci non placerat.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Fusce euismod sagittis tristique. Curabitur at vestibulum dolor, ac molestie tortor. Nam eu tincidunt tortor. Ut id volutpat turpis, a iaculis tellus. Morbi ipsum mi, sagittis eget maximus eu, gravida et odio. Donec gravida ullamcorper lectus, vitae imperdiet ante feugiat vitae. Quisque eu justo mollis, facilisis sapien quis, rutrum massa. Duis blandit lectus id velit ultrices, tincidunt suscipit magna dapibus. Phasellus vehicula, eros mollis porttitor rhoncus, lacus tellus tristique nisi, eu tempor nibh urna quis dui. Proin tincidunt, tortor tempor blandit porta, elit ante gravida mauris, vitae maximus magna odio a enim. Nulla arcu sapien, elementum non vestibulum eu, suscipit ut nibh. Nunc eu fringilla enim, et luctus justo. Nulla quis vulputate arcu. Sed a dapibus augue.</p></td></tr><tr><td>view</td><td></td><td></td></tr></tbody></table>', 1, '2020-01-06 05:57:19', NULL), (250, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data បុរសម្នាក់នៅក្នុងរឿងអេក។ at Articles', '', 1, '2020-01-06 05:58:28', NULL), (251, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស at Articles', '', 1, '2020-01-06 05:59:50', NULL), (252, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស at Articles', '', 1, '2020-01-06 06:02:02', NULL), (253, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត at Articles', '', 1, '2020-01-06 06:03:32', NULL), (254, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក at Articles', '', 1, '2020-01-06 06:04:48', NULL), (255, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ultrices នៅ tortor ។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ at Articles', '', 1, '2020-01-06 06:06:37', NULL), (256, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data អ្នកគួរតែទទួលបានលទ្ធផលល្អ Lorem Ipsum គឺQuisque at Articles', '', 1, '2020-01-06 06:07:50', NULL), (257, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/articles/add-save', 'Add New Data ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស at Articles', '', 1, '2020-01-06 06:09:18', NULL), (258, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/delete-image', 'Eliminar la imagen de uploads/1/2019-12/weekly.png en Tag', '', 1, '2020-01-06 08:43:04', NULL), (259, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/edit-save/4', 'Actualizar información uploads/1/2020-01/weekly.png en Tag', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td></td><td>uploads/1/2020-01/weekly.png</td></tr></tbody></table>', 1, '2020-01-06 08:43:34', NULL), (260, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/delete-image', 'Eliminar la imagen de uploads/1/2019-12/vilege.png en Tag', '', 1, '2020-01-06 08:43:59', NULL), (261, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/edit-save/3', 'Actualizar información uploads/1/2020-01/vilege.png en Tag', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td></td><td>uploads/1/2020-01/vilege.png</td></tr></tbody></table>', 1, '2020-01-06 08:44:10', NULL), (262, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/delete-image', 'Eliminar la imagen de uploads/1/2019-12/healthy.png en Tag', '', 1, '2020-01-06 08:44:47', NULL), (263, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/edit-save/2', 'Actualizar información uploads/1/2020-01/healthy.png en Tag', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td></td><td>uploads/1/2020-01/healthy.png</td></tr></tbody></table>', 1, '2020-01-06 08:44:56', NULL), (264, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/delete-image', 'Eliminar la imagen de uploads/1/2019-12/auto.png en Tag', '', 1, '2020-01-06 08:45:11', NULL), (265, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/tags/edit-save/1', 'Actualizar información uploads/1/2020-01/auto.png en Tag', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>title_kh</td><td></td><td>uploads/1/2020-01/auto.png</td></tr></tbody></table>', 1, '2020-01-06 08:45:22', NULL), (266, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/logout', '<EMAIL> logout', '', 1, '2020-01-06 08:47:15', NULL), (267, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2020-01-06 08:47:21', NULL), (268, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/logout', '<EMAIL> se desconectó', '', 1, '2020-01-06 09:58:55', NULL), (269, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/logout', ' logout', '', NULL, '2020-01-06 09:58:55', NULL), (270, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/login', 'Ingreso de <EMAIL> desde la Dirección IP 127.0.0.1', '', 1, '2020-01-09 04:39:39', NULL), (271, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', 'http://localhost:8000/admin/module_generator/delete/32', 'Delete data Comments at Module Generator', '', 1, '2020-01-09 05:19:10', NULL), (272, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2020-01-22 08:30:08', NULL), (273, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', 'http://localhost:8000/admin/articles/edit-save/45', 'Update data ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស at Articles', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>user_id</td><td>0</td><td>1</td></tr><tr><td>article_kh</td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាន</span></span></p><p>\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p></td><td><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាន</span></span></p><p>\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\"><o:p></o:p></span></p></td></tr><tr><td>article_en</td><td><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies., nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.</p></td><td><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Etiam faucibus libero nec tortor ornare ultricies. Praesent ligula neque, imperdiet ut feugiat nec, tempus ut felis. Morbi rhoncus dolor eu eros congue, nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies., nec bibendum felis consectetur. Donec tempor ultricies ex eget volutpat. Mauris vulputate turpis nisl, et iaculis leo pretium ut. In id eleifend augue. Donec ipsum elit, finibus sed turpis vel, congue imperdiet orci. Nunc eu faucibus lectus. Morbi ante risus, convallis pretium massa id, fermentum vulputate ante. Morbi posuere commodo gravida. Quisque augue mauris, pharetra vel sodales eu, mattis eu quam. Proin eget tincidunt nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec sagittis scelerisque ultrices. Vivamus accumsan iaculis laoreet.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: \"Open Sans\", Arial, sans-serif;\">Duis viverra ut nibh eu porttitor. Etiam id velit dictum, aliquam ante in, congue est. Aliquam ligula augue, ullamcorper at facilisis eu, volutpat et ante. Proin enim leo, congue ut facilisis quis, malesuada id velit. Fusce facilisis urna fermentum tristique molestie. Morbi pellentesque quam id lobortis faucibus. Fusce sit amet erat mi. Praesent a lectus eros. Praesent efficitur eget odio nec blandit. Maecenas ac dolor ornare eros placerat sollicitudin. Mauris ultrices sed odio eu ullamcorper. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque viverra metus at est pellentesque ultricies.</p></td></tr></tbody></table>', 1, '2020-01-22 08:42:26', NULL), (274, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/11', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>user_id</td><td>0</td><td>1</td></tr><tr><td>article_en</td><td><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem </p><ul><li>Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, </li><li>content here\', making it look like readable English. </li><li>Many desktop publishing packages and web page editors&nbsp;<br></li></ul></td><td><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem </p><ul><li>Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, </li><li>content here\', making it look like readable English. </li><li>Many desktop publishing packages and web page editors <br></li></ul></td></tr><tr><td>view</td><td>0</td><td></td></tr></tbody></table>', 1, '2020-01-22 08:51:13', NULL), (275, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', 'http://localhost:8000/admin/post_tags/add-save', 'Add New Data at Post Tags', '', 1, '2020-01-22 08:51:51', NULL), (276, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', 'http://localhost:8000/admin/post_tags/edit-save/12', 'Update data at Post Tags', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>images</td><td></td><td>uploads/1/2020-01/9bb.png</td></tr><tr><td>article_kh</td><td><p><span style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">Lorem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">,&nbsp;</span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">,&nbsp;</span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">, ultrices&nbsp;</span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">នៅ&nbsp;</span><span style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">tortor&nbsp;</span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។</span><br></p></td><td><p><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, ultrices </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">នៅ </span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">tortor </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។</span><br></p></td></tr><tr><td>article_en</td><td><p><span style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">Lorem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">,&nbsp;</span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">,&nbsp;</span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">, ultrices&nbsp;</span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">នៅ&nbsp;</span><span style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">tortor&nbsp;</span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: &quot;Khmer OS&quot;; font-size: 12px; text-align: justify;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។</span><br></p></td><td><p><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, ultrices </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">នៅ </span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">tortor </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។</span><br></p></td></tr><tr><td>view</td><td></td><td></td></tr></tbody></table>', 1, '2020-01-22 09:17:25', NULL), (277, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', 'http://localhost:8000/admin/login', '<EMAIL> login with IP Address 127.0.0.1', '', 1, '2020-01-28 05:58:50', NULL), (278, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', 'http://localhost:8000/admin/menu_management/edit-save/18', 'Update data Articles at Menu Management', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>color</td><td></td><td>normal</td></tr><tr><td>parent_id</td><td>19</td><td></td></tr><tr><td>is_dashboard</td><td>0</td><td>1</td></tr><tr><td>sorting</td><td>2</td><td></td></tr></tbody></table>', 1, '2020-01-28 06:13:26', NULL), (279, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', 'http://localhost:8000/admin/menu_management/edit-save/18', 'Update data Articles at Menu Management', '<table class=\"table table-striped\"><thead><tr><th>Key</th><th>Old Value</th><th>New Value</th></thead><tbody><tr><td>parent_id</td><td>19</td><td></td></tr><tr><td>sorting</td><td>2</td><td></td></tr></tbody></table>', 1, '2020-01-28 06:13:57', NULL); -- -------------------------------------------------------- -- -- Table structure for table `cms_menus` -- CREATE TABLE `cms_menus` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'url', `path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_dashboard` tinyint(1) NOT NULL DEFAULT '0', `id_cms_privileges` int(11) DEFAULT NULL, `sorting` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `cms_menus` -- INSERT INTO `cms_menus` (`id`, `name`, `type`, `path`, `color`, `icon`, `parent_id`, `is_active`, `is_dashboard`, `id_cms_privileges`, `sorting`, `created_at`, `updated_at`) VALUES (1, 'Parents', 'Route', 'AdminParentsControllerGetIndex', NULL, 'fa fa-list', 5, 0, 0, 1, 3, '2019-12-05 08:55:48', NULL), (2, 'Promotions', 'Route', 'AdminPromotionsControllerGetIndex', NULL, 'fa fa-list', 0, 0, 0, 1, 1, '2019-12-05 09:02:36', NULL), (3, 'BackGroundStudents', 'Route', 'AdminBackGroundStudentsControllerGetIndex', NULL, 'fa fa-list', 5, 0, 0, 1, 2, '2019-12-05 09:08:41', NULL), (4, 'StudentsInformation', 'Route', 'AdminStudentsInfosControllerGetIndex', NULL, 'fa fa-book', 5, 0, 0, 1, 1, '2019-12-05 09:13:29', NULL), (5, 'StudentsInformation', 'URL', 'students_infos', 'normal', 'fa fa-th', 0, 0, 0, 1, 2, '2019-12-05 09:18:59', '2019-12-05 09:21:35'), (6, 'Batches', 'Route', 'AdminBatchesControllerGetIndex', NULL, 'fa fa-list', 9, 0, 0, 1, 1, '2019-12-12 06:50:50', NULL), (7, 'Academics', 'Route', 'AdminAcademicsControllerGetIndex', NULL, 'fa fa-leaf', 9, 0, 0, 1, 2, '2019-12-12 06:57:34', NULL), (8, 'AcademicsDetails', 'Route', 'AdminAcademicDetailsControllerGetIndex', NULL, 'fa fa-line-chart', 9, 0, 0, 1, 3, '2019-12-12 06:59:01', NULL), (9, 'Academics', 'URL', 'academics', 'normal', 'fa fa-barcode', 0, 0, 0, 1, 3, '2019-12-12 07:09:26', '2019-12-12 07:10:54'), (10, 'Faculty', 'Route', 'AdminFacultiesControllerGetIndex', NULL, 'fa fa-forward', 12, 0, 0, 1, 3, '2019-12-12 07:20:55', NULL), (11, 'Majors', 'Route', 'AdminMajorsControllerGetIndex', NULL, 'fa fa-inbox', 12, 0, 0, 1, 4, '2019-12-12 07:21:48', NULL), (12, 'Faculty', 'URL', 'faculties', 'normal', 'fa fa-file-o', 0, 0, 0, 1, 4, '2019-12-12 07:35:14', '2019-12-12 07:35:56'), (13, 'Year', 'Route', 'AdminYearsControllerGetIndex', NULL, 'fa fa-calendar', 9, 0, 0, 1, 5, '2019-12-12 07:36:59', NULL), (14, 'Semesters', 'Route', 'AdminSemestersControllerGetIndex', NULL, 'fa fa-briefcase', 9, 0, 0, 1, 4, '2019-12-12 07:38:25', NULL), (15, 'SubPhemantary', 'Route', 'AdminSubPhemantariesControllerGetIndex', NULL, 'fa fa-file-text', 12, 0, 0, 1, 2, '2019-12-12 07:54:49', NULL), (16, 'Degrees', 'Route', 'AdminDegreesControllerGetIndex', NULL, 'fa fa-soundcloud', 12, 0, 0, 1, 1, '2019-12-12 07:55:54', NULL), (17, 'Categories', 'Route', 'AdminCategoriesControllerGetIndex', NULL, 'fa fa-tag', 19, 1, 0, 1, 1, '2019-12-29 20:34:44', NULL), (18, 'Articles', 'Route', 'AdminArticlesControllerGetIndex', 'normal', 'fa fa-file-o', 19, 1, 0, 1, 2, '2019-12-29 20:39:46', '2020-01-28 06:13:57'), (19, 'Articles', 'Module', 'articles', 'normal', 'fa fa-th-list', 0, 1, 0, 1, 2, '2019-12-29 20:47:08', '2019-12-29 20:47:30'), (20, 'Tag', 'Module', 'tags', 'normal', 'fa fa-tags', 21, 1, 0, 1, 1, '2019-12-29 20:52:02', '2019-12-29 20:58:39'), (21, 'Tag', 'Module', 'tags', 'normal', 'fa fa-tags', 0, 1, 0, 1, 1, '2019-12-29 20:58:13', '2019-12-29 20:59:21'), (22, 'Post Tags', 'Route', 'AdminPostTagsControllerGetIndex', NULL, 'fa fa-file-o', 21, 1, 0, 1, 2, '2019-12-29 21:02:42', NULL), (23, 'AdsPositions', 'Route', 'AdminAdsPositionsControllerGetIndex', NULL, 'fa fa-buysellads', 25, 1, 0, 1, 1, '2019-12-30 23:19:33', NULL), (24, 'AdsPosts', 'Route', 'AdminAdsPostsControllerGetIndex', NULL, 'fa fa-tripadvisor', 25, 1, 0, 1, 2, '2019-12-30 23:23:19', NULL), (25, 'Ads', 'Module', 'ads_posts', 'normal', 'fa fa-buysellads', 0, 1, 0, 1, 3, '2019-12-30 23:24:54', '2019-12-30 23:25:32'), (26, 'TagBanner', 'Route', 'AdminTagBannersControllerGetIndex', NULL, 'fa fa-image', 21, 1, 0, 1, 3, '2020-01-03 20:51:22', NULL), (28, 'Comments', 'Route', 'AdminComments33ControllerGetIndex', NULL, 'fa fa-comments', 19, 1, 0, 1, 3, '2020-01-09 05:20:04', NULL); -- -------------------------------------------------------- -- -- Table structure for table `cms_menus_privileges` -- CREATE TABLE `cms_menus_privileges` ( `id` int(10) UNSIGNED NOT NULL, `id_cms_menus` int(11) DEFAULT NULL, `id_cms_privileges` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `cms_menus_privileges` -- INSERT INTO `cms_menus_privileges` (`id`, `id_cms_menus`, `id_cms_privileges`) VALUES (1, 1, 1), (2, 2, 1), (3, 3, 1), (4, 4, 1), (6, 5, 1), (7, 6, 1), (8, 7, 1), (9, 8, 1), (11, 9, 1), (12, 10, 1), (13, 11, 1), (15, 12, 1), (16, 13, 1), (17, 14, 1), (18, 15, 1), (19, 16, 1), (20, 17, 1), (23, 19, 1), (26, 20, 1), (27, 21, 1), (28, 22, 1), (29, 23, 1), (30, 24, 1), (31, NULL, 1), (32, 25, 1), (33, 26, 1), (34, 27, 1), (35, 28, 1), (37, 18, 1); -- -------------------------------------------------------- -- -- Table structure for table `cms_moduls` -- CREATE TABLE `cms_moduls` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `table_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `controller` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_protected` tinyint(1) NOT NULL DEFAULT '0', `is_active` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `cms_moduls` -- INSERT INTO `cms_moduls` (`id`, `name`, `icon`, `path`, `table_name`, `controller`, `is_protected`, `is_active`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'Notifications', 'fa fa-cog', 'notifications', 'cms_notifications', 'NotificationsController', 1, 1, '2019-11-27 08:57:09', NULL, NULL), (2, 'Privileges', 'fa fa-cog', 'privileges', 'cms_privileges', 'PrivilegesController', 1, 1, '2019-11-27 08:57:09', NULL, NULL), (3, 'Privileges Roles', 'fa fa-cog', 'privileges_roles', 'cms_privileges_roles', 'PrivilegesRolesController', 1, 1, '2019-11-27 08:57:09', NULL, NULL), (4, 'Users Management', 'fa fa-users', 'users', 'cms_users', 'AdminCmsUsersController', 0, 1, '2019-11-27 08:57:09', NULL, NULL), (5, 'Settings', 'fa fa-cog', 'settings', 'cms_settings', 'SettingsController', 1, 1, '2019-11-27 08:57:09', NULL, NULL), (6, 'Module Generator', 'fa fa-database', 'module_generator', 'cms_moduls', 'ModulsController', 1, 1, '2019-11-27 08:57:09', NULL, NULL), (7, 'Menu Management', 'fa fa-bars', 'menu_management', 'cms_menus', 'MenusController', 1, 1, '2019-11-27 08:57:09', NULL, NULL), (8, 'Email Templates', 'fa fa-envelope-o', 'email_templates', 'cms_email_templates', 'EmailTemplatesController', 1, 1, '2019-11-27 08:57:09', NULL, NULL), (9, 'Statistic Builder', 'fa fa-dashboard', 'statistic_builder', 'cms_statistics', 'StatisticBuilderController', 1, 1, '2019-11-27 08:57:09', NULL, NULL), (10, 'API Generator', 'fa fa-cloud-download', 'api_generator', '', 'ApiCustomController', 1, 1, '2019-11-27 08:57:09', NULL, NULL), (11, 'Log User Access', 'fa fa-flag-o', 'logs', 'cms_logs', 'LogsController', 1, 1, '2019-11-27 08:57:09', NULL, NULL), (12, 'Parents', 'fa fa-list', 'parents', 'parents', 'AdminParentsController', 0, 0, '2019-12-05 08:55:48', NULL, NULL), (13, 'Promotions', 'fa fa-list', 'promotions', 'promotions', 'AdminPromotionsController', 0, 0, '2019-12-05 09:02:36', NULL, NULL), (14, 'BackGroundStudents', 'fa fa-list', 'back_ground_students', 'back_ground_students', 'AdminBackGroundStudentsController', 0, 0, '2019-12-05 09:08:41', NULL, NULL), (15, 'StudentsInformation', 'fa fa-book', 'students_infos', 'students_infos', 'AdminStudentsInfosController', 0, 0, '2019-12-05 09:13:29', NULL, NULL), (16, 'Batches', 'fa fa-list', 'batches', 'batches', 'AdminBatchesController', 0, 0, '2019-12-12 06:50:50', NULL, NULL), (17, 'Academics', 'fa fa-leaf', 'academics', 'academics', 'AdminAcademicsController', 0, 0, '2019-12-12 06:57:34', NULL, NULL), (18, 'AcademicsDetails', 'fa fa-line-chart', 'academic_details', 'academic_details', 'AdminAcademicDetailsController', 0, 0, '2019-12-12 06:59:01', NULL, NULL), (19, 'Faculty', 'fa fa-forward', 'faculties', 'faculties', 'AdminFacultiesController', 0, 0, '2019-12-12 07:20:55', NULL, NULL), (20, 'Majors', 'fa fa-inbox', 'majors', 'majors', 'AdminMajorsController', 0, 0, '2019-12-12 07:21:48', NULL, NULL), (21, 'Year', 'fa fa-calendar', 'years', 'years', 'AdminYearsController', 0, 0, '2019-12-12 07:36:59', NULL, NULL), (22, 'Semesters', 'fa fa-briefcase', 'semesters', 'semesters', 'AdminSemestersController', 0, 0, '2019-12-12 07:38:25', NULL, NULL), (23, 'SubPhemantary', 'fa fa-file-text', 'sub_phemantaries', 'sub_phemantaries', 'AdminSubPhemantariesController', 0, 0, '2019-12-12 07:54:48', NULL, NULL), (24, 'Degrees', 'fa fa-soundcloud', 'degrees', 'degrees', 'AdminDegreesController', 0, 0, '2019-12-12 07:55:54', NULL, NULL), (25, 'Categories', 'fa fa-tag', 'categories', 'categories', 'AdminCategoriesController', 0, 0, '2019-12-29 20:34:44', NULL, NULL), (26, 'Articles', 'fa fa-file-o', 'articles', 'articles', 'AdminArticlesController', 0, 0, '2019-12-29 20:39:46', NULL, NULL), (27, 'Tag', 'fa fa-tags', 'tags', 'tags', 'AdminTagsController', 0, 0, '2019-12-29 20:52:02', NULL, NULL), (28, 'Post Tags', 'fa fa-file-o', 'post_tags', 'post_tags', 'AdminPostTagsController', 0, 0, '2019-12-29 21:02:42', NULL, NULL), (29, 'AdsPositions', 'fa fa-buysellads', 'ads_positions', 'ads_positions', 'AdminAdsPositionsController', 0, 0, '2019-12-30 23:19:33', NULL, NULL), (30, 'AdsPosts', 'fa fa-tripadvisor', 'ads_posts', 'ads_posts', 'AdminAdsPostsController', 0, 0, '2019-12-30 23:23:19', NULL, NULL), (31, 'TagBanner', 'fa fa-image', 'tag_banners', 'tag_banners', 'AdminTagBannersController', 0, 0, '2020-01-03 20:51:22', NULL, NULL), (32, 'Comments', 'fa fa-comment', 'comments', 'comments', 'AdminCommentsController', 0, 0, '2020-01-09 04:56:03', NULL, '2020-01-09 05:19:10'), (33, 'Comments', 'fa fa-comments', 'comments33', 'comments', 'AdminComments33Controller', 0, 0, '2020-01-09 05:20:04', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `cms_notifications` -- CREATE TABLE `cms_notifications` ( `id` int(10) UNSIGNED NOT NULL, `id_cms_users` int(11) DEFAULT NULL, `content` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_read` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cms_privileges` -- CREATE TABLE `cms_privileges` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_superadmin` tinyint(1) DEFAULT NULL, `theme_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `cms_privileges` -- INSERT INTO `cms_privileges` (`id`, `name`, `is_superadmin`, `theme_color`, `created_at`, `updated_at`) VALUES (1, 'Super Administrator', 1, 'skin-red', '2019-11-27 08:57:09', NULL); -- -------------------------------------------------------- -- -- Table structure for table `cms_privileges_roles` -- CREATE TABLE `cms_privileges_roles` ( `id` int(10) UNSIGNED NOT NULL, `is_visible` tinyint(1) DEFAULT NULL, `is_create` tinyint(1) DEFAULT NULL, `is_read` tinyint(1) DEFAULT NULL, `is_edit` tinyint(1) DEFAULT NULL, `is_delete` tinyint(1) DEFAULT NULL, `id_cms_privileges` int(11) DEFAULT NULL, `id_cms_moduls` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `cms_privileges_roles` -- INSERT INTO `cms_privileges_roles` (`id`, `is_visible`, `is_create`, `is_read`, `is_edit`, `is_delete`, `id_cms_privileges`, `id_cms_moduls`, `created_at`, `updated_at`) VALUES (1, 1, 0, 0, 0, 0, 1, 1, '2019-11-27 08:57:09', NULL), (2, 1, 1, 1, 1, 1, 1, 2, '2019-11-27 08:57:09', NULL), (3, 0, 1, 1, 1, 1, 1, 3, '2019-11-27 08:57:09', NULL), (4, 1, 1, 1, 1, 1, 1, 4, '2019-11-27 08:57:09', NULL), (5, 1, 1, 1, 1, 1, 1, 5, '2019-11-27 08:57:09', NULL), (6, 1, 1, 1, 1, 1, 1, 6, '2019-11-27 08:57:09', NULL), (7, 1, 1, 1, 1, 1, 1, 7, '2019-11-27 08:57:09', NULL), (8, 1, 1, 1, 1, 1, 1, 8, '2019-11-27 08:57:09', NULL), (9, 1, 1, 1, 1, 1, 1, 9, '2019-11-27 08:57:09', NULL), (10, 1, 1, 1, 1, 1, 1, 10, '2019-11-27 08:57:09', NULL), (11, 1, 0, 1, 0, 1, 1, 11, '2019-11-27 08:57:09', NULL), (12, 1, 1, 1, 1, 1, 1, 12, NULL, NULL), (13, 1, 1, 1, 1, 1, 1, 13, NULL, NULL), (14, 1, 1, 1, 1, 1, 1, 14, NULL, NULL), (15, 1, 1, 1, 1, 1, 1, 15, NULL, NULL), (16, 1, 1, 1, 1, 1, 1, 16, NULL, NULL), (17, 1, 1, 1, 1, 1, 1, 17, NULL, NULL), (18, 1, 1, 1, 1, 1, 1, 18, NULL, NULL), (19, 1, 1, 1, 1, 1, 1, 19, NULL, NULL), (20, 1, 1, 1, 1, 1, 1, 20, NULL, NULL), (21, 1, 1, 1, 1, 1, 1, 21, NULL, NULL), (22, 1, 1, 1, 1, 1, 1, 22, NULL, NULL), (23, 1, 1, 1, 1, 1, 1, 23, NULL, NULL), (24, 1, 1, 1, 1, 1, 1, 24, NULL, NULL), (25, 1, 1, 1, 1, 1, 1, 25, NULL, NULL), (26, 1, 1, 1, 1, 1, 1, 26, NULL, NULL), (27, 1, 1, 1, 1, 1, 1, 27, NULL, NULL), (28, 1, 1, 1, 1, 1, 1, 28, NULL, NULL), (29, 1, 1, 1, 1, 1, 1, 29, NULL, NULL), (30, 1, 1, 1, 1, 1, 1, 30, NULL, NULL), (31, 1, 1, 1, 1, 1, 1, 31, NULL, NULL), (32, 1, 1, 1, 1, 1, 1, 32, NULL, NULL), (33, 1, 1, 1, 1, 1, 1, 33, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `cms_settings` -- CREATE TABLE `cms_settings` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci, `content_input_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dataenum` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `helper` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `group_setting` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `label` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `cms_settings` -- INSERT INTO `cms_settings` (`id`, `name`, `content`, `content_input_type`, `dataenum`, `helper`, `created_at`, `updated_at`, `group_setting`, `label`) VALUES (1, 'login_background_color', NULL, 'text', NULL, 'Input hexacode', '2019-11-27 08:57:09', NULL, 'Login Register Style', 'Login Background Color'), (2, 'login_font_color', NULL, 'text', NULL, 'Input hexacode', '2019-11-27 08:57:09', NULL, 'Login Register Style', 'Login Font Color'), (3, 'login_background_image', NULL, 'upload_image', NULL, NULL, '2019-11-27 08:57:09', NULL, 'Login Register Style', 'Login Background Image'), (4, 'email_sender', '<EMAIL>', 'text', NULL, NULL, '2019-11-27 08:57:09', NULL, 'Email Setting', 'Email Sender'), (5, 'smtp_driver', 'mail', 'select', 'smtp,mail,sendmail', NULL, '2019-11-27 08:57:09', NULL, 'Email Setting', 'Mail Driver'), (6, 'smtp_host', '', 'text', NULL, NULL, '2019-11-27 08:57:09', NULL, 'Email Setting', 'SMTP Host'), (7, 'smtp_port', '25', 'text', NULL, 'default 25', '2019-11-27 08:57:09', NULL, 'Email Setting', 'SMTP Port'), (8, 'smtp_username', '', 'text', NULL, NULL, '2019-11-27 08:57:09', NULL, 'Email Setting', 'SMTP Username'), (9, 'smtp_password', '', 'text', NULL, NULL, '2019-11-27 08:57:09', NULL, 'Email Setting', 'SMTP Password'), (10, 'appname', 'FeedNews', 'text', NULL, NULL, '2019-11-27 08:57:09', NULL, 'Application Setting', 'Application Name'), (11, 'default_paper_size', 'Legal', 'text', NULL, 'Paper size, ex : A4, Legal, etc', '2019-11-27 08:57:09', NULL, 'Application Setting', 'Default Paper Print Size'), (12, 'logo', NULL, 'upload_image', NULL, NULL, '2019-11-27 08:57:09', NULL, 'Application Setting', 'Logo'), (13, 'favicon', NULL, 'upload_image', NULL, NULL, '2019-11-27 08:57:09', NULL, 'Application Setting', 'Favicon'), (14, 'api_debug_mode', 'true', 'select', 'true,false', NULL, '2019-11-27 08:57:09', NULL, 'Application Setting', 'API Debug Mode'), (15, 'google_api_key', NULL, 'text', NULL, NULL, '2019-11-27 08:57:09', NULL, 'Application Setting', 'Google API Key'), (16, 'google_fcm_key', NULL, 'text', NULL, NULL, '2019-11-27 08:57:09', NULL, 'Application Setting', 'Google FCM Key'); -- -------------------------------------------------------- -- -- Table structure for table `cms_statistics` -- CREATE TABLE `cms_statistics` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cms_statistic_components` -- CREATE TABLE `cms_statistic_components` ( `id` int(10) UNSIGNED NOT NULL, `id_cms_statistics` int(11) DEFAULT NULL, `componentID` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `component_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `area_name` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sorting` int(11) DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `config` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cms_users` -- CREATE TABLE `cms_users` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id_cms_privileges` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `cms_users` -- INSERT INTO `cms_users` (`id`, `name`, `photo`, `email`, `password`, `id_cms_privileges`, `created_at`, `updated_at`, `status`) VALUES (1, 'អ្នកចែករំលេក', 'uploads/1/2019-11/flatvector.jpg', '<EMAIL>', <PASSWORD>', 1, '2019-11-27 08:57:09', '2019-11-27 08:59:07', 'Active'); -- -------------------------------------------------------- -- -- Table structure for table `comments` -- CREATE TABLE `comments` ( `id` int(11) NOT NULL, `body` text, `article_id` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `comments` -- INSERT INTO `comments` (`id`, `body`, `article_id`, `created_at`, `updated_at`) VALUES (1, 'Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូ', 6, '2020-01-08 07:10:45', '2020-01-08 07:10:45'), (2, 'svdaasv', 6, '2020-01-08 07:19:09', '2020-01-08 07:19:09'), (3, 'dsvf', 22, '2020-01-08 15:09:57', '2020-01-08 15:09:57'), (4, 'dsvfn', 3, '2020-01-08 15:09:43', '2020-01-08 15:09:43'), (5, 'dsvfnd', 6, '2020-01-08 07:35:40', '2020-01-08 07:35:40'), (6, 'dsvfndv', 4, '2020-01-08 15:09:47', '2020-01-08 15:09:47'), (7, 'dsvfndvk', 6, '2020-01-08 07:35:41', '2020-01-08 07:35:41'), (8, 'dsvfndvkdsn', 6, '2020-01-08 07:35:42', '2020-01-08 07:35:42'), (9, 'dsvfndvkdsnvlk', 5, '2020-01-08 15:09:50', '2020-01-08 15:09:50'), (10, 'dsvfndvkdsnvlkf', 6, '2020-01-08 07:35:42', '2020-01-08 07:35:42'), (11, 'dsvfndvkdsnvlkfs', 22, '2020-01-08 15:09:53', '2020-01-08 15:09:53'), (12, 'dsvfndvkdsnvlkfsd', 6, '2020-01-08 07:35:43', '2020-01-08 07:35:43'), (13, 't', 6, '2020-01-08 07:40:09', '2020-01-08 07:40:09'), (14, 'this', 6, '2020-01-08 07:40:10', '2020-01-08 07:40:10'), (15, 'this', 3, '2020-01-08 15:10:02', '2020-01-08 15:10:02'), (16, 'this t', 63, '2020-01-08 15:15:18', '2020-01-08 15:15:18'), (17, 'this the', 64, '2020-01-08 15:15:15', '2020-01-08 15:15:15'), (18, 'this the', 6, '2020-01-08 07:40:13', '2020-01-08 07:40:13'), (19, 'this th', 56, '2020-01-08 15:14:52', '2020-01-08 15:14:52'), (20, 'this t', 6, '2020-01-08 07:40:14', '2020-01-08 07:40:14'), (21, 'this', 4, '2020-01-08 15:14:46', '2020-01-08 15:14:46'), (22, 'this is', 39, '2020-01-08 15:15:07', '2020-01-08 15:15:07'), (23, 'this is a', 4, '2020-01-08 15:10:06', '2020-01-08 15:10:06'), (24, 'this is a', 6, '2020-01-08 07:40:16', '2020-01-08 07:40:16'), (25, 'this is a co', 65, '2020-01-08 15:15:02', '2020-01-08 15:15:02'), (26, 'this is a com', 6, '2020-01-08 07:40:17', '2020-01-08 07:40:17'), (27, 'this is a comm', 6, '2020-01-08 07:40:17', '2020-01-08 07:40:17'), (28, 'this is a commen', 87, '2020-01-08 15:14:57', '2020-01-08 15:14:57'), (29, 'this is a comment', 6, '2020-01-08 07:40:18', '2020-01-08 07:40:18'), (30, 'this is a comment', 4, '2020-01-08 15:10:13', '2020-01-08 15:10:13'), (31, 'this is a comment d', 76, '2020-01-08 15:15:11', '2020-01-08 15:15:11'), (32, 'this is a comment de', 6, '2020-01-08 07:40:20', '2020-01-08 07:40:20'), (33, 'khy', 10, '2020-01-08 15:10:34', '2020-01-08 15:10:34'), (34, 'd', 3, '2020-01-08 15:10:17', '2020-01-08 15:10:17'), (35, 'd', 6, '2020-01-08 07:47:57', '2020-01-08 07:47:57'), (36, 'D', 20, '2020-01-08 15:10:30', '2020-01-08 15:10:30'), (37, 'De', 3, '2020-01-08 15:15:27', '2020-01-08 15:15:27'), (38, 'Dev', 7, '2020-01-08 15:15:24', '2020-01-08 15:15:24'), (39, 'ខេត្តមណ្ឌលគីរី', 9, '2020-01-08 15:10:25', '2020-01-08 15:10:25'), (40, 'I am leader....', 6, '2020-01-08 07:51:44', '2020-01-08 07:51:44'), (41, 'e', 18, '2020-01-08 08:22:18', '2020-01-08 08:22:18'), (42, NULL, 18, '2020-01-08 08:22:26', '2020-01-08 08:22:26'), (43, NULL, 20, '2020-01-08 08:23:44', '2020-01-08 08:23:44'), (44, NULL, 16, '2020-01-08 08:24:30', '2020-01-08 08:24:30'), (45, 'ម៉្យាងវិញទៀតយើងប្តឹង', 16, '2020-01-08 08:25:37', '2020-01-08 08:25:37'), (46, 'the name filder', 16, '2020-01-08 08:26:24', '2020-01-08 08:26:24'), (47, NULL, 16, '2020-01-08 08:26:36', '2020-01-08 08:26:36'), (48, 'the', 16, '2020-01-08 08:28:40', '2020-01-08 08:28:40'), (49, 'hello', 16, '2020-01-08 08:30:50', '2020-01-08 08:30:50'), (50, 'making it look like readable English', 13, '2020-01-08 08:36:38', '2020-01-08 08:36:38'), (51, NULL, 13, '2020-01-08 08:36:46', '2020-01-08 08:36:46'), (52, 'អ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។ មានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក Nam នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច', 13, '2020-01-08 08:37:04', '2020-01-08 08:37:04'), (53, 'Honda ADV 150 គឺជាម៉ូតូ​អូតូ​បែប​ ​On និង Off-road ដែល​អាច​នាំ​អ្នក​ទៅ​គ្រប់ទិសទី និង​លើ​ស្ថានភាព​ផ្លូវ​ពិបាក​បាន ហើយមាន​កម្លាំង​ម៉ាស៊ីន​ដល់ទៅ ១៥០សេសេ', 2, '2020-01-08 08:37:29', '2020-01-08 08:37:29'), (54, 'Lorem Ipsum គឺQuisque និង lectus ac គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ, ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ Malesuada', 13, '2020-01-08 08:37:52', '2020-01-08 08:37:52'), (55, 'គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹង', 15, '2020-01-08 08:40:56', '2020-01-08 08:40:56'), (56, 'Various versions have evolved over the years, sometimes by', 28, '2020-01-09 04:40:34', '2020-01-09 04:40:34'), (57, 'Various versions have evolved over the years, sometimes by', 28, '2020-01-09 04:40:40', '2020-01-09 04:40:40'), (58, 'វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ, ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ Malesuada', 28, '2020-01-09 04:40:56', '2020-01-09 04:40:56'), (59, 'Lorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សា', 20, '2020-01-09 05:32:25', '2020-01-09 05:32:25'), (60, 'Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូ', 45, '2020-01-15 09:09:38', '2020-01-15 09:09:38'), (61, 'Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូ', 45, '2020-01-15 09:09:43', '2020-01-15 09:09:43'), (62, 'សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។ វាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។', 45, '2020-01-15 09:09:52', '2020-01-15 09:09:52'), (63, 'Lorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧ', 20, '2020-01-16 08:10:05', '2020-01-16 08:10:05'), (64, 'ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ', 20, '2020-01-16 08:10:14', '2020-01-16 08:10:14'), (65, 'បានគេហៅថាការបណ្តុះបណ្តាល។', 20, '2020-01-16 08:10:21', '2020-01-16 08:10:21'), (66, 'this', 29, '2020-01-16 08:40:08', '2020-01-16 08:40:08'), (67, 'acacss', 29, '2020-01-16 08:49:48', '2020-01-16 08:49:48'), (68, 'orci នៅកន្លែងកើតហេតុ sodales ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័', 29, '2020-01-16 08:49:58', '2020-01-16 08:49:58'), (69, 'ssdsd', 20, '2020-01-16 08:50:49', '2020-01-16 08:50:49'), (70, 'this', 29, '2020-01-16 08:52:30', '2020-01-16 08:52:30'), (71, 'នរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក,', 38, '2020-01-16 09:52:15', '2020-01-16 09:52:15'), (72, ', ultrices នៅ tortor ។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។', 38, '2020-01-16 09:52:23', '2020-01-16 09:52:23'), (73, 'Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក,', 38, '2020-01-16 09:52:30', '2020-01-16 09:52:30'), (74, 'Lorem Ipsum គឺQuisque និង lectus ac គឺជាលទ្ធផលនៃការនិងមិនមែន', 43, '2020-01-16 09:52:42', '2020-01-16 09:52:42'), (75, 'អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ', 43, '2020-01-16 09:52:50', '2020-01-16 09:52:50'), (76, 'Lorem Ipsum គឺQuisque និង lectus ac គឺជាលទ្ធផលនៃការនិងមិនមែន', 43, '2020-01-16 09:52:58', '2020-01-16 09:52:58'), (77, 'this t', 41, '2020-01-22 06:58:24', '2020-01-22 06:58:24'), (78, 'Lorem Ipsum គឺQuisque និង lectus ac គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ, ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ Malesuada ឬ។', 21, '2020-01-22 07:49:59', '2020-01-22 07:49:59'), (79, 'Lorem Ipsum គឺQuisque និង lectus ac គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ, ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ Malesuada ឬ។', 21, '2020-01-22 07:50:05', '2020-01-22 07:50:05'), (80, 'Lorem Ipsum គឺQuisque និង lectus ac គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ, ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ Malesuada ឬ។', 21, '2020-01-22 07:50:11', '2020-01-22 07:50:11'), (81, 'orci នៅកន្លែងកើតហេតុ sodales ស្ងួត', 21, '2020-01-22 07:50:19', '2020-01-22 07:50:19'), (82, 'ទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខ', 19, '2020-01-22 08:18:42', '2020-01-22 08:18:42'), (83, 'វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ', 19, '2020-01-22 08:18:52', '2020-01-22 08:18:52'), (84, 'psum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើ', 5, '2020-01-22 09:10:59', '2020-01-22 09:10:59'), (85, 'អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក', 37, '2020-01-22 09:18:40', '2020-01-22 09:18:40'), (86, 'អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក', 37, '2020-01-22 09:18:52', '2020-01-22 09:18:52'), (87, 'បានបង្កើតឡើងដោយប្រើឧបករណ៍អេ', 24, '2020-01-22 09:19:26', '2020-01-22 09:19:26'), (88, 'អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ', 33, '2020-01-22 09:20:02', '2020-01-22 09:20:02'), (89, NULL, 19, '2020-01-22 09:25:17', '2020-01-22 09:25:17'), (90, 'ដូចជា Aldus PageMaker រួមទាំងកំណែរបស់ Lorem Ipsum ផងដែរ', 17, '2020-01-22 09:30:41', '2020-01-22 09:30:41'), (91, 'វាត្រូវបានប្រជាប្រិយ', 17, '2020-01-22 09:30:56', '2020-01-22 09:30:56'), (92, 'គឺជាអ្វីដែលខ្ញុំមាន?', 17, '2020-01-22 09:31:06', '2020-01-22 09:31:06'), (93, 'Various versions have', 29, '2020-01-28 06:35:56', '2020-01-28 06:35:56'); -- -------------------------------------------------------- -- -- Table structure for table `degrees` -- CREATE TABLE `degrees` ( `id` int(10) UNSIGNED NOT NULL, `degreename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `academic` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `degrees` -- INSERT INTO `degrees` (`id`, `degreename`, `academic`, `created_at`, `updated_at`) VALUES (1, 'Computer', '2019-2020', '2019-12-12 08:01:32', NULL); -- -------------------------------------------------------- -- -- Table structure for table `faculties` -- CREATE TABLE `faculties` ( `id` int(10) UNSIGNED NOT NULL, `facultiename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `faculties` -- INSERT INTO `faculties` (`id`, `facultiename`, `created_at`, `updated_at`) VALUES (1, 'Faculty of Science and Technology', '2019-12-12 07:25:25', '2019-12-12 07:30:59'), (2, 'Faculty of Law and Political Science', '2019-12-12 07:25:42', '2019-12-12 07:32:14'), (3, 'Faculty of Social Science and Economics', '2019-12-12 07:25:51', '2019-12-12 07:33:08'); -- -------------------------------------------------------- -- -- Table structure for table `groups` -- CREATE TABLE `groups` ( `id` int(10) UNSIGNED NOT NULL, `groupname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `majors` -- CREATE TABLE `majors` ( `id` int(10) UNSIGNED NOT NULL, `faculty_id` int(11) NOT NULL, `majorname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `majors` -- INSERT INTO `majors` (`id`, `faculty_id`, `majorname`, `created_at`, `updated_at`) VALUES (1, 1, 'Computer Science', '2019-12-12 07:31:17', NULL), (2, 1, 'Computer Network Technology', '2019-12-12 07:31:35', NULL), (3, 1, 'Electronic and Electricity Engineering', '2019-12-12 07:31:48', NULL), (4, 2, 'Public Law', '2019-12-12 07:32:27', NULL), (5, 2, 'Public Administration', '2019-12-12 07:32:37', NULL), (6, 2, 'Political Science', '2019-12-12 07:32:47', NULL), (7, 3, 'Community Development', '2019-12-12 07:33:32', NULL), (8, 3, 'Finance and Banking', '2019-12-12 07:33:41', NULL), (9, 3, 'Economics', '2019-12-12 07:33:50', NULL); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2016_08_07_145904_add_table_cms_apicustom', 1), (2, '2016_08_07_150834_add_table_cms_dashboard', 1), (3, '2016_08_07_151210_add_table_cms_logs', 1), (4, '2016_08_07_151211_add_details_cms_logs', 1), (5, '2016_08_07_152014_add_table_cms_privileges', 1), (6, '2016_08_07_152214_add_table_cms_privileges_roles', 1), (7, '2016_08_07_152320_add_table_cms_settings', 1), (8, '2016_08_07_152421_add_table_cms_users', 1), (9, '2016_08_07_154624_add_table_cms_menus_privileges', 1), (10, '2016_08_07_154624_add_table_cms_moduls', 1), (11, '2016_08_17_225409_add_status_cms_users', 1), (12, '2016_08_20_125418_add_table_cms_notifications', 1), (13, '2016_09_04_033706_add_table_cms_email_queues', 1), (14, '2016_09_16_035347_add_group_setting', 1), (15, '2016_09_16_045425_add_label_setting', 1), (16, '2016_09_17_104728_create_nullable_cms_apicustom', 1), (17, '2016_10_01_141740_add_method_type_apicustom', 1), (18, '2016_10_01_141846_add_parameters_apicustom', 1), (19, '2016_10_01_141934_add_responses_apicustom', 1), (20, '2016_10_01_144826_add_table_apikey', 1), (21, '2016_11_14_141657_create_cms_menus', 1), (22, '2016_11_15_132350_create_cms_email_templates', 1), (23, '2016_11_15_190410_create_cms_statistics', 1), (24, '2016_11_17_102740_create_cms_statistic_components', 1), (25, '2017_06_06_164501_add_deleted_at_cms_moduls', 1), (26, '2019_12_05_150240_create_students_infos_table', 2), (27, '2019_12_05_152921_create_promotions_table', 3), (28, '2019_12_05_153550_create_parents_table', 4), (29, '2019_12_05_154731_create_back_ground_students_table', 5), (30, '2019_12_12_134916_create_batches_table', 6), (31, '2019_12_12_135233_create_academic_details_table', 7), (32, '2019_12_12_135543_create_academics_table', 8), (33, '2019_12_12_141323_create_years_table', 9), (34, '2019_12_12_141604_create_semesters_table', 10), (35, '2019_12_12_141707_create_faculties_table', 11), (36, '2019_12_12_141809_create_majors_table', 11), (37, '2019_12_12_144603_create_degrees_table', 12), (38, '2019_12_12_144919_create_sub_phemantaries_table', 13), (39, '2019_12_16_155026_create_groups_table', 14), (40, '2019_12_16_155110_create_classes_table', 15), (41, '2019_12_16_155201_create_sessions_table', 16), (42, '2019_12_16_155836_create_subjects_table', 17), (43, '2019_12_16_160410_create_payments_table', 18), (44, '2019_12_30_032841_create_articles_table', 19), (45, '2019_12_30_033155_create_categories_table', 20), (46, '2019_12_30_034920_create_tags_table', 21), (47, '2019_12_30_034948_create_post_tags_table', 22), (48, '2019_12_31_061712_create_ads_positions_table', 23), (49, '2019_12_31_062022_create_ads_posts_table', 24), (50, '2020_01_04_034823_create_tag_banners_table', 25), (51, '2020_01_08_130331_create_comments_table', 26); -- -------------------------------------------------------- -- -- Table structure for table `parents` -- CREATE TABLE `parents` ( `id` int(10) UNSIGNED NOT NULL, `fathername` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fatherphone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fathernationality` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fatheroccupation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fathercurrentaddress` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mothername` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `motherphone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mothernationality` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `motheroccupation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mothercurrentaddress` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remark` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `parents` -- INSERT INTO `parents` (`id`, `fathername`, `fatherphone`, `fathernationality`, `fatheroccupation`, `fathercurrentaddress`, `mothername`, `motherphone`, `mothernationality`, `motheroccupation`, `mothercurrentaddress`, `remark`, `created_at`, `updated_at`) VALUES (1, 'A', '343353535', 'khmer', 'Teacher', 'PP', 'B', '01192837', 'khmer', 'Police', 'PP', 'they parents', '2019-12-05 08:59:26', '2019-12-05 09:01:36'); -- -------------------------------------------------------- -- -- Table structure for table `payments` -- CREATE TABLE `payments` ( `id` int(10) UNSIGNED NOT NULL, `amount` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `doscount` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `carrysemester` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `annully` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reciever` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `issue` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `post_tags` -- CREATE TABLE `post_tags` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `tag_id` int(11) NOT NULL, `title_kh` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `title_en` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description_kh` text COLLATE utf8mb4_unicode_ci NOT NULL, `description_en` text COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `article_kh` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `article_en` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `view` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `post_tags` -- INSERT INTO `post_tags` (`id`, `user_id`, `tag_id`, `title_kh`, `title_en`, `description_kh`, `description_en`, `images`, `article_kh`, `article_en`, `view`, `created_at`, `updated_at`) VALUES (1, 0, 1, 'អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍', 'Lorem Ipsum passage, and going through the cites of the word in classical', 'អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន', 'Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered.', 'uploads/1/2020-01/5e0d95261fbfa_1577948400_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">អ្នកគួរតែទទួលបានលទ្ធផលល្អ</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺ</span>Quisque <span lang=\"KHM\">និង </span>lectus\r\nac <span lang=\"KHM\">គឺជាលទ្ធផលនៃការនិងមិនមែន។ វាត្រូវបានគេប្រើដើម្បីកំណត់អត្តសញ្ញាណប្រភេទនេះ</span>,\r\n<span lang=\"KHM\">ប៉ុន្តែវាត្រូវបានបង្កើតឡើងដោយ </span>Malesuada <span lang=\"KHM\">ឬ។\r\nអ្នកគួរតែប្រើវិធីសាស្រ្តដើម្បីឱ្យវាមានលក្ខណៈធម្មតា។ អ្នកអាចរកទិញឬក៏អ្នកដាក់លក់ឬទិញផលិតផលដែលអ្នកទទួលបាន។\r\nមានពាសពេញខ្មោចដែលមិនមានត្រចៀកកាំ។ មុខឺម៉ិចត្រូវបានគេស្គាល់ថាជាពហុគុណ។ លោក </span>Nam\r\n<span lang=\"KHM\">នៅលើសំណុំបែបបទ។ បញ្ចប់ការដេញថ្លៃចុងក្រោយបំផុត។ វាត្រូវបានបង្កើតឡើងដោយប្រើឧបករណ៍អេឡិចត្រូនិច។\r\nសក្ដានុពលលឿន។ សាប៊ូលាបសន្លាក់។ វាត្រូវបានបង្កើតឡើងដោយមិនត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានលទ្ធផលល្អ។\r\nវាត្រូវបានបង្កើតឡើងដើម្បីឱ្យមានការបើកចំហរនិងការធ្វើឱ្យប្រសើរឡើង។ អ្នកអាចរកមើលឃើញនូវអ្វីដែលអ្នកចង់បាន។\r\nប្រសិនបើអ្នកទទួលបានលទ្ធផល</span>, <span lang=\"KHM\">អ្នកគួរតែទទួលបានអាហារពេលព្រឹក។\r\nអ្នកមិនគួរអានឬអានសៀវភៅនេះទេ។ សូមអរគុណ។ នៅក្នុង </span>orci <span lang=\"KHM\">នៅកន្លែងកើតហេតុ\r\n</span>sodales <span lang=\"KHM\">ស្ងួត។ ក្រមួននិងឈើឆ្កាង។ អ្នកត្រូវធ្វើអត្តសញ្ញាណប័ណ្ណនិមួយៗ។</span></span><span style=\"font-size: 10.5pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><br></p>', '<h2 style=\"margin-top: 0px; margin-right: 0px; margin-left: 0px; padding: 0px; line-height: 24px; font-family: DauphinPlain; font-size: 24px; color: rgb(0, 0, 0);\">Where does it come from?</h2><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. <NAME>, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p><p style=\"margin-bottom: 15px; padding: 0px; text-align: justify; font-family: &quot;Open Sans&quot;, Arial, sans-serif;\">The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by <NAME>.</p>', 1, '2019-12-29 21:10:52', '2020-01-04 22:33:33'), (2, 0, 1, 'វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។', 'Many desktop publishing packages and web', 'វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។', 'Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text', 'uploads/1/2020-01/5e0db0_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><br></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b><span lang=\"KHM\" style=\"font-size: 22pt; font-family: DaunPenh;\">គឺជាអ្វីដែលខ្ញុំមាន</span></b><b><span style=\"font-size: 22pt; font-family: &quot;Open Sans&quot;, sans-serif;\">?<o:p></o:p></span></b></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><br></p>', 2, '2019-12-29 21:11:16', '2020-01-04 22:34:31'), (3, 0, 2, 'បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់', 'more-or-less normal distribution of letters', 'វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត, ultrices នៅ tortor ។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។', 'The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters', 'uploads/1/2020-01/5e0d97df59b92_1577949120_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p>', '<p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, </span></p><p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><br></p>', 0, '2019-12-31 00:03:02', '2020-01-04 22:36:01'), (4, 0, 2, 'បុរសម្នាក់នៅក្នុងរឿងអេក បើក​ឡើង​ចំណោត​សាក​មើល​រួច​អត់', 'Many desktop publishing packages and', 'បុរសម្នាក់នៅក្នុងរឿងអេក។Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ', 'Many desktop publishing packages and web page editors now use Lorem Ipsum as their default', 'uploads/1/2020-01/5e0da74c574d7_1577953080_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p>', '<p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span></p><p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\"><br></span><br></p>', 0, '2019-12-31 00:03:14', '2020-01-04 22:37:31'), (5, 0, 3, 'វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ', 'and a search for \'lorem ipsum\' will uncover', 'ultrices នៅ tortor ។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។Lorem Ipsum', 'opposed to using \'Content here, content here\', making it look like readable English.', 'uploads/1/2020-01/5e0d5661906ba_1577932380_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\n</span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">,\r\nultrices </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">នៅ </span><span style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">tortor </span><span lang=\"KHM\" style=\"font-family: &quot;Khmer OS&quot;; font-size: 9pt;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: &quot;Khmer OS&quot;;\"><o:p></o:p></span></p>', '<p><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><span style=\"font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><br></p>', 0, '2019-12-31 00:03:25', '2020-01-04 22:38:28'), (6, 0, 4, 'ការផ្តល់ជូនពិសេសគឺត្រូវបានផ្តល់ជូនពិសេស', 'Lorem Ipsum is simply dummy text', 'Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក', 'Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 'uploads/1/2020-01/5e0da47b34c3b_1577952360_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span>,\r\n<span lang=\"KHM\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។\r\nវាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span>,\r\n<span lang=\"KHM\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។\r\nអ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។\r\nវាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span>,\r\nultrices <span lang=\"KHM\">នៅ </span>tortor <span lang=\"KHM\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។\r\nបុរសម្នាក់នៅក្នុងរឿងអេក។</span><o:p></o:p></span></p>', '<p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\"> is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p>', 0, '2020-01-04 05:09:40', '2020-01-04 22:42:43'), (7, 0, 4, 'Lorem Ipsum គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហក', 'centuries, but also the leap into electronic', 'Lorem Ipsum គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ 1500 នៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទ', 'galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic', 'uploads/1/2020-01/5e0d95261fbfa_1577948400_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: \"Open Sans\", sans-serif;\"> is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived not only five centuries, but also the leap into electronic\r\ntypesetting, remaining essentially unchanged. It was popularised in the 1960s\r\nwith the release of Letraset sheets containing Lorem Ipsum passages, and more\r\nrecently with desktop publishing software like Aldus PageMaker including\r\nversions of Lorem Ipsum.<o:p></o:p></span></p>', 0, '2020-01-04 05:10:35', '2020-01-04 22:42:17'), (8, 0, 4, 'វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ', 'It is a long established fact that a reader will be distracted', 'Letraset ដែលមានអត្ថបទ Lorem Ipsum និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា Aldus PageMaker រួមទាំងកំណែរបស់ Lorem Ipsum ផងដែរ។', 'normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors', 'uploads/1/2020-01/5e0da47b34c3b_1577952360_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺគ្រាន់តែជាអត្ថបទអត់ចេះសោះនៃឧស្សាហកម្មបោះពុម្ពនិងកំណត់។\r\n</span>Lorem Ipsum <span lang=\"KHM\">គឺជាអត្ថបទក្លែងក្លាយរបស់ឧស្សាហកម្មដែលមិនធ្លាប់មានតាំងពីទសវត្សរ៍ឆ្នាំ\r\n</span>1500<span lang=\"KHM\">\r\nនៅពេលដែលម៉ាស៊ីនបោះពុម្ពមិនស្គាល់មួយបានថតរូបប្រភេទមួយហើយបានដាក់វាដើម្បីបង្កើតសៀវភៅគំរូ។\r\nវាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។\r\nវាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ </span>1960<span lang=\"KHM\">\r\nជាមួយនឹងការចេញផ្សាយសន្លឹក </span>Letraset <span lang=\"KHM\">ដែលមានអត្ថបទ </span>Lorem\r\nIpsum <span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា </span>Aldus\r\nPageMaker <span lang=\"KHM\">រួមទាំងកំណែរបស់ </span>Lorem Ipsum <span lang=\"KHM\">ផងដែរ។</span><o:p></o:p></span></p>', '<p><span style=\"font-size: 10.5pt; line-height: 107%; font-family: \"Open Sans\", sans-serif;\">It is a long established fact\r\nthat a reader will be distracted by the readable content of a page when looking\r\nat its layout. The point of using Lorem Ipsum is that it has a more-or-less\r\nnormal distribution of letters, as opposed to using \'Content here, content\r\nhere\', making it look like readable English. Many desktop publishing packages\r\nand web page editors </span><br></p>', 0, '2020-01-04 05:11:21', '2020-01-04 22:41:51'), (9, 0, 3, 'វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះ', 'Why do we use it', 'ឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ 1960 ជាមួយនឹងការចេញផ្សាយសន្លឹក Letraset ដែលមានអត្ថបទ Lorem Ipsum និងថ្មីៗនេះជាមួយនឹងកម្មវិ', 'making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted', 'uploads/1/2020-01/5e0da181f0bb7_1577951580_small.jpg', '<p><span lang=\"KHM\" khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ&nbsp;</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">1960<span lang=\"KHM\">&nbsp;ជាមួយនឹងការចេញផ្សាយសន្លឹក&nbsp;</span>Letraset&nbsp;<span lang=\"KHM\">ដែលមានអត្ថបទ&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា&nbsp;</span>Aldus PageMaker&nbsp;<span lang=\"KHM\">រួមទាំងកំណែរបស់&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">ផងដែរ។</span></span><span lang=\"KHM\" khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ&nbsp;</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">1960<span lang=\"KHM\">&nbsp;ជាមួយនឹងការចេញផ្សាយសន្លឹក&nbsp;</span>Letraset&nbsp;<span lang=\"KHM\">ដែលមានអត្ថបទ&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា&nbsp;</span>Aldus PageMaker&nbsp;<span lang=\"KHM\">រួមទាំងកំណែរបស់&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">ផងដែរ។</span></span><span lang=\"KHM\" khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ&nbsp;</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">1960<span lang=\"KHM\">&nbsp;ជាមួយនឹងការចេញផ្សាយសន្លឹក&nbsp;</span>Letraset&nbsp;<span lang=\"KHM\">ដែលមានអត្ថបទ&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា&nbsp;</span>Aldus PageMaker&nbsp;<span lang=\"KHM\">រួមទាំងកំណែរបស់&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">ផងដែរ។</span></span><span lang=\"KHM\" khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ&nbsp;</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">1960<span lang=\"KHM\">&nbsp;ជាមួយនឹងការចេញផ្សាយសន្លឹក&nbsp;</span>Letraset&nbsp;<span lang=\"KHM\">ដែលមានអត្ថបទ&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា&nbsp;</span>Aldus PageMaker&nbsp;<span lang=\"KHM\">រួមទាំងកំណែរបស់&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">ផងដែរ។</span></span><span lang=\"KHM\" khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">វាបានរស់រានមានជីវិតមិនត្រឹមតែប្រាំសតវត្សប៉ុណ្ណោះទេប៉ុន្តែវាក៏ជាជំហានទៅជាការសរសេរជាអេឡិចត្រូនិចដែលនៅតែមិនផ្លាស់ប្តូរ។ វាត្រូវបានប្រជាប្រិយភាពនៅទសវត្សឆ្នាំ&nbsp;</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt; line-height: 12.84px;\">1960<span lang=\"KHM\">&nbsp;ជាមួយនឹងការចេញផ្សាយសន្លឹក&nbsp;</span>Letraset&nbsp;<span lang=\"KHM\">ដែលមានអត្ថបទ&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">និងថ្មីៗនេះជាមួយនឹងកម្មវិធីបោះពុម្ភលើផ្ទៃតុដូចជា&nbsp;</span>Aldus PageMaker&nbsp;<span lang=\"KHM\">រួមទាំងកំណែរបស់&nbsp;</span>Lorem Ipsum&nbsp;<span lang=\"KHM\">ផងដែរ។</span></span><br></p>', '<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors&nbsp;<br></p>', 0, '2020-01-04 05:13:22', '2020-01-04 22:41:06'); INSERT INTO `post_tags` (`id`, `user_id`, `tag_id`, `title_kh`, `title_en`, `description_kh`, `description_en`, `images`, `article_kh`, `article_en`, `view`, `created_at`, `updated_at`) VALUES (10, 0, 3, 'Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើង', 'when an unknown printer took a galley', 'Lorem Ipsum គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអា', 'Lorem Ipsum is simply dummy text of the printing and typ', 'uploads/1/2020-01/5e0da47b34c3b_1577952360_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \" khmer=\"\" os\";\"=\"\">Lorem Ipsum <span lang=\"KHM\">គឺវាជាការពិតដែលបានបង្កើតឡើងយូរមកហើយដែលអ្នកអាននឹងត្រូវបានរំខានដោយមាតិកាដែលអាចអានបាននៃទំព័រនៅពេលដែលក្រឡេកមើលប្លង់របស់វា។\r\nចំនុចនៃការប្រើ&nbsp;</span></span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt;\">L</span>orem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។<span style=\"font-size: 12px;\">orem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ&nbsp;</span><span style=\"font-size: 12px;\">Lorem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក&nbsp;</span><span style=\"font-size: 12px;\">\'lorem ipsum\'&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt;\">L</span>orem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។<span style=\"font-size: 12px;\">orem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ&nbsp;</span><span style=\"font-size: 12px;\">Lorem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក&nbsp;</span><span style=\"font-size: 12px;\">\'lorem ipsum\'&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span><span khmer=\"\" os\";\"=\"\" style=\"font-size: 9pt;\">L</span>orem Ipsum គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ Lorem Ipsum ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក \'lorem ipsum\' នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។<span style=\"font-size: 12px;\">orem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">គឺថាវាមានការចែកចាយអក្សរធម្មតាឬមិនធម្មតាជាងផ្ទុយពីការប្រើប្រាស់មាតិកានៅទីនេះមាតិកានៅទីនេះធ្វើឱ្យវាមើលទៅដូចជាភាសាអង់គ្លេសដែលអាចអានបាន។ កញ្ចប់បោះពុម្ភផ្សាយផ្ទៃតុជាច្រើននិងកម្មវិធីនិពន្ធទំព័របណ្តាញឥឡូវនេះប្រើ&nbsp;</span><span style=\"font-size: 12px;\">Lorem Ipsum&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">ជាអត្ថបទគំរូលំនាំដើមរបស់ពួកគេហើយការស្វែងរក&nbsp;</span><span style=\"font-size: 12px;\">\'lorem ipsum\'&nbsp;</span><span lang=\"KHM\" style=\"font-size: 12px;\">នឹងបង្ហាញគេហទំព័រជាច្រើននៅមិនទាន់មាននៅឡើយទេ។ កំណែជាច្រើនបានវិវឌ្ឍជាច្រើនឆ្នាំមកហើយជួនកាលដោយគ្រោះថ្នាក់ចរាចរណ៍ពេលខ្លះមានគោលបំណង (កំប្លុកកំប្លែងនិងការស្រដៀងគ្នា) ។</span></p>', '<p style=\"margin: 0cm 0cm 0.0001pt; text-align: justify; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><span style=\"font-size: 10.5pt; font-family: \" open=\"\" sans\",=\"\" sans-serif;\"=\"\">Lorem Ipsum</span></strong><span style=\"font-size: 10.5pt; font-family: \" open=\"\" sans\",=\"\" sans-serif;\"=\"\">&nbsp;is\r\nsimply dummy text of the printing and typesetting industry. Lorem Ipsum has\r\nbeen the industry\'s standard dummy text ever since the 1500s, when an unknown\r\nprinter took a galley of type and scrambled it to make a type specimen book. It\r\nhas survived no<o:p></o:p></span>t only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.t only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.t only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.t only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>', 0, '2020-01-04 05:14:14', '2020-01-04 22:40:35'), (11, 1, 1, 'Lorem Ipsum គឺផ្ទុយទៅនឹងជំនឿដ៏ពេញនិយម', 'Many desktop publishing packages and web page editors', 'Lorem Ipsum គឺផ្ទុយទៅនឹងជំនឿដ៏ពេញនិយម, Lorem Ipsum មិនមែនជាអត្ថបទចៃដន្យទេ។ វាមានឫសគល់នៅក្នុងអក្សរសិល្ប៍ឡាតាំងបុរាណពីឆ្នាំ 45 ម។ គ។ ដែលធ្វើឱ្យវាមានអាយុកាលជាង 2000 ឆ្នាំ។ លោក Richard', 'page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution', 'uploads/1/2020-01/5e0db0_small.jpg', '<p class=\"MsoNormal\" style=\"margin-bottom: 11.25pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 9pt; font-family: \"Khmer OS\";\">Lorem Ipsum <span lang=\"KHM\">គឺផ្ទុយទៅនឹងជំនឿដ៏ពេញនិយម</span>, Lorem\r\nIpsum <span lang=\"KHM\">មិនមែនជាអត្ថបទចៃដន្យទេ។\r\nវាមានឫសគល់នៅក្នុងអក្សរសិល្ប៍ឡាតាំងបុរាណពីឆ្នាំ </span>45<span lang=\"KHM\"> ម។ គ។\r\nដែលធ្វើឱ្យវាមានអាយុកាលជាង </span>2000<span lang=\"KHM\"> ឆ្នាំ។ លោក </span>Richard\r\nMcClintock <span lang=\"KHM\">សាស្ត្រាចារ្យឡាតាំងនៅមហាវិទ្យាល័យ </span>Hampden-Sydney\r\n<span lang=\"KHM\">នៅរដ្ឋវីជីហ្គីបានមើលពាក្យឡាតាំងមួយដែលមិនច្បាស់លាស់ជាងមុនដែលជាភាសាអង់គ្លេសដែលមានអត្ថន័យជ្រាលជ្រៅពីអត្ថបទគម្ពីរ\r\n</span>Lorem Ipsum <span lang=\"KHM\">ហើយបានឆ្លងកាត់ពាក្យសម្ដីក្នុងអក្សរសិល្ប៍បុរាណហើយបានរកឃើញប្រភពមិនគួរឱ្យជឿ។\r\nទំព័រដើមគឺមកពីផ្នែកទី </span>1.10.32<span lang=\"KHM\"> និង </span>1.10.33<span lang=\"KHM\"> នៃ \"</span>de Finibus Bonorum et Malorum\" <span lang=\"KHM\">ដោយ\r\n</span>Cicero <span lang=\"KHM\">ដែលសរសេរនៅឆ្នាំ </span>45<span lang=\"KHM\"> មុនគ។ ស\r\n..\r\nសៀវភៅនេះគឺជាសក្ខីកម្មមួយស្តីពីទ្រឹស្តីក្រមសីលធម៌ដែលមានប្រជាប្រិយភាពបំផុតក្នុងសម័យកាលរាជវង្ស។\r\nបន្ទាត់ទីមួយនៃទំព័រដើមគឺ \"ពាក្យស្លោកនៃពាក្យស្លោក\"\r\nដែលចេញមកពីបន្ទាត់ក្នុងផ្នែក </span>1.10.32<span lang=\"KHM\"> ។</span><o:p></o:p></span></p>', '<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem </p><ul><li>Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, </li><li>content here\', making it look like readable English. </li><li>Many desktop publishing packages and web page editors <br></li></ul>', 0, '2020-01-04 05:15:16', '2020-01-22 08:51:13'), (12, 1, 1, 'Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្', 'Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្', 'Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត, ultrices នៅ tortor ។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។', 'Lorem Ipsum គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក, ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ, ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត, ultrices នៅ tortor ។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។', 'uploads/1/2020-01/9bb.png', '<p><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, ultrices </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">នៅ </span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">tortor </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។</span><br></p>', '<p><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">Lorem Ipsum </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">គឺអ្នកនឹងទទួលបានពានរង្វាន់បន្ថែមទៀត។ អ្នកត្រូវតែអានលេខសម្គាល់របស់អ្នក</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">ចុចលើប៊ូតុងកណ្ដុរខាងស្ដាំ។ អ្នកអាចរកមើលអ្វីគ្រប់យ៉ាងដែលអ្នកចង់បាន។ វាត្រូវបានគេស្គាល់ថាជាជម្រើសដ៏ល្អបំផុតដែលមិនមានភាពស្រអាប់។ អ្នកអាចធ្វើបាន។ វាត្រូវបានបង្កើតឡើងដោយឥតគិតថ្លៃ</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">ដែលអាចធ្វើទៅបាន។ វាត្រូវបានគេហៅថាធាតុដ៏សំខាន់មួយដែលត្រូវបានគេហៅថាការបណ្តុះបណ្តាល។ អ្នកមិនមែនជាមនុស្សដែលមិនមែនជាមនុស្សដែលមិនមែនជាអ្នកបង្កើតនិងអ្នកទាំងពីរ។ អ្នកត្រូវចំណាយពេលច្រើនដើម្បីទទួលបានការចាប់អារម្មណ៍។ វាត្រូវបានបង្កើតឡើងនៅលើឆាកអ័រគីយូអេសអេឌិន។ វាត្រូវបានគេស្គាល់ថាជាអ្នកប្រើប្រាស់ច្រើនបំផុត</span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">, ultrices </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">នៅ </span><span style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">tortor </span><span lang=\"KHM\" style=\"color: rgb(99, 107, 111); font-family: \"Khmer OS\"; font-size: 12px; text-align: justify;\">។ វាមិនមែនជាអ្វីដែលអ្នកអាចធ្វើបាននោះទេ។ បុរសម្នាក់នៅក្នុងរឿងអេក។</span><br></p>', NULL, '2020-01-22 08:51:51', '2020-01-22 09:17:25'); -- -------------------------------------------------------- -- -- Table structure for table `promotions` -- CREATE TABLE `promotions` ( `id` int(10) UNSIGNED NOT NULL, `promotionyear` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remark` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `promotions` -- INSERT INTO `promotions` (`id`, `promotionyear`, `remark`, `created_at`, `updated_at`) VALUES (1, '10', '10 percentage', '2019-12-05 09:06:03', NULL), (2, '20', '20 percentage', '2019-12-05 09:06:14', NULL), (3, '100', '100 percentage', '2019-12-05 09:06:37', NULL); -- -------------------------------------------------------- -- -- Table structure for table `semesters` -- CREATE TABLE `semesters` ( `id` int(10) UNSIGNED NOT NULL, `semester` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `semesters` -- INSERT INTO `semesters` (`id`, `semester`, `created_at`, `updated_at`) VALUES (1, '1', '2019-12-12 07:41:08', NULL), (2, '2', '2019-12-12 07:41:12', NULL), (3, '3', '2019-12-12 07:41:15', NULL), (4, '4', '2019-12-12 07:41:21', NULL); -- -------------------------------------------------------- -- -- Table structure for table `sessions` -- CREATE TABLE `sessions` ( `id` int(10) UNSIGNED NOT NULL, `sessionname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `students_infos` -- CREATE TABLE `students_infos` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `parent_id` int(11) NOT NULL, `back_ground_student_id` int(11) NOT NULL, `promotion_id` int(11) NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `khname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sex` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dob` date NOT NULL, `dop` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `nationality` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currentaddress` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `students_infos` -- INSERT INTO `students_infos` (`id`, `user_id`, `parent_id`, `back_ground_student_id`, `promotion_id`, `photo`, `khname`, `enname`, `sex`, `phone`, `email`, `dob`, `dop`, `nationality`, `currentaddress`, `created_at`, `updated_at`) VALUES (1, 1, 1, 1, 1, 'uploads/1/2019-12/user_image_icon_1.jpg', 'ដារា', 'Dara', 'Male', '010878909', '<EMAIL>', '2019-12-23', 'compongchamr', 'khmer', 'PPPP', '2019-12-05 10:01:06', '2019-12-05 10:11:44'), (2, 1, 1, 1, 3, 'uploads/1/2019-12/icon_for_user_12.jpg', 'ស្រី​ នុត', 'srey nut', 'Female', '0948585960', '<EMAIL>', '2019-12-10', 'វដសវសថដ', 'សដវថសដវ', 'សដវថសដវថ', '2019-12-05 10:08:13', '2019-12-05 10:09:51'); -- -------------------------------------------------------- -- -- Table structure for table `subjects` -- CREATE TABLE `subjects` ( `id` int(10) UNSIGNED NOT NULL, `subjectname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `creditname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `sub_phemantaries` -- CREATE TABLE `sub_phemantaries` ( `id` int(10) UNSIGNED NOT NULL, `subject` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `atten` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `midterm` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `assignment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `Final` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `sub_phemantaries` -- INSERT INTO `sub_phemantaries` (`id`, `subject`, `atten`, `midterm`, `assignment`, `Final`, `created_at`, `updated_at`) VALUES (1, 'fundamental Computer', 'yes', 'yes', 'yes', 'yes', '2019-12-12 08:02:32', NULL); -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` int(10) UNSIGNED NOT NULL, `title_kh` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title_en` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_level` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `tags` -- INSERT INTO `tags` (`id`, `title_kh`, `title_en`, `order_level`, `created_at`, `updated_at`) VALUES (1, 'uploads/1/2020-01/auto.png', 'uploads/1/2019-12/auto.png', 1, '2019-12-29 20:56:47', '2020-01-06 08:45:22'), (2, 'uploads/1/2020-01/healthy.png', 'uploads/1/2019-12/healthy.png', 1, '2019-12-29 20:57:01', '2020-01-06 08:44:56'), (3, 'uploads/1/2020-01/vilege.png', 'uploads/1/2019-12/vilege.png', 1, '2019-12-29 20:57:15', '2020-01-06 08:44:10'), (4, 'uploads/1/2020-01/weekly.png', 'uploads/1/2019-12/weekly.png', 1, '2019-12-29 20:57:29', '2020-01-06 08:43:34'); -- -------------------------------------------------------- -- -- Table structure for table `tag_banners` -- CREATE TABLE `tag_banners` ( `id` int(10) UNSIGNED NOT NULL, `tag_id` int(11) NOT NULL, `images` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `tag_banners` -- INSERT INTO `tag_banners` (`id`, `tag_id`, `images`, `status`, `created_at`, `updated_at`) VALUES (1, 1, 'uploads/1/2020-01/5d0b2d9089fb7_1561013640.jpg', 1, '2020-01-03 21:00:21', '2020-01-03 21:46:11'), (2, 2, 'uploads/1/2020-01/life.png', 1, '2020-01-03 21:00:34', '2020-01-03 21:22:16'), (3, 3, 'uploads/1/2020-01/rod.jpg', 1, '2020-01-03 21:00:45', '2020-01-03 21:33:37'), (4, 4, 'uploads/1/2020-01/weeklybanner.jpg', 1, '2020-01-03 21:00:57', '2020-01-03 21:44:29'); -- -------------------------------------------------------- -- -- Table structure for table `years` -- CREATE TABLE `years` ( `id` int(10) UNSIGNED NOT NULL, `year` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `academics` -- ALTER TABLE `academics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `academic_details` -- ALTER TABLE `academic_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `ads_positions` -- ALTER TABLE `ads_positions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `ads_posts` -- ALTER TABLE `ads_posts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `articles` -- ALTER TABLE `articles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `back_ground_students` -- ALTER TABLE `back_ground_students` ADD PRIMARY KEY (`id`); -- -- Indexes for table `batches` -- ALTER TABLE `batches` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `classes` -- ALTER TABLE `classes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_apicustom` -- ALTER TABLE `cms_apicustom` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_apikey` -- ALTER TABLE `cms_apikey` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_dashboard` -- ALTER TABLE `cms_dashboard` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_email_queues` -- ALTER TABLE `cms_email_queues` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_email_templates` -- ALTER TABLE `cms_email_templates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_logs` -- ALTER TABLE `cms_logs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_menus` -- ALTER TABLE `cms_menus` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_menus_privileges` -- ALTER TABLE `cms_menus_privileges` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_moduls` -- ALTER TABLE `cms_moduls` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_notifications` -- ALTER TABLE `cms_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_privileges` -- ALTER TABLE `cms_privileges` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_privileges_roles` -- ALTER TABLE `cms_privileges_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_settings` -- ALTER TABLE `cms_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_statistics` -- ALTER TABLE `cms_statistics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_statistic_components` -- ALTER TABLE `cms_statistic_components` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cms_users` -- ALTER TABLE `cms_users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `comments` -- ALTER TABLE `comments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `degrees` -- ALTER TABLE `degrees` ADD PRIMARY KEY (`id`); -- -- Indexes for table `faculties` -- ALTER TABLE `faculties` ADD PRIMARY KEY (`id`); -- -- Indexes for table `groups` -- ALTER TABLE `groups` ADD PRIMARY KEY (`id`); -- -- Indexes for table `majors` -- ALTER TABLE `majors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `parents` -- ALTER TABLE `parents` ADD PRIMARY KEY (`id`); -- -- Indexes for table `payments` -- ALTER TABLE `payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `post_tags` -- ALTER TABLE `post_tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `promotions` -- ALTER TABLE `promotions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `semesters` -- ALTER TABLE `semesters` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sessions` -- ALTER TABLE `sessions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `students_infos` -- ALTER TABLE `students_infos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subjects` -- ALTER TABLE `subjects` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sub_phemantaries` -- ALTER TABLE `sub_phemantaries` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tag_banners` -- ALTER TABLE `tag_banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `years` -- ALTER TABLE `years` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `academics` -- ALTER TABLE `academics` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `academic_details` -- ALTER TABLE `academic_details` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `ads_positions` -- ALTER TABLE `ads_positions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `ads_posts` -- ALTER TABLE `ads_posts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT for table `articles` -- ALTER TABLE `articles` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46; -- -- AUTO_INCREMENT for table `back_ground_students` -- ALTER TABLE `back_ground_students` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `batches` -- ALTER TABLE `batches` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `classes` -- ALTER TABLE `classes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cms_apicustom` -- ALTER TABLE `cms_apicustom` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cms_apikey` -- ALTER TABLE `cms_apikey` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cms_dashboard` -- ALTER TABLE `cms_dashboard` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cms_email_queues` -- ALTER TABLE `cms_email_queues` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cms_email_templates` -- ALTER TABLE `cms_email_templates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `cms_logs` -- ALTER TABLE `cms_logs` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=280; -- -- AUTO_INCREMENT for table `cms_menus` -- ALTER TABLE `cms_menus` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; -- -- AUTO_INCREMENT for table `cms_menus_privileges` -- ALTER TABLE `cms_menus_privileges` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38; -- -- AUTO_INCREMENT for table `cms_moduls` -- ALTER TABLE `cms_moduls` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `cms_notifications` -- ALTER TABLE `cms_notifications` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cms_privileges` -- ALTER TABLE `cms_privileges` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `cms_privileges_roles` -- ALTER TABLE `cms_privileges_roles` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `cms_settings` -- ALTER TABLE `cms_settings` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT for table `cms_statistics` -- ALTER TABLE `cms_statistics` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cms_statistic_components` -- ALTER TABLE `cms_statistic_components` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cms_users` -- ALTER TABLE `cms_users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `comments` -- ALTER TABLE `comments` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=94; -- -- AUTO_INCREMENT for table `degrees` -- ALTER TABLE `degrees` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `faculties` -- ALTER TABLE `faculties` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `groups` -- ALTER TABLE `groups` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `majors` -- ALTER TABLE `majors` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=52; -- -- AUTO_INCREMENT for table `parents` -- ALTER TABLE `parents` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `payments` -- ALTER TABLE `payments` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `post_tags` -- ALTER TABLE `post_tags` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `promotions` -- ALTER TABLE `promotions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `semesters` -- ALTER TABLE `semesters` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `sessions` -- ALTER TABLE `sessions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `students_infos` -- ALTER TABLE `students_infos` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `subjects` -- ALTER TABLE `subjects` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `sub_phemantaries` -- ALTER TABLE `sub_phemantaries` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `tag_banners` -- ALTER TABLE `tag_banners` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `years` -- ALTER TABLE `years` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<gh_stars>0 SELECT b1.name, count(*) FROM site AS s, so_user AS u1, tag AS t1, tag_question AS tq1, question AS q1, badge AS b1, account AS acc WHERE s.site_id = u1.site_id AND s.site_id = b1.site_id AND s.site_id = t1.site_id AND s.site_id = tq1.site_id AND s.site_id = q1.site_id AND t1.id = tq1.tag_id AND q1.id = tq1.question_id AND q1.owner_user_id = u1.id AND acc.id = u1.account_id AND b1.user_id = u1.id AND (q1.view_count >= 100) AND (q1.view_count <= 100000) AND (s.site_name in ('askubuntu', 'math')) AND (t1.name in ('computational-mathematics', 'cryptography', 'formal-languages', 'fourier-series', 'freeze', 'limsup-and-liminf', 'p-adic-number-theory', 'thunderbird', 'xfce')) AND (LOWER(acc.website_url) LIKE ('%in')) GROUP BY b1.name ORDER BY COUNT(*) DESC LIMIT 100
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Feb 18, 2021 at 07:27 AM -- Server version: 10.4.11-MariaDB -- PHP Version: 7.4.4 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `arsip_surat` -- -- -------------------------------------------------------- -- -- Table structure for table `tb_instansi` -- CREATE TABLE `tb_instansi` ( `id_instansi` int(11) NOT NULL, `nama_instansi` varchar(100) NOT NULL, `alamat_instansi` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `tb_instansi` -- INSERT INTO `tb_instansi` (`id_instansi`, `nama_instansi`, `alamat_instansi`) VALUES (9, 'Polsek Bantul', 'Jl. Marsda A. Sutjiptono 109'), (11, 'Koperasi BMT Bina Ihsanul Fikri', 'Jl. Tegalturi no.2, Giwangan, Kec. Umbulharjo, Yogyakarta'), (12, 'Koperasi KSPPS Bina Warga Sejahtera', 'Jl. Raya Sambiroto, Purnomartani, Kec. Kalasan, Kab. Sleman, Yogyakarta'), (13, 'KSPPS BMT Tegalrejo', 'Jl. Karangwaru, Tegalrejo, Yogyakarta'), (14, 'Universitas Teknologi Yogyakarta', 'Jl. Siliwangi (Ringroad Utara) Jombor, Sleman, Yogyakarta'); -- -------------------------------------------------------- -- -- Table structure for table `tb_jabatan` -- CREATE TABLE `tb_jabatan` ( `id_jabatan` int(11) NOT NULL, `nama_jabatan` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `tb_jabatan` -- INSERT INTO `tb_jabatan` (`id_jabatan`, `nama_jabatan`) VALUES (1, 'Ketua'), (2, 'Wakil'), (3, 'Bendahara'), (4, 'Sekretaris'), (5, 'Pengawas Manajemen'), (8, 'Pengawas Syahriah'); -- -------------------------------------------------------- -- -- Table structure for table `tb_jenis_surat` -- CREATE TABLE `tb_jenis_surat` ( `id_js` int(11) NOT NULL, `jenis_surat` varchar(150) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `tb_jenis_surat` -- INSERT INTO `tb_jenis_surat` (`id_js`, `jenis_surat`) VALUES (3, 'Magang'), (5, 'Undangan'), (6, 'Perizinan'), (14, 'Permohonan'); -- -------------------------------------------------------- -- -- Table structure for table `tb_karyawan` -- CREATE TABLE `tb_karyawan` ( `id_karyawan` int(11) NOT NULL, `nama_karyawan` varchar(150) NOT NULL, `id_jabatan` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `tb_karyawan` -- INSERT INTO `tb_karyawan` (`id_karyawan`, `nama_karyawan`, `id_jabatan`) VALUES (1, 'Bandri', 1), (2, '<NAME>, S.E', 4), (3, '<NAME>', 5), (4, '<NAME>', 3), (5, 'Jumirah', 1), (6, '<NAME>, S.ag', 8), (10, 'Septi', 4); -- -------------------------------------------------------- -- -- Table structure for table `tb_surat_keluar` -- CREATE TABLE `tb_surat_keluar` ( `id_surat_keluar` int(11) NOT NULL, `no_surat` varchar(150) NOT NULL, `tgl_surat` date DEFAULT NULL, `id_instansi` int(11) NOT NULL, `id_js` int(11) NOT NULL, `perihal` varchar(150) NOT NULL, `ket` text NOT NULL, `lampiran` varchar(255) NOT NULL, `created` datetime NOT NULL DEFAULT current_timestamp(), `modified` datetime DEFAULT NULL ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `tb_surat_keluar` -- INSERT INTO `tb_surat_keluar` (`id_surat_keluar`, `no_surat`, `tgl_surat`, `id_instansi`, `id_js`, `perihal`, `ket`, `lampiran`, `created`, `modified`) VALUES (1, '063/KSPPS/IX/2019', '2019-09-02', 9, 6, 'Perizinan', 'Permohonan izin', 'example.pdf', '2019-09-02 10:20:33', '2021-01-24 14:42:24'), (2, '001/G/I/2020', '2020-01-19', 11, 5, 'Pelaksaan RAT tahun 2019', 'Rapat anggota tahunan yang dilaksanakan setahun sekali dengan ketentuan yang telah berlaku. ', 'example1.pdf', '2021-02-04 19:55:41', NULL), (3, '001/SU-RAT/BWS/2020', '2020-01-23', 12, 5, 'Undangan rapat anggota tahunan (RAT)KSPPS Bina Warga Sejahtera', 'Undangan rapat tahunan yang akan dilaksanakan sesuai dengan aturan yang berlaku.', 'example2.pdf', '2021-02-04 20:00:15', NULL), (4, '009/KOP/GKPRI/2020', '2020-01-28', 9, 5, 'Undangan Worksop', 'Worksop', 'example5.pdf', '2021-02-04 20:03:42', '2021-02-04 23:23:50'), (5, '1429/F.TIE-UTY/D-KI/II/2020', '2020-02-03', 14, 6, 'Izin Melaksanakan Kerja Praktek', 'Perizinan Mahasiswa Universitas Teknologi Yogyakarta untuk melakukan kerja praktek atau penelitian di Koperasi BMT Sehati Bantul', 'example4.pdf', '2021-02-04 20:07:50', NULL); -- -------------------------------------------------------- -- -- Table structure for table `tb_surat_masuk` -- CREATE TABLE `tb_surat_masuk` ( `id_surat_masuk` int(11) NOT NULL, `no_surat` varchar(150) NOT NULL, `tgl_surat` date DEFAULT NULL, `id_instansi` int(11) NOT NULL, `id_js` int(11) NOT NULL, `perihal` varchar(150) NOT NULL, `ket` text NOT NULL, `lampiran` varchar(255) NOT NULL, `created` datetime NOT NULL DEFAULT current_timestamp(), `modified` datetime DEFAULT NULL ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `tb_surat_masuk` -- INSERT INTO `tb_surat_masuk` (`id_surat_masuk`, `no_surat`, `tgl_surat`, `id_instansi`, `id_js`, `perihal`, `ket`, `lampiran`, `created`, `modified`) VALUES (5, '001/G/I/2020', '2020-01-19', 11, 5, 'Rapat', 'Pelaksanaan Rapat Anggota Tahunan', 'example.pdf', '2020-01-19 12:01:24', '2021-01-24 14:51:35'), (6, '1429/F.TIE-UTY/D-K1/I/2020', '2020-01-21', 14, 3, 'Magang', 'Izin melaksanakan magang kerja praktik', 'surat_uty_versi_new.pdf', '2020-02-03 11:13:36', '2021-01-24 14:53:23'), (7, 'UTY/2021', '2021-01-25', 14, 3, 'Magang', 'Magang Kerja Praktik', 'example1.pdf', '2021-01-25 16:57:01', NULL), (9, '006/Kop.SMJ/IV2018', '2020-10-13', 12, 14, 'Permohonan Kegiatan', 'Mengajukan permohonan kegiatan pendidikan dan pelatihan kewirausahaan, yaitu wira usaha pemula. ', 'example3.pdf', '2021-02-04 19:52:26', '2021-02-04 22:32:09'), (10, 'UTY/K1/2021', '2021-02-04', 14, 3, 'Magang', 'Magang Kerja Praktik', 'example4.pdf', '2021-02-05 16:50:27', NULL); -- -------------------------------------------------------- -- -- Table structure for table `tb_user` -- CREATE TABLE `tb_user` ( `id` int(11) NOT NULL, `username` varchar(50) NOT NULL, `password` varchar(50) NOT NULL, `level` enum('admin','ketua') NOT NULL, `id_karyawan` int(11) NOT NULL, `created` datetime NOT NULL DEFAULT current_timestamp(), `modified` datetime DEFAULT NULL ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `tb_user` -- INSERT INTO `tb_user` (`id`, `username`, `password`, `level`, `id_karyawan`, `created`, `modified`) VALUES (8, 'widodo', '<PASSWORD>', 'admin', 2, '0000-00-00 00:00:00', '2021-01-15 13:55:03'), (29, 'bandri', '00719910bb805741e4b7f28527ecb3ad', 'ketua', 1, '2021-02-04 22:25:58', NULL), (30, 'jumi', '0c47c1fb234be7df3f6545e5f2153400', 'ketua', 5, '2021-02-04 22:27:12', NULL), (31, 'septi', '00719910bb805741e4b7f28527ecb3ad', 'ketua', 10, '2021-02-05 16:52:41', NULL); -- -- Indexes for dumped tables -- -- -- Indexes for table `tb_instansi` -- ALTER TABLE `tb_instansi` ADD PRIMARY KEY (`id_instansi`); -- -- Indexes for table `tb_jabatan` -- ALTER TABLE `tb_jabatan` ADD PRIMARY KEY (`id_jabatan`); -- -- Indexes for table `tb_jenis_surat` -- ALTER TABLE `tb_jenis_surat` ADD PRIMARY KEY (`id_js`); -- -- Indexes for table `tb_karyawan` -- ALTER TABLE `tb_karyawan` ADD PRIMARY KEY (`id_karyawan`), ADD KEY `id_jabatan` (`id_jabatan`); -- -- Indexes for table `tb_surat_keluar` -- ALTER TABLE `tb_surat_keluar` ADD PRIMARY KEY (`id_surat_keluar`), ADD KEY `id_instansi2` (`id_instansi`), ADD KEY `id_js2` (`id_js`); -- -- Indexes for table `tb_surat_masuk` -- ALTER TABLE `tb_surat_masuk` ADD PRIMARY KEY (`id_surat_masuk`), ADD KEY `id_instansi` (`id_instansi`), ADD KEY `id_js` (`id_js`); -- -- Indexes for table `tb_user` -- ALTER TABLE `tb_user` ADD PRIMARY KEY (`id`), ADD KEY `id_karyawan` (`id_karyawan`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `tb_instansi` -- ALTER TABLE `tb_instansi` MODIFY `id_instansi` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `tb_jabatan` -- ALTER TABLE `tb_jabatan` MODIFY `id_jabatan` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `tb_jenis_surat` -- ALTER TABLE `tb_jenis_surat` MODIFY `id_js` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `tb_karyawan` -- ALTER TABLE `tb_karyawan` MODIFY `id_karyawan` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `tb_surat_keluar` -- ALTER TABLE `tb_surat_keluar` MODIFY `id_surat_keluar` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `tb_surat_masuk` -- ALTER TABLE `tb_surat_masuk` MODIFY `id_surat_masuk` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `tb_user` -- ALTER TABLE `tb_user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32; -- -- Constraints for dumped tables -- -- -- Constraints for table `tb_karyawan` -- ALTER TABLE `tb_karyawan` ADD CONSTRAINT `id_jabatan` FOREIGN KEY (`id_jabatan`) REFERENCES `tb_jabatan` (`id_jabatan`); -- -- Constraints for table `tb_surat_keluar` -- ALTER TABLE `tb_surat_keluar` ADD CONSTRAINT `id_instans2i` FOREIGN KEY (`id_instansi`) REFERENCES `tb_instansi` (`id_instansi`), ADD CONSTRAINT `id_js2` FOREIGN KEY (`id_js`) REFERENCES `tb_jenis_surat` (`id_js`); -- -- Constraints for table `tb_surat_masuk` -- ALTER TABLE `tb_surat_masuk` ADD CONSTRAINT `id_instansi` FOREIGN KEY (`id_instansi`) REFERENCES `tb_instansi` (`id_instansi`), ADD CONSTRAINT `id_js` FOREIGN KEY (`id_js`) REFERENCES `tb_jenis_surat` (`id_js`); -- -- Constraints for table `tb_user` -- ALTER TABLE `tb_user` ADD CONSTRAINT `tb_user_ibfk_1` FOREIGN KEY (`id_karyawan`) REFERENCES `tb_karyawan` (`id_karyawan`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- phpMyAdmin SQL Dump -- version 4.0.10deb1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Aug 23, 2016 at 06:55 PM -- Server version: 5.6.30-0ubuntu0.14.04.1 -- PHP Version: 5.5.9-1ubuntu4.17 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `apidata` -- -- -------------------------------------------------------- -- -- Table structure for table `active_login` -- CREATE TABLE IF NOT EXISTS `active_login` ( `keys_id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `key` varchar(40) NOT NULL, `device_type` enum('1','2','3') NOT NULL DEFAULT '1' COMMENT '1-Web,2-Android,3-IOS', `device_id` varchar(255) DEFAULT NULL, `level` int(2) NOT NULL, `ignore_limits` tinyint(1) NOT NULL DEFAULT '0', `date_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_created` datetime DEFAULT NULL, PRIMARY KEY (`keys_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -------------------------------------------------------- -- -- Table structure for table `projects` -- CREATE TABLE IF NOT EXISTS `projects` ( `pid` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `description` text NOT NULL, `summary` varchar(255) NOT NULL, `user_id` text NOT NULL, `status` enum('0','1') NOT NULL DEFAULT '1', `created_date` text NOT NULL, `modified_date` datetime NOT NULL, PRIMARY KEY (`pid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -------------------------------------------------------- -- -- Table structure for table `relation_project_user` -- CREATE TABLE IF NOT EXISTS `relation_project_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `p_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `role` int(11) NOT NULL, `created_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ; -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE IF NOT EXISTS `roles` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT '0', `name` varchar(30) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE IF NOT EXISTS `user` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `roles` int(11) NOT NULL DEFAULT '3', `user_unique_id` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `first_name` varchar(50) DEFAULT NULL, `last_name` varchar(50) DEFAULT NULL, `user_name` varchar(150) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `password` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `dob` date DEFAULT NULL, `facebook_id` varchar(255) DEFAULT NULL, `phone_no` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `country` int(11) DEFAULT NULL, `state` int(11) DEFAULT NULL, `address` varchar(200) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `city` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `zip_code` int(8) DEFAULT NULL, `image` varchar(1000) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL COMMENT 'Image complete url will come including http', `status` enum('0','1','2','3') CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '1' COMMENT '0-Inactive, 1-Active , 2-Not verfied email, 3-Deleted', `new_password_key` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `new_password_requested` datetime DEFAULT NULL, `last_login` datetime DEFAULT NULL, `last_ip` varchar(40) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `added_date` datetime DEFAULT NULL, `modified_date` datetime DEFAULT NULL, `language` varchar(20) DEFAULT NULL, PRIMARY KEY (`user_id`), UNIQUE KEY `user_name` (`user_name`), UNIQUE KEY `facebook_id` (`facebook_id`), UNIQUE KEY `email` (`email`), KEY `user_name_2` (`user_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
CREATE OR REPLACE FUNCTION Format_Adyen_Authorise_Request( _MerchantAccount text, _CurrencyCode char(3), _PaymentAmount numeric, _Reference text, _ShopperIP inet, _CardCVC text, _ShopperEmail text, _ShopperReference text, _CardNumber text, _CardExpiryMonth integer, _CardExpiryYear integer, _CardHolderName text, _HTTP_ACCEPT text, _HTTP_USER_AGENT text ) RETURNS xml AS $BODY$ DECLARE BEGIN RETURN xmlelement( name "soap:Envelope", xmlattributes( 'http://schemas.xmlsoap.org/soap/envelope/' AS "xmlns:soap", 'http://www.w3.org/2001/XMLSchema' AS "xmlns:xsd", 'http://www.w3.org/2001/XMLSchema-instance' AS "xmlns:xsi" ), xmlelement( name "soap:Body", xmlelement( name "ns1:authorise", xmlattributes('http://payment.services.adyen.com' AS "xmlns:ns1"), xmlelement( name "ns1:paymentRequest", xmlelement( name "amount", xmlattributes('http://payment.services.adyen.com' AS "xmlns"), xmlelement( name "currency", xmlattributes('http://common.services.adyen.com' AS "xmlns"), _CurrencyCode ), xmlelement( name "value", xmlattributes('http://common.services.adyen.com' AS "xmlns"), _PaymentAmount ) ), xmlelement( name "card", xmlattributes('http://payment.services.adyen.com' AS "xmlns"), xmlelement( name "cvc", _CardCVC ), xmlelement( name "expiryMonth", _CardExpiryMonth ), xmlelement( name "expiryYear", _CardExpiryYear ), xmlelement( name "holderName", _CardHolderName ), xmlelement( name "number", _CardNumber ) ), xmlelement( name "browserInfo", xmlattributes('http://payment.services.adyen.com' AS "xmlns"), xmlelement( name "acceptHeader", xmlattributes('http://common.services.adyen.com' AS "xmlns"), _HTTP_ACCEPT ), xmlelement( name "userAgent", xmlattributes('http://common.services.adyen.com' AS "xmlns"), _HTTP_USER_AGENT ) ), xmlelement( name "merchantAccount", xmlattributes('http://payment.services.adyen.com' AS "xmlns"), _MerchantAccount ), xmlelement( name "reference", xmlattributes('http://payment.services.adyen.com' AS "xmlns"), _Reference ), xmlelement( name "shopperEmail", xmlattributes('http://payment.services.adyen.com' AS "xmlns"), _ShopperEmail ), xmlelement( name "shopperIP", xmlattributes('http://payment.services.adyen.com' AS "xmlns"), _ShopperIP ), xmlelement( name "shopperReference", xmlattributes('http://payment.services.adyen.com' AS "xmlns"), _ShopperReference ) ) ) ) ); END; $BODY$ LANGUAGE plpgsql;
CREATE TABLE [dbo].[SalaryScale] ( [SalaryScaleID] INT IDENTITY (101, 1) NOT NULL, [TitleCode] CHAR (4) NOT NULL, [EffectiveDate] DATETIME NULL, [BargainingCode] CHAR (2) NULL, [NumSalarySteps] SMALLINT NULL, [LaborMarketWAS] MONEY NULL, [LaborMarketMidAnnual] MONEY NULL, [CollegeAvgAnnual] MONEY NULL, [CampusAvgAnnual] MONEY NULL, [SalaryGrade] CHAR (4) NULL, [DataSource] VARCHAR (5) NULL ); GO CREATE UNIQUE NONCLUSTERED INDEX [SalaryScale_TitleCodeEffectiveDateUDX] ON [dbo].[SalaryScale]([TitleCode] ASC, [EffectiveDate] ASC);
<reponame>miguelemosreverte/PCS<filename>assets/scripts/cassandra/domain/read_side/tables/buc_domicilios_sujeto.cql CREATE TABLE IF NOT EXISTS read_side.buc_domicilios_sujeto ( bds_suj_identificador text, bds_dom_id text, bds_barrio text, bds_calle text, bds_codigo_postal text, bds_dpto text, bds_estado text, bds_kilometro text, bds_localidad text, bds_lote text, bds_manzana text, bds_piso text, bds_provincia text, bds_puerta text, bds_tipo text, bds_torre text, bds_observaciones text, PRIMARY KEY (bds_suj_identificador, bds_dom_id) ) WITH CLUSTERING ORDER BY (bds_dom_id ASC) AND bloom_filter_fp_chance = 0.01 AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} AND comment = '' AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} AND compression = {'chunk_length_in_kb': '64', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} AND crc_check_chance = 1.0 AND dclocal_read_repair_chance = 0.1 AND default_time_to_live = 0 AND gc_grace_seconds = 864000 AND max_index_interval = 2048 AND memtable_flush_period_in_ms = 0 AND min_index_interval = 128 AND read_repair_chance = 0.0 AND speculative_retry = '99PERCENTILE';
<reponame>shelbourn/Udemy-Projects<filename>oracleDB12cSQL/instructorAssets/chapter-14-sql-part-3.sql -- rename a column CREATE TABLE XX_DEPT_TABLE ( DEPTNO NUMBER, DANAME VARCHAR2(100) ); SELECT * FROM XX_DEPT_TABLE; ALTER TABLE XX_DEPT_TABLE RENAME column DANAME TO DEPT_NAME; SELECT * FROM XX_DEPT_TABLE; --rename the object ( table) RENAME XX_DEPT_TABLE TO XX_DEPT_T; SELECT * FROM XX_DEPT_T; select * from XX_DEPT_TABLE;
<filename>migrations/001-initial-schema.sql<gh_stars>0 -- Up CREATE TABLE daily(name TEXT NOT NULL, completed INTEGER NOT NULL, lastUpdated TEXT NOT NULL); CREATE TABLE weekly(name TEXT NOT NULL, completed INTEGER NOT NULL, lastUpdated TEXT NOT NULL); CREATE TABLE longterm(name TEXT NOT NULL, completed INTEGER NOT NULL, lastUpdated TEXT NOT NULL); -- Down DROP TABLE longterm; DROP TABLE weekly; DROP TABLE daily;
ALTER TABLE [dbo].[UseCaseXRequirements] ADD CONSTRAINT [FK_UseCaseXRequirements_Requirements] FOREIGN KEY ([RequirementId]) REFERENCES [dbo].[Requirements] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION;
<filename>1-Queries/7-is-nul.sql -- Los valores desconocidos se indican mediante NULL -- No es posible probar NULLvalores con operadores de comparación, como =y != -- tendremos que usar estos operadores: -- IS NULL -- IS NOT NULL SELECT name FROM movies WHERE imdb_rating IS NOT NULL;
CREATE OR REPLACE FUNCTION ts.insertvariable(_taxonid integer, _variableelementid integer, _variableunitsid integer DEFAULT NULL::integer, _variablecontextid integer DEFAULT NULL::integer) RETURNS integer LANGUAGE sql AS $function$ INSERT INTO ndb.variables (taxonid, variableelementid, variableunitsid, variablecontextid) VALUES (_taxonid, _variableelementid, _variableunitsid, _variablecontextid) RETURNING variableid $function$
<filename>src/main/resources/db/migration/V18__Update_Receipt.sql ALTER TABLE receipt_detail DROP COLUMN amount_paid;
<reponame>jdkoren/sqlite-parser -- randexpr1.test -- -- db eval {SELECT +case when (not exists(select 1 from t1 where (abs(t1.a+coalesce((select max(b+ -case when e=t1.f then (abs(d)/abs(t1.e)) when not exists(select 1 from t1 where 17<t1.c) then d else f end & -(t1.e) & 13*e) from t1 where f in (select t1.e from t1 union select t1.f from t1)),d) & 11)/abs(t1.b))-b not between b and t1.d) and t1.d>t1.c) then e else e end FROM t1 WHERE NOT (not t1.d-d+case b when t1.a+t1.a then t1.f+ -t1.e else 11+b*coalesce((select max(t1.f) from t1 where 11>= -f+t1.d),t1.c)*19 end not between d and t1.c-(11)+17)} SELECT +case when (not exists(select 1 from t1 where (abs(t1.a+coalesce((select max(b+ -case when e=t1.f then (abs(d)/abs(t1.e)) when not exists(select 1 from t1 where 17<t1.c) then d else f end & -(t1.e) & 13*e) from t1 where f in (select t1.e from t1 union select t1.f from t1)),d) & 11)/abs(t1.b))-b not between b and t1.d) and t1.d>t1.c) then e else e end FROM t1 WHERE NOT (not t1.d-d+case b when t1.a+t1.a then t1.f+ -t1.e else 11+b*coalesce((select max(t1.f) from t1 where 11>= -f+t1.d),t1.c)*19 end not between d and t1.c-(11)+17)
<filename>packages/acs-templating/sql/oracle/demo-create.sql create sequence ad_template_sample_users_seq start with 5 increment by 1; create table ad_template_sample_users ( user_id integer constraint ad_template_sample_users_pk primary key, first_name varchar2(20), last_name varchar2(20), address1 varchar2(40), address2 varchar2(40), city varchar2(40), state varchar2(2) ); insert into ad_template_sample_users values (1, 'Fred', 'Jones', '101 Main St.', NULL, 'Orange', 'CA'); insert into ad_template_sample_users values (2, 'Frieda', 'Mae', 'Lexington Hospital', '102 Central St.', 'Orange', 'CA'); insert into ad_template_sample_users values (3, 'Sally', 'Saxberg', 'Board of Supervisors', '1933 Fruitvale St.', 'Woodstock', 'CA'); insert into ad_template_sample_users values (4, 'Yoruba', 'Diaz', '12 Magic Ave.', NULL, 'Lariot', 'WY'); -- load jiml's notes-like package @@ template-demo-notes-create.sql @@ template-demo-notes-sample.sql
-- Data model to support content ACS Templating System -- Copyright (C) 1999-2000 ArsDigita Corporation -- Author: <NAME> (<EMAIL>) -- $Id: acs-templating-create.sql,v 1.5 2015/12/04 13:50:13 cvs Exp $ -- This is free software distributed under the terms of the GNU Public -- License. Full text of the license is available from the GNU Project: -- http://www.fsf.org/copyleft/gpl.html \i demo-create.sql
create table person( name VARCHAR(30) PRIMARY KEY, age INT ); create table address( person VARCHAR(30), street VARCHAR(30) );
CREATE TABLE [dbo].[MVReportedPoll] ( ReportedPollID int identity(1,1) constraint pk_MVReportedPoll primary key clustered ,PollID int not null constraint fk_MVPoll_MVReportedPoll references dbo.MVPoll(PollID) ,ReportedByUserID int not null constraint fk_ReportedByUser_MVReportedPoll references dbo.MVUser(UserID) ,CurrentStateAdminUserID int null constraint fk_CurrentStateAdminUser_MVReportedPoll references dbo.MVUser(UserID) ,DateReported datetime2 not null constraint df_DateReported default(getutcdate()) ,DateCurrentStateChanged datetime2 null ,ReportedPollStateOptionID int not null constraint fk_MVReportedPollStateOption_MVReportedPoll references dbo.MVReportedPollStateOption(ReportedPollStateOptionID) ,ReportComments nvarchar(500) )
-- 内容管理留言本表 drop table if exists cms_guestbook; create table cms_guestbook ( id bigint not null auto_increment comment '编号', type varchar(100) not null comment '留言分类(咨询、建议、投诉、其它)', content varchar(255) not null comment '留言内容', name varchar(100) not null comment '姓名', email varchar(100) not null comment '邮箱', phone varchar(100) not null comment '电话', workunit varchar(100) not null comment '单位', ip varchar(100) not null comment 'IP', create_date timestamp default now() comment '留言时间', re_user_id bigint comment '回复人', re_date timestamp null comment '回复时间', re_content varchar(100) comment '回复内容', status char(1) default '0' comment '状态(0:发布;1:作废;2:审核;)', primary key (id), key (status) ) engine=innodb comment '内容管理留言本表'; -- 内容管理内容评论表 drop table if exists cms_comment; create table cms_comment ( id bigint not null auto_increment comment '编号', module varchar(20) not null comment '内容模型(article:文章;picture:图片;download:下载)', content_id bigint not null comment '归属分类内容的编号(Article.id、Photo.id、Download.id)', title varchar(255) comment '归属分类内容的标题(Article.title、Photo.title、Download.title)', content varchar(255) comment '评论内容', name varchar(100) comment '评论姓名', ip varchar(100) comment '评论IP', create_date timestamp default now() comment '评论时间', audit_user_id bigint comment '审核人', audit_date timestamp null comment '审核时间', status char(1) default '0' comment '删除标记(0:发布;1:作废;2:审核;)', primary key (id), key (module), key (content_id), key (status) ) engine=innodb comment '内容管理内容评论表'; -- 内容管理链接模型表 drop table if exists cms_link; create table cms_link ( id bigint not null auto_increment comment '编号', category_id bigint not null comment '分类编号', user_id bigint not null comment '发布者', title varchar(255) not null comment '链接名称', color varchar(50) default '' comment '标题颜色(red:红色;green:绿色;blue:蓝色;yellow:黄色;orange:橙色)', image varchar(255) default '' comment '如果上传了图片,则显示为图片链接', href varchar(255) default '' comment '链接地址', remarks varchar(255) default '' comment '备注', status char(1) default '' comment '状态(0:发布;1:作废;2:审核;)', weight int default 0 comment '权重,越大越靠前', input_date timestamp default now() comment '录入时间', update_date timestamp comment '更新时间', primary key (id), key (user_id), key (title), key (status), key (weight), key (input_date), key (update_date) ) engine=innodb comment '内容管理链接模型表'; -- 内容管理文章模型表 drop table if exists cms_article; create table cms_article ( id bigint not null auto_increment comment '编号', category_id bigint not null comment '分类编号', user_id bigint not null comment '发布者', title varchar(255) not null comment '标题', color varchar(50) default '' comment '标题颜色(red:红色;green:绿色;blue:蓝色;yellow:黄色;orange:橙色)', thumb varchar(255) default '' comment '缩略图', keywords varchar(255) default '' comment '关键字', desciption varchar(255) default '' comment '描述、摘要', status char(1) default '' comment '状态(0:发布;1:作废;2:审核;)', weight int default 0 comment '权重,越大越靠前', hits int default 0 comment '点击数', posid varchar(10) comment '推荐位,多选(1:首页焦点图;2:栏目页文章推荐;)', input_date timestamp default now() comment '录入时间', update_date timestamp comment '更新时间', primary key (id), key (user_id), key (title), key (keywords), key (status), key (weight), key (input_date), key (update_date) ) engine=innodb comment '内容管理文章模型表'; -- 内容管理文章模型副表 drop table if exists cms_article_data; create table cms_article_data ( id bigint not null auto_increment comment '编号', content mediumtext comment '内容', copyfrom varchar(255) comment '来源', relation varchar(255) comment '相关文章', allow_comment char(1) comment '是否允许评论', primary key (id) ) engine=innodb comment '内容管理文章模型表'; -- 内容管理栏目表 drop table if exists cms_category; create table cms_category ( id bigint not null auto_increment comment '编号', site_id bigint default '1' comment '站点编号', parent_id bigint not null comment '父级编号', parent_ids varchar(255) not null comment '所有父级编号', module varchar(20) not null comment '栏目模块(article:文章;picture:图片;download:下载;link:链接;special:专题)', name varchar(100) not null comment '栏目名称', image varchar(255) default '' comment '栏目图片', href varchar(255) not null comment '链接', target varchar(20) not null comment '目标( _blank、_self、_parent、_top)', desciption varchar(255) default '' comment '描述,填写有助于搜索引擎优化', keywords varchar(255) default '' comment '关键字,填写有助于搜索引擎优化', sort int default 30 comment '排序(升序)', in_menu char(1) default '1' comment '是否在导航中显示(1:显示;0:不显示)', in_list char(1) default '1' comment '是否在分类页中显示列表(1:显示;0:不显示)', show_modes char(1) default '0' comment '展现方式(0:有子栏目显示栏目列表,无子栏目显示内容列表;1:首栏目内容列表;2:栏目第一条内容)', allow_comment char(1) comment '是否允许评论', del_flag char(1) default '0' comment '删除标记(0:正常;1:删除)', primary key (id), key (parent_id), key (parent_ids), key (module), key (name), key (sort), key (del_flag) ) engine=innodb comment '内容管理栏目表'; -- 内容管理站点配置表 drop table if exists cms_site; create table cms_site ( id bigint not null auto_increment comment '编号', name varchar(100) not null comment '站点名称', title varchar(100) not null comment '站点标题', desciption varchar(255) default '' comment '描述,填写有助于搜索引擎优化', keywords varchar(255) default '' comment '关键字,填写有助于搜索引擎优化', theme varchar(255) default 'default' comment '主题', copyright mediumtext comment '版权信息', del_flag char(1) default '0' comment '删除标记(0:正常;1:删除)', primary key (id), key (del_flag) ) engine=innodb comment '内容管理站点配置表'; -- 系统上传文件表 --drop table if exists sys_attachment; --create table sys_attachment ( -- id bigint not null auto_increment comment '编号', -- area_id bigint not null comment '归属区域', -- office_id bigint not null comment '归属部门', -- user_id bigint not null comment '上传者', -- name varchar(255) not null comment '文件名', -- file_name varchar(255) not null comment '上传后的文件名', -- file_ext varchar(16) not null comment '扩展名', -- file_type varchar(100) not null comment '文件类型', -- file_size bigint not null comment '文件大小', -- file_path varchar(255) not null comment '存放路径(/files/year/month/area_office_user/)', -- create_date timestamp default now() comment '上传时间', -- del_flag char(1) default '0' comment '删除标记(0:正常;1:删除)', -- primary key (id), -- key (area_id), -- key (office_id), -- key (user_id), -- key (del_flag) --) engine=innodb comment '系统上传文件表'; -- 系统字典表 drop table if exists sys_dict; create table sys_dict ( id bigint not null auto_increment comment '编号', label varchar(100) not null comment '标签', value varchar(100) not null comment '键值', type varchar(100) not null comment '类型', desciption varchar(100) not null comment '描述', sort int not null comment '排序(升序)', del_flag char(1) default '0' comment '删除标记(0:正常;1:删除)', primary key (id), key (value), key (label), key (del_flag) ) engine=innodb comment '系统字典表'; -- 系统区域表 drop table if exists sys_area; create table sys_area ( id bigint not null auto_increment comment '编号', parent_id bigint not null comment '父级编号', parent_ids varchar(255) not null comment '所有父级编号', code varchar(100) comment '区域编码', name varchar(100) comment '区域名称', remarks varchar(255) comment '备注', del_flag char(1) default '0' comment '删除标记(0:正常;1:删除)', primary key (id), key (parent_id), key (parent_ids), key (del_flag) ) engine=innodb comment '系统区域表'; -- 系统部门表 drop table if exists sys_office; create table sys_office ( id bigint not null auto_increment comment '编号', parent_id bigint not null comment '父级编号', parent_ids varchar(255) not null comment '所有父级编号', area_id bigint not null comment '归属区域', code varchar(100) comment '区域编码', name varchar(100) not null comment '部门名称', remarks varchar(255) comment '备注', del_flag char(1) default '0' comment '删除标记(0:正常;1:删除)', primary key (id), key (parent_id), key (parent_ids), key (del_flag) ) engine=innodb comment '系统部门表'; -- 系统菜单表 drop table if exists sys_menu; create table sys_menu ( id bigint not null auto_increment comment '编号', parent_id bigint not null comment '父级编号', parent_ids varchar(255) not null comment '所有父级编号', name varchar(100) not null comment '菜单名称', href varchar(255) not null comment '链接', target varchar(20) not null comment '目标(mainFrame、 _blank、_self、_parent、_top)', icon varchar(100) not null comment '图标', sort int not null comment '排序(升序)', is_show char(1) not null comment '是否在菜单中显示(1:显示;0:不显示)', permission varchar(200) not null comment '权限标识', del_flag char(1) default '0' comment '删除标记(0:正常;1:删除)', primary key (id), key (parent_id), key (parent_ids), key (del_flag) ) engine=innodb comment '系统菜单表'; -- 系统角色表 drop table if exists sys_role; create table sys_role ( id bigint not null auto_increment comment '编号', name varchar(100) not null comment '名称', del_flag char(1) default '0' comment '删除标记(0:正常;1:删除)', primary key (id), key (del_flag) ) engine=innodb comment '系统角色表'; -- 系统角色与菜单关联表 drop table if exists sys_role_menu; create table sys_role_menu ( role_id bigint not null comment '角色编号', menu_id bigint not null comment '菜单编号', primary key (role_id,menu_id) ) engine=innodb comment '系统角色与菜单关联表'; -- 系统角色与菜单关联表 drop table if exists sys_role_category; create table sys_role_category ( role_id bigint(20) not null comment '角色编号', category_id bigint(20) not null comment '内容分类编号', primary key (role_id,category_id) ) engine=innodb comment '系统角色与内容分类关联表'; -- 系统用户表 drop table if exists sys_user; create table sys_user ( id bigint not null auto_increment comment '编号', area_id bigint not null comment '区域编号', office_id bigint not null comment '部门编号', login_name varchar(100) not null comment '登录名', password varchar(100) comment '密码', name varchar(100) comment '姓名', email varchar(200) comment '邮箱', phone varchar(200) comment '电话', mobile varchar(200) comment '手机', remarks varchar(255) default '' comment '备注', user_type varchar(100) default '' comment '用户类型', create_date timestamp default now() comment '创建时间', del_flag char(1) default '0' comment '删除标记(0:正常;1:删除)', login_ip varchar(100) comment '最后登陆IP', login_date datetime comment '最后登陆时间', `taobao_user_nick` varchar(255) DEFAULT NULL, primary key (id), key (area_id), key (office_id), key (login_name), key (del_flag), KEY `<KEY>` (`taobao_user_nick`), CONSTRAINT `FK74A81DFD79C9C55C` FOREIGN KEY (`taobao_user_nick`) REFERENCES `top_user` (`taobao_user_nick`), ) engine=innodb comment '系统用户表'; -- 系统用户与角色关联表 drop table if exists sys_user_role; create table sys_user_role ( user_id bigint not null comment '用户编号', role_id bigint not null comment '角色编号', primary key (user_id,role_id) ) engine=innodb comment '系统用户与角色关联表'; -- ---------------------------- -- Table structure for `top_item` -- ---------------------------- DROP TABLE IF EXISTS `top_item`; CREATE TABLE `top_item` ( `num_iid` bigint(20) NOT NULL, `after_sale_id` bigint(20) DEFAULT NULL, `approve_status` varchar(255) DEFAULT NULL, `auction_point` bigint(20) DEFAULT NULL, `auto_fill` varchar(255) DEFAULT NULL, `change_prop` varchar(255) DEFAULT NULL, `cid` bigint(20) DEFAULT NULL, `cod_postage_id` bigint(20) DEFAULT NULL, `created` datetime DEFAULT NULL, `delist_time` datetime DEFAULT NULL, `delivery_time` tinyblob, `description` varchar(255) DEFAULT NULL, `desc_module_info` tinyblob, `detail_url` varchar(255) DEFAULT NULL, `ems_fee` varchar(255) DEFAULT NULL, `express_fee` varchar(255) DEFAULT NULL, `features` varchar(255) DEFAULT NULL, `food_security` tinyblob, `freight_payer` varchar(255) DEFAULT NULL, `global_stock_type` varchar(255) DEFAULT NULL, `has_discount` tinyint(1) DEFAULT NULL, `has_invoice` tinyint(1) DEFAULT NULL, `has_showcase` tinyint(1) DEFAULT NULL, `has_warranty` tinyint(1) DEFAULT NULL, `increment` varchar(255) DEFAULT NULL, `inner_shop_auction_template_id` bigint(20) DEFAULT NULL, `input_pids` varchar(255) DEFAULT NULL, `input_str` varchar(255) DEFAULT NULL, `is3d` tinyint(1) DEFAULT NULL, `is_ex` tinyint(1) DEFAULT NULL, `is_fenxiao` bigint(20) DEFAULT NULL, `is_lightning_consignment` tinyint(1) DEFAULT NULL, `is_prepay` tinyint(1) DEFAULT NULL, `is_taobao` tinyint(1) DEFAULT NULL, `is_timing` tinyint(1) DEFAULT NULL, `is_virtual` tinyint(1) DEFAULT NULL, `is_xinpin` tinyint(1) DEFAULT NULL, `item_size` varchar(255) DEFAULT NULL, `item_weight` varchar(255) DEFAULT NULL, `list_time` datetime DEFAULT NULL, `locality_life` tinyblob, `location` tinyblob, `modified` datetime DEFAULT NULL, `nick` varchar(255) DEFAULT NULL, `num` bigint(20) DEFAULT NULL, `one_station` tinyint(1) DEFAULT NULL, `outer_id` varchar(255) DEFAULT NULL, `outer_shop_auction_template_id` bigint(20) DEFAULT NULL, `paimai_info` tinyblob, `pic_url` varchar(255) DEFAULT NULL, `post_fee` varchar(255) DEFAULT NULL, `postage_id` bigint(20) DEFAULT NULL, `price` varchar(255) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `promoted_service` varchar(255) DEFAULT NULL, `property_alias` varchar(255) DEFAULT NULL, `props` varchar(255) DEFAULT NULL, `props_name` varchar(255) DEFAULT NULL, `score` bigint(20) DEFAULT NULL, `second_kill` varchar(255) DEFAULT NULL, `sell_promise` tinyint(1) DEFAULT NULL, `seller_cids` varchar(255) DEFAULT NULL, `stuff_status` varchar(255) DEFAULT NULL, `sub_stock` bigint(20) DEFAULT NULL, `template_id` varchar(255) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `type` varchar(255) DEFAULT NULL, `valid_thru` bigint(20) DEFAULT NULL, `violation` tinyint(1) DEFAULT NULL, `volume` bigint(20) DEFAULT NULL, `wap_desc` varchar(255) DEFAULT NULL, `wap_detail_url` varchar(255) DEFAULT NULL, `with_hold_quantity` bigint(20) DEFAULT NULL, `ww_status` tinyint(1) DEFAULT NULL, PRIMARY KEY (`num_iid`), KEY `FKC666FFBDC57A7739` (`nick`), CONSTRAINT `FKC666FFBDC57A7739` FOREIGN KEY (`nick`) REFERENCES `top_user` (`taobao_user_nick`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of top_item -- ---------------------------- -- ---------------------------- -- Table structure for `top_item_img` -- ---------------------------- DROP TABLE IF EXISTS `top_item_img`; CREATE TABLE `top_item_img` ( `id` bigint(20) NOT NULL, `created` datetime DEFAULT NULL, `num_iid` bigint(20) DEFAULT NULL, `position` bigint(20) DEFAULT NULL, `url` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `FK3763A041248D0C8` (`num_iid`), CONSTRAINT `FK3763A041248D0C8` FOREIGN KEY (`num_iid`) REFERENCES `top_item` (`num_iid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of top_item_img -- ---------------------------- -- ---------------------------- -- Table structure for `top_prop_img` -- ---------------------------- DROP TABLE IF EXISTS `top_prop_img`; CREATE TABLE `top_prop_img` ( `id` bigint(20) NOT NULL, `created` datetime DEFAULT NULL, `num_iid` bigint(20) DEFAULT NULL, `position` bigint(20) DEFAULT NULL, `properties` varchar(255) DEFAULT NULL, `url` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `FKB5FA2091248D0C8` (`num_iid`), CONSTRAINT `FKB5FA2091248D0C8` FOREIGN KEY (`num_iid`) REFERENCES `top_item` (`num_iid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of top_prop_img -- ---------------------------- -- ---------------------------- -- Table structure for `top_sku` -- ---------------------------- DROP TABLE IF EXISTS `top_sku`; CREATE TABLE `top_sku` ( `sku_id` bigint(20) NOT NULL, `created` varchar(255) DEFAULT NULL, `iid` varchar(255) DEFAULT NULL, `modified` varchar(255) DEFAULT NULL, `num_iid` bigint(20) DEFAULT NULL, `outer_id` varchar(255) DEFAULT NULL, `price` varchar(255) DEFAULT NULL, `properties` varchar(255) DEFAULT NULL, `properties_name` varchar(255) DEFAULT NULL, `quantity` bigint(20) DEFAULT NULL, `sku_delivery_time` varchar(255) DEFAULT NULL, `sku_spec_id` bigint(20) DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `with_hold_quantity` bigint(20) DEFAULT NULL, PRIMARY KEY (`sku_id`), KEY `FKBC13FB33248D0C8` (`num_iid`), CONSTRAINT `FKBC13FB33248D0C8` FOREIGN KEY (`num_iid`) REFERENCES `top_item` (`num_iid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of top_sku -- ---------------------------- -- ---------------------------- -- Table structure for `top_user` -- ---------------------------- DROP TABLE IF EXISTS `top_user`; CREATE TABLE `top_user` ( `taobao_user_nick` varchar(255) NOT NULL, `access_token` varchar(255) DEFAULT NULL, `expires_in` bigint(20) NOT NULL, `r1expires_in` bigint(20) NOT NULL, `r2expires_in` bigint(20) NOT NULL, `re_expires_in` bigint(20) NOT NULL, `refresh_toekn` varchar(255) DEFAULT NULL, `taobao_user_id` bigint(20) NOT NULL, `token_type` varchar(255) DEFAULT NULL, `w1expires_in` bigint(20) NOT NULL, `w2expires_in` bigint(20) NOT NULL, PRIMARY KEY (`taobao_user_nick`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of top_user -- ---------------------------- -- ---------------------------- -- Table structure for `top_video` -- ---------------------------- DROP TABLE IF EXISTS `top_video`; CREATE TABLE `top_video` ( `id` bigint(20) NOT NULL, `created` datetime DEFAULT NULL, `iid` varchar(255) DEFAULT NULL, `modified` datetime DEFAULT NULL, `num_iid` bigint(20) DEFAULT NULL, `url` varchar(255) DEFAULT NULL, `video_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`id`), KEY `FK72B2511248D0C8` (`num_iid`), CONSTRAINT `FK72B2511248D0C8` FOREIGN KEY (`num_iid`) REFERENCES `top_item` (`num_iid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of top_video -- ----------------------------
<filename>migrations/controller/1551430716_add_cloud_code.up.sql -- Put upgrade SQL here CREATE TABLE cloud_code ( id uuid PRIMARY KEY, created_at timestamp WITHOUT TIME ZONE NOT NULL, version text NOT NULL, path text NOT NULL, target_path text NOT NULL, config jsonb NOT NULL, app_id uuid REFERENCES app(id) NOT NULL );
BEGIN; ALTER TABLE auth_credentials RENAME COLUMN access_secret_key TO secret_access_key; COMMIT;
-- 建表文件 drop table if exists TB_USER; create table TB_USER ( ID INTEGER auto_increment, USERNAME VARCHAR(32), CREATETIME TIMESTAMP, constraint TB_USER_PK primary key (ID) ); create unique index TB_USER_ID_UINDEX on TB_USER (ID); create index TB_USER_USERNAME_INDEX on TB_USER (USERNAME); create index TB_USER_CREATETIME_INDEX on TB_USER (CREATETIME desc);
<gh_stars>0 explain analyze SELECT MAX((a1.item1 - a1.item5)) AS item1 FROM ( SELECT a0.t_price AS item1, MIN(a0.t_price) OVER (ORDER BY a0.t_timestamp ASC, a0.t_tid ASC, a0.t_timestamp ASC ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS item5 FROM trades AS a0 WHERE (a0.t_tradedate = 15) AND (a0.t_tid = 40) ) AS a1(item1, item5);
create table %s( id serial primary key, body jsonb not null, search tsvector, created_at timestamptz default now() ); create index idx_%s on %s using GIN(body jsonb_path_ops); create index idx_search_%s on %s using GIN(search);
<reponame>opengauss-mirror/Yat -- @testpoint:opengauss关键字close(非保留),作为游标名 --前置条件 drop table if exists close_test cascade; create table close_test(cid int,fid int); --关键字不带引号-成功 start transaction; cursor close for select * from close_test order by 1; close close; end; --关键字带双引号-成功 start transaction; cursor "close" for select * from close_test order by 1; close "close"; end; --关键字带单引号-合理报错 start transaction; cursor 'close' for select * from close_test order by 1; close 'close'; end; --关键字带反引号-合理报错 start transaction; cursor `close` for select * from close_test order by 1; close `close`; end; --清理环境 drop table close_test;
-- @testpoint:opengauss关键字grant(保留),作为游标名 --前置条件 drop table if exists grant_test cascade; create table grant_test(cid int,fid int); --关键字不带引号-失败 start transaction; cursor grant for select * from grant_test order by 1; close grant; end; --关键字带双引号-成功 start transaction; cursor "grant" for select * from grant_test order by 1; close "grant"; end; --关键字带单引号-合理报错 start transaction; cursor 'grant' for select * from grant_test order by 1; close 'grant'; end; --关键字带反引号-合理报错 start transaction; cursor `grant` for select * from grant_test order by 1; close `grant`; end; --清理环境 drop table grant_test cascade;
create table mock ( timestamp timestamp not null, key varchar not null, value float not null, PRIMARY KEY (timestamp) ); comment on table mock is 'mock.csv';
<filename>aqil.sql -- phpMyAdmin SQL Dump -- version 4.8.5 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Dec 06, 2019 at 02:21 PM -- Server version: 10.1.39-MariaDB -- PHP Version: 7.2.18 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `aqil` -- -- -------------------------------------------------------- -- -- Table structure for table `edukasis` -- CREATE TABLE `edukasis` ( `id` bigint(20) UNSIGNED NOT NULL, `sekolah` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tahun` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `edukasis` -- INSERT INTO `edukasis` (`id`, `sekolah`, `tahun`, `created_at`, `updated_at`) VALUES (1, 'SD Negeri 1 Pasar LUBUAK JAMBI', '2004 - 2010', NULL, NULL), (2, 'SMP Negeri 1 KUANTAN MUDIK', '2010 - 2013', NULL, NULL), (3, 'SMA Negeri 1 KUANTAN MUDIK ', '2013 - 2016', NULL, NULL), (4, 'Universitas Gunadarma (TI)', '2016 - Sekarang', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `experiences` -- CREATE TABLE `experiences` ( `id` bigint(20) UNSIGNED NOT NULL, `experience` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `from` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `experiences` -- INSERT INTO `experiences` (`id`, `experience`, `from`, `to`, `created_at`, `updated_at`) VALUES (1, 'Asisten Lepkom F4', '2017', 'Sekarang', NULL, NULL), (2, 'Freelance Web Developer', '2018', 'Sekarang', NULL, NULL), (3, 'System Engineer', '2018', 'Sekarang', NULL, NULL), (4, 'Android Developer', '2019', 'Sekarang', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2019_11_26_161618_create_edukasis_table', 1), (2, '2019_11_27_045013_skills', 1), (3, '2019_11_27_052850_experiences', 1), (4, '2019_11_27_090953_create_contacts_table', 1), (5, '2019_12_03_091039_create_user_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `skills` -- CREATE TABLE `skills` ( `id` bigint(20) UNSIGNED NOT NULL, `skill` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `skills` -- INSERT INTO `skills` (`id`, `skill`, `created_at`, `updated_at`) VALUES (1, 'Web Programming', NULL, NULL), (2, 'Android Developer', NULL, NULL), (3, 'Maintenance Komputer', NULL, NULL); -- -- Indexes for dumped tables -- -- -- Indexes for table `edukasis` -- ALTER TABLE `edukasis` ADD PRIMARY KEY (`id`); -- -- Indexes for table `experiences` -- ALTER TABLE `experiences` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `skills` -- ALTER TABLE `skills` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `edukasis` -- ALTER TABLE `edukasis` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `experiences` -- ALTER TABLE `experiences` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `skills` -- ALTER TABLE `skills` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<filename>contacts.sql -- phpMyAdmin SQL Dump -- version 4.6.5.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: May 18, 2017 at 01:40 PM -- Server version: 10.1.21-MariaDB -- PHP Version: 7.1.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `contacts` -- -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `organization` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dob` date DEFAULT NULL, `status` int(11) NOT NULL DEFAULT '1', `avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT; -- -- Dumping data for table `contacts` -- INSERT INTO `contacts` (`id`, `user_id`, `name`, `email`, `phone`, `address`, `organization`, `dob`, `status`, `avatar`, `remember_token`, `created_at`, `updated_at`, `deleted_at`) VALUES (2, 6, '<NAME>', '<EMAIL>', '0715302571', '392', 'Startupscrib', '1980-01-29', 1, 'default-avi.jpg', NULL, '2017-05-10 04:29:31', '2017-05-13 05:45:23', NULL), (3, 6, '<NAME>', '<EMAIL>', '0708940113', '392', 'Startupscrib', '2017-05-13', 1, NULL, NULL, '2017-05-10 05:53:16', '2017-05-13 07:22:48', NULL), (10, 6, '<NAME>', '<EMAIL>', '0726981598', '392', 'Startupscrib', '2017-05-24', 1, NULL, NULL, '2017-05-10 07:32:30', '2017-05-10 11:01:44', NULL), (11, 7, '<NAME>', '<EMAIL>', '0711795116', 'Imara', 'Startupscrib', '2017-05-31', 1, 'default-avi.jpg', NULL, '2017-05-10 07:33:48', '2017-05-10 07:33:48', NULL), (13, 7, '<NAME>', '<EMAIL>', '0763967537​⁠​', 'Equity', 'Startupscrib', '2017-05-27', 1, 'default-avi.jpg', NULL, '2017-05-10 07:40:05', '2017-05-10 07:40:05', NULL), (14, 6, '<NAME>', '<EMAIL>', '0721691459​⁠​', '392', 'Startupscrib', '2017-05-09', 1, 'default-avi.jpg', NULL, '2017-05-12 03:37:18', '2017-05-12 05:48:48', NULL), (15, 6, '<NAME>', '<EMAIL>', '0717279482​⁠​', '392', 'Startupscrib', '2012-02-25', 1, 'default-avi.jpg', NULL, '2017-05-12 03:43:20', '2017-05-17 14:07:54', NULL), (16, 6, '<NAME>', '<EMAIL>', '0721912744​⁠​', '392', 'Startupscrib', '2008-03-06', 1, 'default-avi.jpg', NULL, '2017-05-12 03:57:20', '2017-05-12 05:50:54', '2017-05-12 05:50:54'), (18, 6, '<NAME>', '<EMAIL>', '0711833398', '392', 'Startupscrib', '2017-05-02', 1, 'default-avi.jpg', NULL, '2017-05-12 04:06:23', '2017-05-14 05:16:13', NULL), (20, 8, '<NAME>', '<EMAIL>', '726981598', '392', 'Startupscrib', '2017-05-17', 1, 'default-avi.jpg', NULL, '2017-05-12 09:56:38', '2017-05-12 09:56:38', NULL), (21, 4, '<NAME>', '<EMAIL>', '0712001122', '392', 'Startupscrib', '2017-05-05', 1, 'default-avi.jpg', NULL, '2017-05-13 05:18:10', '2017-05-13 05:18:10', NULL); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (6, '2014_10_12_000000_create_users_table', 1), (7, '2014_10_12_100000_create_password_resets_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `facebook_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'http://localhost/contactsapp/public/default-avi.jpg', `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `user_type` int(11) NOT NULL DEFAULT '1', `password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `facebook_id`, `avatar`, `email`, `user_type`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, '<NAME>', NULL, 'http://localhost/contactsapp/public/default-avi.jp...', '<EMAIL>', 0, '$2y$10$2IyWHBllqC3yLosNL451VeJzbfZgzoQaz5UM7G.apmrBDBXI0p3hW', NULL, '2017-05-03 06:28:34', '2017-05-03 06:28:34'), (4, '<NAME>', NULL, 'http://localhost/contactsapp/public/default-avi.jp...', '<EMAIL>', 1, NULL, 'wuU3nVkL6LxYhymr607BtlAqK6CMG1ymFl7CbVv0vwhkEnyS7HoKy9NjBJ8b', '2017-05-03 07:13:03', '2017-05-03 07:13:03'), (6, '<NAME>', NULL, 'http://localhost/contactsapp/public/default-avi.jpg', '<EMAIL>', 1, '$2y$10$8q/hBzbFuhxgA88Kyd13luySGLN0ec/t5FBHqONbz9MSoAAMg95K.', '3oysOw5vLGMeph7dBXPwEwB02eapD51kevMkZOu58LrIU5OD5UqoSRe5kTho', '2017-05-04 11:03:35', '2017-05-04 11:03:35'), (7, '<NAME>', NULL, 'http://localhost/contactsapp/public/default-avi.jpg', '<EMAIL>', 1, '$2y$10$WtTLhVEl.g0q5v1h.QipI.qiv0lsthOK/cX5pO7i./V9T0N1gyiDO', 'FA2K7bN4TPXyyt2HV8M6QtMEadNd0EvC0nRwrVLacySxfBRStPTMlFBB6E6Y', '2017-05-10 07:55:52', '2017-05-10 07:55:52'), (8, '<NAME>', NULL, 'http://localhost/contactsapp/public/default-avi.jpg', '<EMAIL>', 1, NULL, 'mBfxkrE9mXMqvH47SM9XV0CDIkclNPAlZWLXnRDwqJUZoDSbLOvy7p8Fpp2A', '2017-05-12 09:54:26', '2017-05-12 09:54:26'), (9, '<NAME>', NULL, 'http://localhost/contactsapp/public/default-avi.jpg', '<EMAIL>', 1, '$2y$10$lpjv4I3oa96WQhhyw37J5OLbEv8QwFITIF0qTArsYSmddh8TVDbDa', '1Rw7prR5XOd1VPUVnIstQMPPrLCuTK8jsUAtUaj530Nu7x5HED1Sy85k4Lxc', '2017-05-13 05:32:13', '2017-05-13 05:32:13'), (10, '<NAME>', NULL, 'http://localhost/contactsapp/public/default-avi.jpg', '<EMAIL>', 1, '$2y$10$rgsaCH8zalvgcclMwtesdOCPVZW7.1DGtkLpzyM4KDDhoifHLYIl6', 'K6iodaUJJup83HbTkm2SefXeqcIedQnwrzvhRKuvsQovvfMi4AszkzWovjsf', '2017-05-14 03:19:53', '2017-05-14 03:19:53'); -- -- Indexes for dumped tables -- -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `contact_details_email_unique` (`email`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
SELECT COUNT(*) FROM tag as t, site as s, question as q, tag_question as tq WHERE t.site_id = s.site_id AND q.site_id = s.site_id AND tq.site_id = s.site_id AND tq.question_id = q.id AND tq.tag_id = t.id AND (s.site_name in ('stackoverflow')) AND (t.name in ('async-await','css-selectors','curl','datagrid','datagridview','flash','linq','meteor','mobile','properties','routing','ubuntu','url')) AND (q.favorite_count >= 1) AND (q.favorite_count <= 10)
<filename>Sql/2017-2018/J/11.sql --ZAD11 create or replace function remove_all() returns VOID as $$ declare r RECORD; begin FOR r IN (SELECT tablename FROM pg_tables WHERE schemaname = 'public') LOOP EXECUTE 'DROP TABLE IF EXISTS ' || quote_ident(r.tablename) || ' CASCADE'; END LOOP; end; $$ language plpgsql; SELECT remove_all();
<reponame>Serj3000/d26-dz20 show databases; -- DROP DATABASE d26test_dz20; -- CREATE database d26test_dz20; use d26test_dz20; -- create table categories ( -- id INT PRIMARY KEY AUTO_INCREMENT NOT NULL, -- name VARCHAR(255), -- slug VARCHAR(255), -- created_at DATETIME, -- updated_at DATETIME -- ); -- INSERT INTO categories -- (categorie,created_at,updated_at) -- VALUE -- ('Categorie 1','2019-07-30','2019-07-30'), -- ('Categorie 2','2019-07-30','2019-07-30'); -- create table users ( -- id INT PRIMARY KEY AUTO_INCREMENT NOT NULL, -- name VARCHAR(255), -- email VARCHAR(255), -- password VARCHAR(255), -- remember_token VARCHAR(100), -- created_at DATETIME, -- updated_at DATETIME -- ); select * from categories; select * from posts; select * from users;
<filename>cdw_flights.sql -- phpMyAdmin SQL Dump -- version 4.7.9 -- https://www.phpmyadmin.net/ -- -- Máy chủ: 127.0.0.1:3306 -- Thời gian đã tạo: Th4 08, 2019 lúc 06:44 AM -- Phiên bản máy phục vụ: 5.7.21 -- Phiên bản PHP: 7.2.4 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Cơ sở dữ liệu: `cdw_flights` -- -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `airport` -- DROP TABLE IF EXISTS `airport`; CREATE TABLE IF NOT EXISTS `airport` ( `airport_id` int(11) NOT NULL AUTO_INCREMENT, `airport_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nation_id` int(11) NOT NULL, `city_id` int(11) NOT NULL, PRIMARY KEY (`airport_id`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `airport` -- INSERT INTO `airport` (`airport_id`, `airport_name`, `nation_id`, `city_id`) VALUES (1, 'Sân bay Bến Tre', 1, 1), (2, 'Sân Bay Nha Trang', 1, 2), (3, '<NAME>', 1, 3), (4, '<NAME>', 1, 4), (5, '<NAME>', 2, 5), (6, '<NAME>', 2, 6), (8, '<NAME>', 4, 7); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `book` -- DROP TABLE IF EXISTS `book`; CREATE TABLE IF NOT EXISTS `book` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `total` float DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `book` -- INSERT INTO `book` (`id`, `user_id`, `total`) VALUES (1, 1, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `chairs` -- DROP TABLE IF EXISTS `chairs`; CREATE TABLE IF NOT EXISTS `chairs` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `flight_detail_id` int(10) UNSIGNED NOT NULL, `seat_type_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `chairs_flight_detail_id_foreign` (`flight_detail_id`), KEY `chairs_seat_type_id_foreign` (`seat_type_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `chairs` -- INSERT INTO `chairs` (`id`, `flight_detail_id`, `seat_type_id`, `created_at`, `updated_at`) VALUES (1, 1, 1, '2019-03-20 19:00:00', '2019-03-19 18:00:00'), (2, 2, 3, NULL, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `city` -- DROP TABLE IF EXISTS `city`; CREATE TABLE IF NOT EXISTS `city` ( `city_id` int(11) NOT NULL AUTO_INCREMENT, `city_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nation_id` int(11) NOT NULL, PRIMARY KEY (`city_id`) ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `city` -- INSERT INTO `city` (`city_id`, `city_name`, `nation_id`) VALUES (1, 'Bến Tre', 1), (2, 'Nha Trang', 1), (3, 'Sapa', 1), (4, 'Phan Thiết', 1), (5, 'HongKong', 2), (6, 'Ma cao', 2), (7, 'NewYord', 4); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `flight_details` -- DROP TABLE IF EXISTS `flight_details`; CREATE TABLE IF NOT EXISTS `flight_details` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `org_id` int(10) UNSIGNED NOT NULL, `code` varchar(31) COLLATE utf8mb4_unicode_ci NOT NULL, `from` int(10) UNSIGNED NOT NULL, `to` int(10) UNSIGNED NOT NULL, `time_start` timestamp NOT NULL, `time_end` timestamp NULL DEFAULT NULL, `time_return` timestamp NOT NULL, `price` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `flight_type` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `transit` int(11) DEFAULT NULL, `total` int(11) DEFAULT NULL, `Km` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `flight_details_code_unique` (`code`), KEY `flight_details_org_id_foreign` (`org_id`), KEY `flight_details_from_foreign` (`from`), KEY `flight_details_to_foreign` (`to`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `flight_details` -- INSERT INTO `flight_details` (`id`, `org_id`, `code`, `from`, `to`, `time_start`, `time_end`, `time_return`, `price`, `created_at`, `updated_at`, `flight_type`, `transit`, `total`, `Km`) VALUES (1, 1, 'CB1', 1, 2, '2019-02-28 21:53:57', '2019-02-28 23:00:00', '2019-02-28 22:53:57', 1500000, '2019-02-28 21:53:57', '2019-02-28 21:53:57', 'one-way', 0, NULL, 100), (2, 2, 'CB2', 1, 2, '2019-02-28 21:53:57', '2019-03-01 00:00:00', '2019-03-01 22:53:57', 2000000, '2019-02-28 21:53:57', '2019-02-28 21:53:57', 'return', 0, NULL, 50), (3, 1, 'CB3', 1, 2, '2019-03-01 17:00:00', '2019-03-01 21:00:00', '2019-03-02 17:00:00', 1200000, NULL, NULL, 'return', 0, NULL, 20), (4, 2, 'CB4', 2, 4, '2019-03-02 18:00:00', '2019-03-04 17:00:00', '2019-03-08 17:00:00', 10000000, NULL, NULL, 'return', NULL, NULL, 200), (6, 1, 'xc', 1, 3, '2019-02-28 17:00:00', '2019-03-01 17:00:00', '2019-03-02 17:00:00', 12, NULL, NULL, 'return', NULL, 12, 240), (7, 1, 'aaa', 2, 5, '2019-02-28 17:00:00', '2019-03-01 17:00:00', '2019-03-02 17:00:00', 1200, NULL, NULL, 'return', NULL, 100, 20), (8, 2, 'Abb', 4, 6, '2019-04-23 17:00:00', '2019-04-18 17:00:00', '2019-04-10 17:00:00', 1200, NULL, NULL, 'return', NULL, 12, 340), (9, 1, 'ABC', 1, 2, '2019-04-18 17:00:00', '2019-04-19 17:00:00', '2019-04-20 17:00:00', 1200, NULL, NULL, 'return', NULL, 12, 3000), (11, 2, 'iyuyu', 4, 6, '2019-04-01 17:00:00', '2019-04-02 17:00:00', '2019-04-03 17:00:00', 1200, NULL, NULL, 'return', NULL, 12, 300), (13, 1, 'ABCsa', 2, 4, '2019-04-04 17:00:00', '2019-04-05 17:00:00', '2019-04-05 17:00:00', 1200, NULL, NULL, 'return', NULL, 12, 490); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `migrations` -- DROP TABLE IF EXISTS `migrations`; CREATE TABLE IF NOT EXISTS `migrations` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (38, '2019_02_28_064244_create_orgs_table', 1), (39, '2019_02_28_085029_create_flight_details_table', 1), (40, '2019_02_28_091635_create_seat_types_table', 1), (41, '2019_02_28_093145_create_chairs_table', 1); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `nation` -- DROP TABLE IF EXISTS `nation`; CREATE TABLE IF NOT EXISTS `nation` ( `nation_id` int(11) NOT NULL AUTO_INCREMENT, `nation_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nation_code` varchar(31) COLLATE utf8mb4_unicode_ci NOT NULL, `country_id` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`nation_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `nation` -- INSERT INTO `nation` (`nation_id`, `nation_name`, `nation_code`, `country_id`) VALUES (1, 'Việt Nam', 'VN', '2,3'), (2, 'Trung Quốc', 'TQ', '1,3,4'), (3, 'Nhật Bản', 'JP', '1,4'), (4, 'American', 'USA', '2,4'); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `orgs` -- DROP TABLE IF EXISTS `orgs`; CREATE TABLE IF NOT EXISTS `orgs` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `code` varchar(31) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `nation_id` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `orgs_code_unique` (`code`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `orgs` -- INSERT INTO `orgs` (`id`, `code`, `name`, `created_at`, `updated_at`, `nation_id`) VALUES (1, 'VIETJ', 'VietJet', '2019-02-28 21:53:57', '2019-02-28 21:53:57', 1), (2, 'AIRL', 'AirLine', '2019-02-28 21:53:57', '2019-02-28 21:53:57', 2); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `seat_types` -- DROP TABLE IF EXISTS `seat_types`; CREATE TABLE IF NOT EXISTS `seat_types` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(31) COLLATE utf8mb4_unicode_ci NOT NULL, `total` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `seat_types_name_unique` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `seat_types` -- INSERT INTO `seat_types` (`id`, `name`, `total`, `created_at`, `updated_at`) VALUES (1, 'Business', 20, '2019-02-28 21:53:57', '2019-02-28 21:53:57'), (2, 'Economy', 50, '2019-02-28 21:53:57', '2019-02-28 21:53:57'), (3, 'Premium Economy', 50, '2019-02-28 21:53:57', '2019-02-28 21:53:57'); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE IF NOT EXISTS `users` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `user_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_phone` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_date_of_birth` date DEFAULT NULL, `user_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_last_access` time DEFAULT NULL, `user_attempt` int(11) DEFAULT NULL, `user_create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `user_update_time` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_active` int(11) DEFAULT NULL, PRIMARY KEY (`user_id`) ) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `users` -- INSERT INTO `users` (`user_id`, `user_name`, `email`, `password`, `user_title`, `user_phone`, `user_date_of_birth`, `user_address`, `user_last_access`, `user_attempt`, `user_create_time`, `user_update_time`, `updated_at`, `user_active`) VALUES (5, 'hoainam0654', '<EMAIL>', <PASSWORD>', NULL, '1234567890', NULL, NULL, NULL, NULL, '2019-02-26 06:57:47', NULL, NULL, NULL), (4, 'dieumii', '<EMAIL>', <PASSWORD>', NULL, '1234567890', NULL, NULL, NULL, NULL, '2019-02-26 06:50:51', NULL, NULL, NULL), (3, 'Hoainam', '<EMAIL>', <PASSWORD>', NULL, '1234567890', NULL, NULL, NULL, NULL, '2019-02-26 06:50:10', NULL, NULL, NULL), (6, 'dieumii', '<EMAIL>', <PASSWORD>sr1xlOSesFuXw5M9IdeBhJaK/ligYt.myAsH793B4y', NULL, '0918798221', NULL, NULL, '17:47:14', 0, '2019-02-26 08:48:09', NULL, '2019-04-01 10:47:14', 1), (7, 'dieumii', '<EMAIL>', <PASSWORD>', NULL, '1234567890', NULL, NULL, '15:48:05', 4, '2019-02-26 09:15:26', NULL, NULL, 0), (12, 'alibaba', '<EMAIL>', <PASSWORD>e<PASSWORD>', NULL, '1234567890', NULL, NULL, NULL, NULL, '2019-03-05 06:02:17', NULL, NULL, NULL), (9, 'dieumii', '<EMAIL>', <PASSWORD>', NULL, '1234567890', NULL, NULL, '15:44:10', 0, '2019-02-27 15:43:20', NULL, NULL, 1), (10, 'dieumii', '<EMAIL>', '$2y$10$xxT8U6O7XVtCD8SupWtvwOrjrTn.W/Zq7qJwC3GozVPhZTXEgU0B.', NULL, '1234567890', NULL, NULL, '06:57:34', 1, '2019-02-27 15:44:30', NULL, '2019-04-01 23:57:34', 1), (11, 'diệu my', '<EMAIL>', <PASSWORD>', NULL, '123456', NULL, NULL, '02:41:13', 0, '2019-02-27 15:48:54', NULL, '2019-03-11 19:41:13', 1), (13, 'uuuuuuu', '<EMAIL>', '$2y$10$t.Ry4qLdVGlcn6wg0FMyfuxaEY.TuBxYJI3yXDz8vHEdZ85wX/eaG', NULL, '1234567890', NULL, NULL, NULL, NULL, '2019-03-05 06:07:27', NULL, NULL, NULL), (14, 'hoainamnam6767', '<EMAIL>', <PASSWORD>nqobQ5rGXGmUMOtHbjOeZLTNour<PASSWORD>Ov<PASSWORD>/ya4ljO0JL<PASSWORD>C', NULL, '1234567890', NULL, NULL, '06:53:40', 1, '2019-04-01 17:31:40', NULL, '2019-04-01 23:53:40', 1), (15, 'dieumii', '<EMAIL>', '$2y$10$B.nAu/yUj0zM9pBaitYRKOx5xKQbRFLRw8.DNdEU2KpKkjF8KE/22', NULL, '0918798221', NULL, NULL, '06:57:46', 0, '2019-04-02 06:57:05', NULL, '2019-04-01 23:57:46', 1), (16, 'chan', '<EMAIL>', <PASSWORD>', NULL, '1234567890', NULL, NULL, '07:10:42', 4, '2019-04-02 06:58:32', NULL, '2019-04-02 00:10:42', 0); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<gh_stars>0 DROP DATABASE IF EXISTS db_conjuntos_numericos; CREATE DATABASE IF NOT EXISTS db_conjuntos_numericos; USE db_conjuntos_numericos; CREATE TABLE IF NOT EXISTS tb_fibonacci ( id_fibonacci INT(2) AUTO_INCREMENT, numero_fibonacci INT(3) NOT NULL, PRIMARY KEY (id_fibonacci) ); CREATE TABLE IF NOT EXISTS tb_primos ( id_primos INT(2) AUTO_INCREMENT, numero_primos INT(3) NOT NULL, PRIMARY KEY (id_primos) ); INSERT INTO tb_fibonacci (numero_fibonacci) VALUES (1), (2), (3), (5), (8), (13), (21), (34), (55); SELECT * FROM tb_fibonacci; INSERT INTO tb_primos (numero_primos) VALUES (2), (3), (5), (7), (11), (13), (17), (19), (23); SELECT * FROM tb_primos; -- Usado para fazer intersecção entre tabela A e B SELECT * FROM tb_fibonacci AS a INNER JOIN tb_primos AS b ON a.numero_fibonacci = b.numero_primos;
SET DEFINE OFF; create or replace package body afw_21_plugn_navgt_enreg_pkg as --mode possible: PAGE | DIALG gbo_plugn_activ boolean default true; gva_mode varchar2 (23) default 'PAGE'; kva_regn_precd_premr constant varchar2 (200) default '<div class="afw_21_navgt_enreg precd"><i class="fa fa-fast-backward navgt_enreg_precd"></i></div>'; kva_regn_precd constant varchar2 (200) default '<div class="afw_21_navgt_enreg precd"><i class="fa fa-backward navgt_enreg_precd"></i></div>'; kva_regn_suivn_dernr constant varchar2 (200) default '<div class="afw_21_navgt_enreg suivn"><i class="fa fa-fast-forward navgt_enreg_suivn"></i></div>'; kva_regn_suivn constant varchar2 (200) default '<div class="afw_21_navgt_enreg suivn"><i class="fa fa-forward navgt_enreg_suivn"></i></div>'; function valdr_prise_charg return boolean is vbo_retr boolean default false; vva_navgt varchar2 (1); vnu_nombr_enreg number default 0; begin --Vérifier si sur page venant d'un IR et qu'il contient plus de 1 enregistrement --Vérifier si sur page venant d'un rapport SQL et qu'il contient plus de 1 enregistrement --Vérifier si dialogue et le rapport parent (SQL ou IR) contient plus de 1 enregistrement select p.indic_prise_charg_afw13_navgt into vva_navgt from vd_afw_13_page p where p.seqnc = afw_13_page_pkg.obten_page_sesn (); select count (1) into vnu_nombr_enreg from vd_afw_13_navgt_elemn; if vva_navgt = 'O' and vnu_nombr_enreg > 1 then vbo_retr := true; end if; return vbo_retr and gbo_plugn_activ; end valdr_prise_charg; function obten_si_dernr_enreg return boolean is vnu_numr_courn number; begin select max (numr_elemn) into vnu_numr_courn from vd_afw_13_navgt_elemn; return vnu_numr_courn = afw_13_navgt_pkg.obten_numr_courn; end obten_si_dernr_enreg; function obten_si_premr_enreg return boolean is begin return afw_13_navgt_pkg.obten_numr_courn = 1; end obten_si_premr_enreg; function obten_url_premr_enreg return varchar2 is begin return afw_13_navgt_pkg.obten_url_premr; end obten_url_premr_enreg; function obten_url_dernr_enreg return varchar2 is begin return afw_13_navgt_pkg.obten_url_dernr (1); end obten_url_dernr_enreg; function obten_url_suivn_enreg return varchar2 is begin if obten_si_dernr_enreg then return obten_url_premr_enreg; else return afw_13_navgt_pkg.obten_url_suivn; end if; end obten_url_suivn_enreg; function obten_url_precd_enreg return varchar2 is begin if obten_si_premr_enreg then return obten_url_dernr_enreg; else return afw_13_navgt_pkg.obten_url_precd; end if; end obten_url_precd_enreg; function obten_regn_navgt_precd return varchar2 is begin if obten_si_premr_enreg then return kva_regn_precd_premr; else return kva_regn_precd; end if; end obten_regn_navgt_precd; function obten_regn_navgt_suivn return varchar2 is begin if obten_si_dernr_enreg then return kva_regn_suivn_dernr; else return kva_regn_suivn; end if; end obten_regn_navgt_suivn; procedure desct_navgt_enreg is begin gbo_plugn_activ := false; end desct_navgt_enreg; function valdr_plugn_activ return boolean is begin return gbo_plugn_activ; end valdr_plugn_activ; end afw_21_plugn_navgt_enreg_pkg; /
<filename>store/triggers/no_alter_shipped_invoice.sql create or replace function store.no_alter_shipped_invoice() returns trigger as $$ begin if OLD.ship_date is not null then raise 'no_alter_shipped_invoice'; end if; if (tg_op = 'DELETE') then return OLD; else return NEW; end if; end; $$ language plpgsql; drop trigger if exists no_alter_shipped_invoice on store.invoices cascade; create trigger no_alter_shipped_invoice before delete or update on store.invoices for each row execute procedure store.no_alter_shipped_invoice();
/* -- noinspection SqlResolve */ SELECT m.type, --m.name m.tbl_name, m.sql FROM sqlite_master m WHERE m.type in ('table', 'view') ORDER BY m.name
-- file:drop_if_exists.sql ln:154 expect:true DROP FUNCTION IF EXISTS test_function_exists(int, text, int[])
<gh_stars>10-100 -- file:plpgsql.sql ln:557 expect:true create trigger tg_pline_bu before update on PLine for each row execute procedure tg_pline_bu()
-- ========================================= -- Create FileTable template -- ========================================= USE <database, sysname, AdventureWorks> GO IF OBJECT_ID('<schema_name, sysname, dbo>.<table_name, sysname, sample_filetable>', 'U') IS NOT NULL DROP TABLE <schema_name, sysname, dbo>.<table_name, sysname, sample_filetable> GO CREATE TABLE <schema_name, sysname, dbo>.<table_name, sysname, sample_filetable> AS FILETABLE WITH ( FILETABLE_DIRECTORY = '<file_table_directory_name, sysname, sample_filetable>', FILETABLE_COLLATE_FILENAME = <file_table_filename_collation, sysname, database_default> ) GO
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Czas generowania: 27 Lut 2021, 10:43 -- Wersja serwera: 10.4.11-MariaDB -- Wersja PHP: 7.4.5 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Baza danych: `fiszki_nauka_slowek` -- -- -------------------------------------------------------- -- -- Struktura tabeli dla tabeli `fiszki` -- CREATE TABLE `fiszki` ( `id` int(11) NOT NULL, `v1` varchar(70) CHARACTER SET utf8 NOT NULL, `v2` varchar(70) CHARACTER SET utf8 NOT NULL, `weight` int(11) NOT NULL, `flaga` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Struktura tabeli dla tabeli `info_table` -- CREATE TABLE `info_table` ( `id` int(11) NOT NULL, `name_table` varchar(70) CHARACTER SET utf8 NOT NULL, `flaga` varchar(70) CHARACTER SET utf8 NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Zrzut danych tabeli `info_table` -- INSERT INTO `info_table` (`id`, `name_table`, `flaga`) VALUES (1, 'Unit_1', '0'), (2, 'Unit_2', '0'), (3, 'Unit_3', '0'), (4, 'Unit_4', '0'), (5, 'Unit_5', '0'), (6, 'Unit_6', '0'), (7, 'Unit_8', '0'), (8, 'tedtalks', '0'), (9, 'fiszki', '0'), (10, 'Media_1', '0'); -- -------------------------------------------------------- -- -- Struktura tabeli dla tabeli `Media_1` -- CREATE TABLE `Media_1` ( `id` int(10) NOT NULL, `v1` varchar(255) DEFAULT NULL, `v2` varchar(255) DEFAULT NULL, `weight` int(10) DEFAULT NULL, `zdanie` varchar(255) DEFAULT NULL, `flaga` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Zrzut danych tabeli `Media_1` -- INSERT INTO `Media_1` (`id`, `v1`, `v2`, `weight`, `zdanie`, `flaga`) VALUES (1, 'a morninig paper', 'poranna gazeta', 1, '(brak)', 0), (2, 'an evening paper', 'wieczorna gazeta', 1, '(brak)', 0), (3, 'a Sunday paper', 'niedzielna gazeta', 1, '(brak)', 0), (4, 'a colour supplement', 'kolorowy dodatek', 1, '(brak)', 0), (5, 'a quality paper', 'poważna gazeta', 1, '(brak)', 0), (6, 'a tabloit', 'brukowiec', 1, '(brak)', 0), (7, 'the gutter press', 'prasa drukowana', 1, '(brak)', 0), (8, 'a glossy magazine', 'ilustrowane luksusowe czasopismo', 1, '(brak)', 0), (9, 'a specialist magazine', 'magazyn specialistyczny', 1, '(brak)', 0), (10, 'a womens\'s magazine', 'magazyn dla kobiet', 1, '(brak)', 0), (11, 'a motoring press', 'czasopisma motoryzacyjne', 1, '(brak)', 0), (12, 'an evening paper', 'wieczorna gazeta', 1, '(brak)', 0), (13, 'a Sunday paper', 'niedzielna gazeta', 1, '(brak)', 0), (14, 'a colour supplement', 'kolorowy dodatek', 1, '(brak)', 0), (15, 'a quality paper', 'poważna gazeta', 1, '(brak)', 0), (16, 'a tabloit', 'brukowiec', 1, '(brak)', 0), (17, 'the sutter press', 'prasa drukowana', 1, '(brak)', 0), (18, 'a glossy press', 'ilustrowane luksusowe czasopismo', 1, '(brak)', 0), (19, 'a specialist magazine', 'magazyn specialistyczny', 1, '(brak)', 0), (20, 'a womens\'s magazine', 'magazyn dla kobiet', 1, '(brak)', 0), (21, 'the motorning press', 'czasopisma motoryzacyjne', 1, '(brak)', 0), (22, 'the ecomomic press', 'czsopisma ekonomiczne', 1, '(brak)', 0), (23, 'a journal', 'czasopismo fachowe', 1, '(brak)', 0), (24, 'the front page', 'pierwsza strona', 1, '(brak)', 0), (25, 'the cover', 'okładka', 1, '(brak)', 0), (26, 'the headlines', 'nagłówki', 1, '(brak)', 0), (27, 'a section', 'rubryka', 1, '(brak)', 0), (28, 'an article', 'artykuł prasowy', 1, '(brak)', 0), (29, 'a column', 'szpalta/felieton', 1, '(brak)', 0), (30, 'the gossip column', 'kronnika towarzyska', 1, '(brak)', 0), (31, 'the cover', 'okładka', 1, '(brak)', 0), (32, 'the agony column', 'porady sercowe', 1, '(brak)', 0), (33, 'the obituaries', 'nekrologi', 1, '(brak)', 0), (34, 'the classified ads', 'ogłoszenia drobne', 1, '(brak)', 0), (35, 'the credits', 'napisy podające autorów', 1, '(brak)', 0), (36, 'an issue', 'wydanie, numer', 1, '(brak)', 0), (37, 'a copy', 'egzemnplarz', 1, '(brak)', 0), (38, 'the circulation', 'nakład', 1, '(brak)', 0), (39, 'a subsciption', 'prenumerata', 1, '(brak)', 0), (40, 'a subscriber', 'prenumerator', 1, '(brak)', 0), (41, 'print', 'drukować', 1, '(brak)', 0), (42, 'issue', 'wydawać', 1, '(brak)', 0), (43, 'come out', 'ukazywać sie', 1, '(brak)', 0), (44, 'subscribe', 'prenumerować', 1, '(brak)', 0), (45, 'daily', 'dziennik', 1, '(brak)', 0), (46, 'weekly', 'tygodnik', 1, '(brak)', 0), (47, 'monthly', 'miesięcznik', 1, '(brak)', 0), (48, 'quarterly', 'kwartalnik', 1, '(brak)', 0), (49, 'a feature film', 'film dokumentalny', 1, '(brak)', 0), (50, 'a return, a repeat', 'powtórka, ponowna emisja', 1, '(brak)', 0), (51, 'a cartoon', 'kreskówka', 1, '(brak)', 0), (52, 'a trailer', 'zwiastun', 1, '(brak)', 0), (53, 'a commercial, an adverb', 'reklama', 1, '(brak)', 0), (54, 'a commercial break', 'przerwa na reklamy', 1, '(brak)', 0), (55, 'programme, schedule', 'planować', 1, '(brak)', 0), (56, 'produce a show', 'nagrywać program', 1, '(brak)', 0), (57, 'entrain', 'dostarczać rozrywki', 1, '(brak)', 0), (58, 'engross', 'przyciagać, pochłaniać uwagę', 1, '(brak)', 0), (59, 'live', 'na zywo', 1, '(brak)', 0), (60, 'pre-recorded', 'nagrany wcześniej', 1, '(brak)', 0), (61, 'educational', 'edukacyjny', 1, '(brak)', 0), (62, 'stulifving', 'ogłupiający', 1, '(brak)', 0), (63, 'addictive', 'uzależniający', 1, '(brak)', 0), (64, 'a T.V. journalist', 'dziennikarz telewizyjny', 1, '(brak)', 0), (65, 'an anchorman', '<NAME>', 1, '(brak)', 0), (66, 'an announcer', 'spiker', 1, '(brak)', 0), (67, 'a newsreader', 'prezenter wiadomości', 1, '(brak)', 0), (68, 'a compere', 'gospodaż/ni programu', 1, '(brak)', 0), (69, 'a broadcaster', 'prezenter', 1, '(brak)', 0), (70, 'a sportcaster', 'dziennikarz sportowy', 1, '(brak)', 0), (71, 'a quiz master', 'osoba prowadząca quiz', 1, '(brak)', 0), (72, 'be on the screen', 'być na ekranie', 1, '(brak)', 0), (73, 'present the news', 'przedstawiać wiadomości', 1, '(brak)', 0), (74, 'hold the audience', 'przykuwać uwagę publiczności', 1, '(brak)', 0), (75, 'host, compere', 'być gospodarzem programu', 1, '(brak)', 0), (76, 'the fourth estate', 'czwarta władza', 1, '(brak)', 0), (77, 'the freedom on the press', 'wolność prasy', 1, '(brak)', 0), (78, 'press freedom', 'swoboda prasy', 1, '(brak)', 0), (79, 'freedom of expression speech', 'wolność wypowidzi słowa', 1, '(brak)', 0), (80, 'the right to know', 'prawo do informacji', 1, '(brak)', 0), (81, 'investigative journalism', 'dziennikarstwo dochodzeniowe', 1, '(brak)', 0), (82, 'mesia coverage', 'zainteresowanie mediów', 1, '(brak)', 0), (83, 'a newsmaker', 'temat z pierwszych stron gazet', 1, '(brak)', 0), (84, 'the right to privacy', 'prawo do prywatności', 1, '(brak)', 0), (85, 'a breach of ethics', 'naruszenie etyki', 1, '(brak)', 0), (86, 'propaganda', 'propaganda', 1, '(brak)', 0), (87, 'a muckraker', 'dziennikarz szukający sensacji', 1, '(brak)', 0), (88, 'a rumour', 'plotka', 1, '(brak)', 0), (89, 'a scandal', 'skandal', 1, '(brak)', 0), (90, 'libel', 'zniesławienie', 1, '(brak)', 0), (91, 'slander', 'oszczerstwo, pomówienie', 1, '(brak)', 0), (92, 'voyeurism', 'podglądactwo', 1, '(brak)', 0), (93, 'investigate a case', 'badać sprawę', 1, '(brak)', 0), (94, 'cover', 'robić reportaż o', 1, '(brak)', 0), (95, 'spy', 'szpiegować', 1, '(brak)', 0), (96, 'pester, harass', 'męczyć, nękać', 1, '(brak)', 0), (97, 'stalk', 'śledzić', 1, '(brak)', 0), (98, 'unearth, dig out', 'wydobywać na światło dzienne', 1, '(brak)', 0), (99, 'disclose', 'ujawniać', 1, '(brak)', 0), (100, 'expose a scandal', 'demaskować, ujawniać skandal', 1, '(brak)', 0), (101, 'libel, defame', 'zniesławiać', 1, '(brak)', 0), (102, 'slander', 'rzucać oszczerstwa', 1, '(brak)', 0), (103, 'manipulate', 'manipulować', 1, '(brak)', 0), (104, 'make the news', 'trafiać na czołówki', 1, '(brak)', 0), (105, 'inaccurate', 'nie dokładny', 1, '(brak)', 0), (106, 'unreliable', 'niewiarygodny', 1, '(brak)', 0), (107, 'objective', 'obiektywny', 1, '(brak)', 0), (108, 'biassed, prejudiced', 'stronniczny, tendencyjny', 1, '(brak)', 0), (109, 'electronic surveillance', 'inwigilacja elektroniczna', 1, '(brak)', 0), (110, 'closed-circuit television', 'telewizja przemysłowa', 1, '(brak)', 0), (111, 'wiretapping', 'podsłuch telefoniczny', 1, '(brak)', 0), (112, 'a phone pug', 'pluskwa telefoniczna', 1, '(brak)', 0), (113, 'eavesdropping', 'podsłuchiwanie', 1, '(brak)', 0), (114, 'watch', 'obserwować', 1, '(brak)', 0), (115, 'tap/bug a phone', 'założyć podsłuch telefoniczny', 1, '(brak)', 0), (116, 'eavesdrop on', 'podsłuchiwać', 1, '(brak)', 0), (117, 'self-censorship', 'autocenzura', 1, '(brak)', 0), (118, 'right of search', 'prawo do przeszukania', 1, '(brak)', 0), (119, 'a seizure', 'konfiskata', 1, '(brak)', 0), (120, 'a ban', 'zakaz', 1, '(brak)', 0), (121, 'news blackout', 'zakaz rozpowszechniania informacji', 1, '(brak)', 0), (122, 'censor', 'cenzurować', 1, '(brak)', 0), (123, 'suppress press freedom', 'znieść wolność prasy', 1, '(brak)', 0), (124, 'media coverage', 'sprawozdanie w mediach', 1, '(brak)', 0), (125, 'a journalist', 'dziennikarz', 1, '(brak)', 0), (126, 'reporter', 'reportarz', 1, '(brak)', 0), (127, 'a columnist', 'feletonista', 1, '(brak)', 0), (128, 'a freelance', 'niezależny', 1, '(brak)', 0), (129, 'a foreign corresponder', 'koresponder zagraniczny', 1, '(brak)', 0), (130, 'an editor', '<NAME>', 1, '(brak)', 0), (131, 'a newspaper editor', '<NAME>', 1, '(brak)', 0), (132, 'publisher', 'wydawca', 1, '(brak)', 0), (133, 'a press tycoon', '<NAME>', 1, '(brak)', 0), (134, 'news gatherning', 'zbieranie informacji', 1, '(brak)', 0), (135, 'a news release (US)', 'oświadczenie prasowe', 1, '(brak)', 0), (136, 'inform', 'informmować', 1, '(brak)', 0), (137, 'report', 'relacionować', 1, '(brak)', 0), (138, 'cover', 'robić reportarz', 1, '(brak)', 0), (139, 'rewrite', 'napisać od nowa', 1, '(brak)', 0), (140, 'edit', 'redagować', 1, '(brak)', 0), (141, 'publish', 'publikować', 1, '(brak)', 0), (142, 'scoop', 'opublikować przed konkurencją', 1, '(brak)', 0), (143, 'hot the headlines', 'trafić na nagłówki', 1, '(brak)', 0), (144, 'sensitize publish opinion', 'uczulić opinię publiczną', 1, '(brak)', 0), (145, 'make people awarge', 'uświadomić ludziom', 1, '(brak)', 0), (146, 'have news value', 'stanowić interesującą wiadomość', 1, '(brak)', 0), (147, 'a radio set, a transmistor', 'osbiornik radiowy', 1, '(brak)', 0), (148, 'a car radio', 'radio samochodowe', 1, '(brak)', 0), (149, 'an aearial', 'antena', 1, '(brak)', 0), (150, 'wave', 'fala', 1, '(brak)', 0), (151, 'short wave', 'fale któtkie', 1, '(brak)', 0), (152, 'short wave', 'fale średnie', 1, '(brak)', 0), (153, 'long wave', 'fale długie', 1, '(brak)', 0), (154, 'freqency modulation', 'modulacja częstotliwości', 1, '(brak)', 0), (155, 'static interference', 'zakłucenia elektroniczne', 1, '(brak)', 0), (156, 'a radio announcer', 'prezent radiowy', 1, '(brak)', 0), (157, 'the audience', 'słuchacze', 1, '(brak)', 0), (158, 'a news bulletin', 'serwic wiadomości', 1, '(brak)', 0), (159, 'a news flesh', 'skrót wiadomości', 1, '(brak)', 0), (160, 'the audience', 'słuchacze', 1, '(brak)', 0), (161, 'a news bulletin', '<NAME>', 1, '(brak)', 0), (162, 'pick up', 'skrót wiadmości', 1, '(brak)', 0), (163, 'broadcaster', 'nadawać', 1, '(brak)', 0), (164, 'be on air', 'być na antenie', 1, '(brak)', 0), (165, 'be off the air', 'nie być na antenie', 1, '(brak)', 0), (166, 'a television set', 'odbiornik telewizyjny', 1, '(brak)', 0), (167, 'a black an white tv', 'telewizja czarno-biała', 1, '(brak)', 0), (168, 'a colour tv', 'kolorowa telewizja', 1, '(brak)', 0), (169, 'the remote control, the zapper', 'zdalne sterowanie, pilotem', 1, '(brak)', 0), (170, 'a screen', 'ekran', 1, '(brak)', 0), (171, 'a channel', 'kanał', 1, '(brak)', 0), (172, 'a network', 'sieć', 1, '(brak)', 0), (173, 'cable tevision', 'telewizja kablowa', 1, '(brak)', 0), (174, 'a dish aerial', 'telewizja satelitarna, talerz', 1, '(brak)', 0), (175, 'pay-per-view television', 'płatne programy w telewizji', 1, '(brak)', 0), (176, 'toll channel', 'płatny kanał', 1, '(brak)', 0), (177, 'a tv decoder', 'dekoder telewizyjny', 1, '(brak)', 0), (178, 'a video-cassete recorder', 'magnetowid', 1, '(brak)', 0), (179, 'a videotape', 'taśma wideo', 1, '(brak)', 0), (180, 'a viewer', 'telewidz', 1, '(brak)', 0), (181, 'a channer jumper', 'osoba skacząca z kanału na kanał', 1, '(brak)', 0), (182, 'a tv addict', 'telemaniak, uzależniony od tv', 1, '(brak)', 0), (183, 'watch tv', 'oglądać tv', 1, '(brak)', 0), (184, 'turn the tv on/off', 'włączyć, wyłączyć tv', 1, '(brak)', 0), (185, 'channel-flick, zap', 'skakać po kanałach', 1, '(brak)', 0), (186, 'videotape, record', 'nagrywać na taśmę', 1, '(brak)', 0), (187, 'duplicate', 'kopiować', 1, '(brak)', 0), (188, 'a programme', 'program', 1, '(brak)', 0), (189, 'a morning programme', 'program poranny', 1, '(brak)', 0), (190, 'an evening programme', 'program wieczorny', 1, '(brak)', 0), (191, 'air time', 'czas na antenie', 1, '(brak)', 0), (192, 'the ratings', 'notowania', 1, '(brak)', 0), (193, 'prime time', 'najlepszy czas antenowy', 1, '(brak)', 0), (194, 'an audience share', 'oglądalność', 1, '(brak)', 0), (195, 'news', 'wiadomości', 1, '(brak)', 0), (196, 'a documentary', 'program dokumentalny', 1, '(brak)', 0), (197, 'a sports broadcaster', 'transmisja sportowa', 1, '(brak)', 0), (198, 'the weather forecast', 'prognoza pogody', 1, '(brak)', 0), (199, 'a show', 'program rozrywkowy', 1, '(brak)', 0), (200, 'a variety show', 'varietes', 1, '(brak)', 0), (201, 'a quiz show', 'quiz, teleturniej', 1, '(brak)', 0), (202, 'a talk show, a chat show', 'talk show', 1, '(brak)', 0), (203, 'a serial', 'serial', 1, '(brak)', 0), (204, 'a series', 'cykl, seria', 1, '(brak)', 0), (205, 'a television film', 'film telewizyjny', 1, '(brak)', 0), (206, 'be subject to censorship', 'podlegać cenzurze', 1, '(brak)', 0), (207, 'blue-pencil', 'wykreślać, cenzurować', 1, '(brak)', 0), (208, 'silence', 'uciszyć', 1, '(brak)', 0), (209, 'gag', 'zakneblować', 1, '(brak)', 0), (210, 'curtail access', 'ograniczyć dostęp', 1, '(brak)', 0), (211, 'confiscate, seize', 'konfiskować, zająć', 1, '(brak)', 0), (212, 'ban, suppress', 'zakazać, zatajać', 1, '(brak)', 0), (213, 'quality papers', 'ambitne pismo dużego formatu', 1, '(brak)', 0), (214, 'tabloids', 'popularne pisma średniego formatu', 1, '(brak)', 0), (215, 'British Brodcaster Corporation', 'BBC', 1, '(brak)', 0), (216, 'Independent Television', 'ITV', 1, '(brak)', 0), (217, 'American Broadcasting Corporation', 'ABC', 1, '(brak)', 0), (218, 'National Broadcasting Company', 'NBC', 1, '(brak)', 0), (219, 'Columbia Broadcasting System', 'CBS', 1, '(brak)', 0), (220, 'Cable News Network', 'CNN', 1, '(brak)', 0), (221, 'Instructional TV', 'ITV', 1, '(brak)', 0), (222, 'Music Tv', 'MTV', 1, '(brak)', 0), (223, 'The Press Association', 'P.A', 1, '(brak)', 0); -- -------------------------------------------------------- -- -- Struktura tabeli dla tabeli `tedtalks` -- CREATE TABLE `tedtalks` ( `id` int(2) DEFAULT NULL, `v1` varchar(28) DEFAULT NULL, `v2` varchar(27) DEFAULT NULL, `weight` int(1) DEFAULT NULL, `zdanie` varchar(124) DEFAULT NULL, `flaga` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Zrzut danych tabeli `tedtalks` -- INSERT INTO `tedtalks` (`id`, `v1`, `v2`, `weight`, `zdanie`, `flaga`) VALUES (1, 'civil war', 'wojna domowa', 1, 'There is a civil war going on in some countries', 0), (2, 'eldest people', 'starszyzna', 1, 'There used to be an elders instead of a government', 0), (3, 'medical care', 'opieka medyczna', 1, 'A lot of people needs medical care.', 0), (4, 'fled abroad', 'ucieczka za granice', 1, 'Most people fled abroad when it is hard in the country.', 0), (5, 'stand on our feet', 'staramy się pomagać', 1, 'In time epidemic everyone stand on feet other people.', 0), (6, 'victims', 'ofiary', 1, 'In the war everytime are victims.', 0), (7, 'majority', 'większość', 1, 'Majority world society don\'t know about bad situation in Africa.', 0), (8, 'political division', 'podział polityczny', 1, 'Poland goverment is politcal divison: right and left site.', 0), (9, 'desire', 'pragnienie', 1, 'I have big desire that come back normal life.', 0), (10, 'surgery', 'chirurgia', 1, 'My cousin studded surgery at University of Katowice.', 0), (11, 'distinguished', 'wybitny', 1, 'He is an distinguished scientist in Poland.', 0), (12, 'circumstances', 'okoliczności', 1, 'What were the circumstances of the outbreak of civil war?', 0), (13, 'respecting', 'dotyczący', 1, 'I found a document respecting my serious illness.', 0), (14, 'essential', 'kluczowy', 1, 'Always when telling a story, you have to go through a essential moment.', 0), (15, 'treating', 'leczenie', 1, 'They are treating a lot of children and women.', 0), (16, 'camp', 'obóz', 1, 'I went to camp on vacation.', 0), (17, 'cesarean section', 'cesarskie cięcie', 1, 'My neighbor had a caesarean section.', 0), (18, 'elementary', 'podstawówka', 1, 'I had only good grades in elementary.', 0), (19, 'rule', 'zasada', 1, 'The rules are there to break them.', 0), (20, 'clan divisions', 'podziały klanowe', 1, 'There is a clan division in my village.', 0), (21, 'cesarean section', 'cesarskie cięcie', 1, 'We are doing caesarean section and diffrent operations.', 0), (22, 'medical care', 'opieka medyczna', 1, 'You running a medical clinic,but much, much needed medical care to people', 0), (23, 'circumstances', 'okoliczności', 1, 'For you to become a doctor and to work with your mother in these circumstances.', 0), (24, 'law and order', 'prawo i porządek', 1, 'It was we were having that time government- law and order', 0), (25, 'gynecological complication', 'powikłania ginekologicze', 1, 'My mother died in gynecological complication.', 0), (26, 'war zone', 'strefa działań wojennych', 1, 'and if you did you are forgiven for wondering how an nutt manage to end up in a war zone', 0), (27, 'in war-torn', 'w ogarniętej wojną', 1, 'I actually was offered right out of medical school and actepted a volunteer contract to work with UNICEF in war-torn Somalia', 0), (28, 'caused by the war', 'spowodowane wojną', 1, '(brak)', 0), (29, 'genocide', 'ludobójstwo', 1, 'It was right on the heels of the Rwandan Genocide and ...', 0), (30, 'malnutrition and dehydration', 'niedożywienie i odwodnienie', 1, 'She had died hours before an malnutrition and deyhydration.', 0), (31, 'malnourished', 'niedożywienie', 1, 'Children became very malnourished', 0), (32, 'backyard', 'podwórko', 1, 'They are in our backyard', 0), (33, 'severe', 'silny', 1, 'We take the severe ones, and we reschedule the other ones the next day.', 0), (34, 'reschedule', 'zmienić termin', 1, 'We take the severe ones, and we reschedule the other ones the next day.', 0), (35, 'majority', 'większość', 1, 'The majority are women and girls.', 0), (36, 'admission', 'wstęp, dostęp, pozwolenie', 1, 'Would you explain the rules for admission?', 0), (37, 'distinguished', 'wybitny', 1, 'There is no clan distinguishes and political division in Somali sociaty.', 0), (38, 'Whomever', 'wyrzucamy', 1, 'Whomever makes those things we throw out.', 0), (39, 'surgeries', 'operacje', 1, 'You see 300 patients, 20 surgeries and 90,000 people to manage.', 0), (40, 'backyard', 'podwórko', 1, 'So our patients are women and children and they are in our backyard', 0), (41, 'reschedule', 'zmiana terminu', 1, 'We reschedule the other ones the next day.', 0), (42, 'Rules', 'zasady', 1, 'And the doctors have some very big rules about who can get treated at the clinic.', 0), (43, 'dehydration', 'odwodnienie', 1, 'When you take on a lot of sport activities, remember about drinking water to avoid dehydration!', 0), (44, 'Automatic rifle', 'karabin maszynowy', 1, 'Automatic rifles fire a series of shots each time you pull the trigger', 0), (45, 'force', 'siła', 1, 'Force is calculated as mass times accelaration.', 0), (46, 'Invasion', 'inwazja', 1, 'In 1588 Spain has invaded England.', 0), (47, 'various', 'różny', 1, 'Everybody have various views.', 0), (48, 'Humanitarian catastrophe', 'Katastrofa humanitarna', 1, 'Africa is one of the most country where is a humanitarian catastrophe.', 0), (49, 'Stiff', 'Sztywny', 1, 'My leg is stiff. My doctor gived me a iron splint after my breaking.', 0), (50, 'Occupying', 'Zajmowanie', 1, 'In World War II the Nazist occupying western part Poland.', 0), (51, 'Coercion', 'Przymus', 1, 'In times reigning Roma slaves were coercion to fight as gladiator.', 0), (52, 'nutt', 'Świr', 1, 'Everybody calls nutt people who eat bread with chips.', 0), (53, 'nursery school', 'szkoła medyczna', 1, 'I am planning to go to nursery school.', 0), (54, 'weapon', 'broń', 1, 'In Poland it\'s difficult to get a permission for weapon.', 0), (55, 'disclosure mechanisms', 'mechanizmy jawności', 1, 'the government is working on introducing a disclosure mechanism.', 0), (56, 'demand', 'popyt', 1, 'Demand for face masks has increased in the face of epidemics.', 0), (57, 'treaty', 'traktat', 1, 'The president has signed a new treaty', 0), (58, 'mostly', 'przeważnie', 1, 'Mostly poor children die because they are malnourished.', 0), (59, 'rifles', 'karabiny', 1, 'The rifles shouldn\'t be as accessible as they are now.', 0), (60, 'favor', 'przysługa', 1, 'The rich people should do favor children and help them.', 0), (61, 'staggering', 'oszałamiający', 1, 'A lot of children are starving, it\'s staggering.', 0), (62, 'displaced', 'przesiedlony', 1, 'Because of the war, most people are displaced to another place.', 0), (63, 'combat', 'walka', 1, 'The combat between states is terrible.', 0), (64, 'contributions', 'udziały', 1, 'Regular contributions like monthly contributions are a far more effective way to giving.', 0), (65, 'Terryfing', 'Okropny', 1, 'I can tell you that it is a terryfing and agonizing fear', 0), (66, 'Clockwork', 'Mechaniczna', 1, 'Can best be describe as \"Mad Max\" by way of \"a Clockwork Orange\"', 0), (67, 'Infans', 'niemowlę', 1, 'They were clutchig their infants very close', 0), (68, 'coercion', 'nacisk', 1, 'Not through force or coercion or invasion,but by simply looking at all', 0), (69, 'civillians', 'Cywile', 1, 'The vast majority of civillians like that young baby who are dying in war zones around the world', 0), (70, 'famine', 'głód', 1, 'Mostly as results of war-related famine and disease.', 0), (71, 'figure out', 'rozwiązać', 1, 'I was part of a team that was tasked with trying figure out how best to respond to this humanitarian catastrope.', 0), (72, 'scrutinzing', 'badać', 1, 'This is a relationshio worth scrutinzing.', 0), (73, 'increased', 'wzrosła', 1, 'Increased control mechanisms won\'t solve that problem.', 0), (74, 'terrifining', 'przerażające', 1, 'I can tell you that it is a terryfing and agonizing fear', 0), (75, 'beyond', 'poza', 1, 'What when if we go beyond small arms for a second?', 0); -- -------------------------------------------------------- -- -- Struktura tabeli dla tabeli `Unit_1` -- CREATE TABLE `Unit_1` ( `id` int(11) NOT NULL, `v1` varchar(70) CHARACTER SET utf8 NOT NULL, `v2` varchar(70) CHARACTER SET utf8 NOT NULL, `weight` int(11) NOT NULL, `zdanie` varchar(255) CHARACTER SET utf8 NOT NULL, `flaga` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Zrzut danych tabeli `Unit_1` -- INSERT INTO `Unit_1` (`id`, `v1`, `v2`, `weight`, `zdanie`, `flaga`) VALUES (6, 'extended family', 'dalsza rodzina, wielopokoleniowa rodzina', 1, '(brak)jjj', 1), (10, 'great-grandparents', 'pradziadkowie', 1, '777', 1), (11, 'my immediate family', 'moja najbliższa rodzina', 1, '(brak)', 1), (12, 'include', 'zawierać', 1, '(brak)', 1), (13, 'inherit', 'odziedziczyć', 1, '(brak)', 1), (14, 'inherited', 'odziedziczony', 1, '(brak)', 1), (15, 'medallist', 'medalista', 1, '(brak)', 1), (16, 'relative', 'krewny', 1, '(brak)', 1), (17, 'royal', 'królewski', 1, '(brak)', 1), (18, 'take after', 'upodabniać, przypominać kogoś, być podobnym', 1, '(brak)', 1), (19, 'aim', 'cel, dążenie', 1, '(brak)', 1), (20, 'apply for a job', 'ubiegać się o pracę', 1, '(brak)', 1), (21, 'colleague', 'kolega', 1, '(brak)', 1), (22, 'draft', 'projekt, szkic, wersja roboczac', 1, '(brak)cc', 1), (23, 'publishing company', 'wydawnictwo', 1, '(brak)', 1), (24, 'specialisation', 'specjalizacja', 1, '(brak)', 1), (25, 'version', 'wersja', 1, '(brak)', 1), (26, 'ability', 'zdolność', 1, '(brak)', 1), (27, '', '', 1, '', 1), (28, 'be in charge', 'być u władzy, rządzić', 1, '(brak)', 1), (29, 'gene', 'gen', 1, '(brak)', 1), (30, 'genetic', 'genetyczny', 1, '(brak)', 1), (31, 'accurate', 'dokładny, trafny', 1, '(brak)', 1), (32, 'chain', 'łańcuch', 1, '(brak)', 1), (33, 'classmate', 'kolega z klasy', 1, '(brak)', 1), (34, 'handlebar', 'kierownica', 1, '(brak)', 1), (35, 'pupil', 'uczeń', 1, '(brak)', 1), (36, 'team-mate', 'kolega z drużyny', 1, '(brak)', 1), (37, 'according to', 'według, zgodnie z', 1, '(brak)', 1), (38, 'balance', 'bilans', 1, '(brak)', 1), (39, 'challenge', 'wyzwanie', 1, '(brak)', 1), (40, 'do someone a favour', 'zrobić komuś przysługę', 1, '(brak)', 1), (41, 'get on with someone', 'dogadywać się z kimś być z kimś w dobrych stosunkach', 1, '(brak)', 1), (42, 'go on a diet', 'przejść na dietę', 1, '(brak)', 1), (43, 'research agency', 'agencja badawcza', 1, '(brak)', 1), (44, 'respond', 'odpowiadać', 1, '(brak)', 1), (45, 'take part in', 'wziąć udział w', 1, '(brak)', 1), (46, 'take responsibility for', 'wziąć odpowiedzialność za', 1, '(brak)', 1), (47, 'appropriately', 'odpowiednio', 1, '(brak)', 1), (48, 'answer briefly', 'odpowiadać krótko, zwięźle', 1, '(brak)', 1), (49, 'dress smartly', 'ubrać się elegancko', 1, '(brak)', 1), (50, 'send references', 'wysłać referencje', 1, '(brak)', 1), (51, 'arrive on time', 'przybyć na czas', 1, '(brak)', 1), (52, 'avoid eye contact', 'unikać kontaktu wzrokowego', 1, '(brak)', 1), (53, 'show enthusiasm', 'pokazać entuzjazm', 1, '(brak)', 1), (54, 'be prepared', 'być przygotowany', 1, '(brak)', 1), (55, 'face-to-face', 'twarzą w twarz', 1, '(brak)', 1), (56, 'placement', 'umieszczenie, ulokowanie', 1, '(brak)', 1), (57, 'potential', 'potencjał', 1, '(brak)', 1), (58, 'on the summer camp', 'na letnim obozie', 1, '(brak)', 1), (59, 'according', 'stosownie, zależnie', 1, '(brak)', 1), (60, 'community', 'społeczność, wspólnota', 1, '(brak)', 1), (61, 'currency', 'waluta', 1, '(brak)', 1), (62, 'yes, definitely', 'tak, zdecydowanie', 1, '(brak)', 1), (63, 'of course!', 'oczywiście!', 1, '(brak)', 1), (64, 'that\'s right!', 'racja!', 1, '(brak)', 1), (65, 'you\'re correct', 'masz rację (ze słówkiem correct)', 1, '(brak)', 1), (66, 'I see', 'Rozumiem (ze słówkiem see)', 1, '(brak)', 1), (67, 'no problem', 'nie ma sprawy', 1, '(brak)', 1), (68, 'you\'re welcome', 'nie ma za co, proszę bardzo', 1, '(brak)', 1), (69, 'go ahead', 'śmiało (idź dalej, naprzód)', 1, '(brak)', 1), (70, 'please continue', 'proszę kontynuować', 1, '(brak)', 1), (71, 'reason', 'powód', 1, '(brak)', 1), (72, 'plans for the future', 'plany na przyszłość', 1, '(brak)', 1), (73, 'work experience', 'doświadczenie w pracy', 1, '(brak)', 1), (74, 'expectations', 'oczekiwania', 1, '(brak)', 1), (75, 'could I ask the question?', 'mógłbym zadać pytanie?', 1, '(brak)', 1), (76, 'there are a couple of things I\'d like to ask about', 'jest parę rzeczy o które chciałbym zapytać', 1, '(brak)', 1), (77, 'can I ask you about that?', 'czy mogę Cię zapytać o to?', 1, '(brak)', 1), (78, 'do you have any questions?', 'czy masz jakieś pytania?', 1, '(brak)', 1), (79, 'any queries?', 'jakieś zapytania?', 1, '(brak)', 1), (80, 'so for me the most important thing is to', 'więc dla mnie najważniejszą rzeczą jest to aby', 1, '(brak)', 1), (81, 'I suppose', 'przypuszczam', 1, '(brak)', 1), (82, 'one thing I\'d like to say', 'jedną rzecz chciałbym powiedzieć', 1, '(brak)', 1), (83, 'actually I have a query', 'właściwie mam zapytanie', 1, '(brak)', 1), (84, 'opportunity', 'okazja sposobność', 1, '(brak)', 1), (85, 'involved', 'zaangażowany', 1, '(brak)', 1), (86, 'introduce myself', 'przedstawić się', 1, '(brak)', 1), (87, 'in these fields', 'w tych dziedzinach', 1, '(brak)', 1), (88, 'instead', 'zamiast', 1, '(brak)', 1), (89, 'more complex sentences', 'bardziej złożone zdania', 1, '(brak)', 1), (90, 'polskie', 'polandkk', 1, 'zdanie', 1), (92, 'polskie', 'jknjk', 1, 'to jest przykladowe zdanie', 1), (93, 'polskie', 'polands', 1, 'zdanie', 1), (94, 'v1', 'poland', 1, 'to jest przykladowe zdanie', 1); -- -------------------------------------------------------- -- -- Struktura tabeli dla tabeli `Unit_2` -- CREATE TABLE `Unit_2` ( `id` int(10) NOT NULL, `v1` varchar(255) DEFAULT NULL, `v2` varchar(255) DEFAULT NULL, `weight` int(10) DEFAULT NULL, `zdanie` varchar(255) DEFAULT NULL, `flaga` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Zrzut danych tabeli `Unit_2` -- INSERT INTO `Unit_2` (`id`, `v1`, `v2`, `weight`, `zdanie`, `flaga`) VALUES (1, 'partly true', 'częściowo prawda', 1, '(brak)', 0), (2, 'inaccurate', 'niedokładny, nieprecyzyjny', 1, '(brak)', 0), (3, 'exact words', 'dokładne słowa', 1, '(brak)', 0), (4, 'biopic', 'film biograficzny', 1, '(brak)', 0), (5, 'docudrama', 'dramat dokumentalny', 1, '(brak)', 0), (6, 'characters battle with their minds', 'postacie walczą z myślami, biją się z myślami', 1, '(brak)', 0), (7, 'imaginary world', 'wyimaginowany świat', 1, '(brak)', 0), (8, 'in the life of a real person', 'w życiu prawdziwej osoby', 1, '(brak)', 0), (9, 'old-fashioned costume', 'staroświecki, staromodny kostium', 1, '(brak)', 0), (10, 'survive', 'przeżyć, przetrwać', 1, '(brak)', 0), (11, 'stockbroker', '<NAME>', 1, '(brak)', 0), (12, 'be on TV', 'być w TV', 1, '(brak)', 0), (13, 'be in a newspaper', 'być w gazecie', 1, '(brak)', 0), (14, 'do something embarrassing in public', 'robić coś żenującego publicznie', 1, '(brak)', 0), (15, 'write a poem', 'napisać wiersz', 1, '(brak)', 0), (16, 'go to a country on a different continent', 'udać się do kraju na innym kontynencie', 1, '(brak)', 0), (17, 'collect something as a hobby', 'zbierać coś jako hobby', 1, '(brak)', 0), (18, 'see someone commit a crime', 'zobaczyć kogoś popełniającego przestępstwo', 1, '(brak)', 0), (19, 'at 12', 'o 12', 1, '(brak)', 0), (20, 'at night', 'w nocy', 1, '(brak)', 0), (21, 'at the weekend', 'w weekend', 1, '(brak)', 0), (22, 'in July', 'w lipcu', 1, '(brak)', 0), (23, 'in 2010', 'w 2010 roku', 1, '(brak)', 0), (24, 'on the 4th of February', 'czwartego lutego', 1, '(brak)', 0), (25, 'in the morning', 'rano', 1, '(brak)', 0), (26, 'on Thursday morning', 'w czwartek rano', 1, '(brak)', 0), (27, 'at lunchtime', 'w porze lunchu', 1, '(brak)', 0), (28, 'on Wednesday', 'w środę', 1, '(brak)', 0), (29, 'in the autumn', 'w jesieni, na jesień', 1, '(brak)', 0), (30, 'on New Year\'s Day', 'w Nowy Rok', 1, '(brak)', 0), (31, 'in the twenty-first century', 'w dwudziestym pierwszym wieku', 1, '(brak)', 0), (32, 'see on TV', 'widzieć w telewizji', 1, '(brak)', 0), (33, 'go for a walk', 'iść na spacer', 1, '(brak)', 0), (34, 'travel by boat', 'podróżować łódką', 1, '(brak)', 0), (35, 'go for a drive', 'udać się na przejażdżkę', 1, '(brak)', 0), (36, 'travel by plane', 'podróżować samolotem', 1, '(brak)', 0), (37, 'go for a run', 'iść pobiegać, iść na przebieżkę', 1, '(brak)', 0), (38, 'travel by coach', 'podróżować autokarem', 1, '(brak)', 0), (39, 'speak on the phone', 'rozmawiać przez telefon', 1, '(brak)', 0), (40, 'travel by train', 'podróżować pociągiem', 1, '(brak)', 0), (41, 'hear on the radio', 'słyszeć w radiu', 1, '(brak)', 0), (42, 'on my own', 'na własną rękę', 1, '(brak)', 0), (43, 'by mistake', 'przez pomyłkę', 1, '(brak)', 0), (44, 'on business', 'w interesach, służbowo', 1, '(brak)', 0), (45, 'by chance', 'przypadkowo, przez przypadek', 1, '(brak)', 0), (46, 'by hand', 'ręcznie', 1, '(brak)', 0), (47, 'in the end', 'na końcu', 1, '(brak)', 0), (48, 'on purpose', 'specjalnie, celowo', 1, '(brak)', 0), (49, 'arrive on time', 'przybyć na czas', 1, '(brak)', 0), (50, 'in a moment', 'za chwilę', 1, '(brak)', 0), (51, 'in a hurry', 'w pośpiechu', 1, '(brak)', 0), (52, 'keep up-to-date', 'utrzymać się na bieżąco', 1, '(brak)', 0), (53, 'conspiracy theory', 'teoria spiskowa', 1, '(brak)', 0), (54, 'involved', 'zaangażowany, wplątany', 1, '(brak)', 0), (55, 'suspects', 'podejrzani', 1, '(brak)', 0), (56, 'shadow', 'cień', 1, '(brak)', 0), (57, 'love story', 'historia miłosna', 1, '(brak)', 0), (58, 'alcohol', 'alkohol', 1, '(brak)', 0), (59, 'photograph / photographer', 'fotografia / fotograf', 1, '(brak)', 0), (60, 'a man with a gun', 'człowiek z pistoletem', 1, '(brak)', 0), (61, 'flag', 'flaga', 1, '(brak)', 0), (62, 'Federal Bureau of Investigation', 'FBI', 1, '(brak)', 0), (63, 'report', 'raport', 1, '(brak)', 0), (64, 'surprisingly', 'zaskakująco', 1, '(brak)', 0), (65, 'visible', 'widoczny, widzialny', 1, '(brak)', 0), (66, 'apparently', 'pozornie', 1, '(brak)', 0), (67, 'wave', 'falować, fala', 1, '(brak)', 0), (68, 'however', 'jednak, jakkolwiek, wszakże...', 1, '(brak)', 0), (69, 'logically', 'logicznie', 1, '(brak)', 0), (70, 'lighting conditions', 'warunki oświetleniowe', 1, '(brak)', 0), (71, 'doubts', 'wątpliwości', 1, '(brak)', 0), (72, 'explain', 'wyjaśniać', 1, '(brak)', 0), (73, 'on the thirty-first of August', '31 sierpnia', 1, '(brak)', 0), (74, 'accident', 'wypadek', 1, '(brak)', 0), (75, 'relationship', 'związek', 1, '(brak)', 0), (76, 'drunken condition', 'stan pod wpływem alkoholu', 1, '(brak)', 0), (77, 'be pregnant', 'być w ciąży', 1, '(brak)', 0), (78, 'plan to marry', 'planować wyjść za mąż', 1, '(brak)', 0), (79, 'assassination', 'zamach', 1, '(brak)', 0), (80, 'leader', 'przywódca, lider', 1, '(brak)', 0), (81, 'crowd / crowds / crowded', 'tłum / tłumy / zatłoczony', 1, '(brak)', 0), (82, 'was arrested', 'został aresztowany', 1, '(brak)', 0), (83, 'immediately', 'natychmiast', 1, '(brak)', 0), (84, 'almost', 'prawie', 1, '(brak)', 0), (85, 'conclude', 'wyciągnąć wniosek', 1, '(brak)', 0), (86, 'he acted alone', 'on działał sam', 1, '(brak)', 0), (87, 'investigation', 'śledztwo', 1, '(brak)', 0), (88, 'criticise', 'krytykować', 1, '(brak)', 0), (89, 'agree', 'zgadzać się', 1, '(brak)', 0), (90, 'summary', 'podsumowanie, streszczenie', 1, '(brak)', 0), (91, 'claim', 'twierdzić, deklarować', 1, '(brak)', 0), (92, 'he was drunk', 'on był pijany', 1, '(brak)', 0), (93, 'prison', 'więzienie', 1, '(brak)', 0), (94, 'calm', 'spokój, spokojny', 1, '(brak)', 0), (95, 'they were talking to each other', 'rozmawiali ze sobą', 1, '(brak)', 0), (96, 'in the middle of the...', 'na środku..., w środku... (czegoś tam)', 1, '(brak)', 0), (97, 'better view', 'lepszy widok', 1, '(brak)', 0), (98, 'miss the chance of seeing somebady', 'przegapić szansę zobaczenia kogoś', 1, '(brak)', 0), (99, 'for the first time', 'po raz pierwszy', 1, '(brak)', 0), (100, 'it was difficult to hear', 'było trudno usłyszeć', 1, '(brak)', 0), (101, 'die in crash', 'zginąć w wypadku/katastrofie', 1, '(brak)', 0), (102, 'attack', 'atak, atakować', 1, '(brak)', 0), (103, 'violent', 'gwałtowny, pełen przemocy', 1, '(brak)', 0), (104, 'violence', 'przemoc', 1, '(brak)', 0), (105, 'workers threaten strikes', 'pracownicy grożą strajkami', 1, '(brak)', 0), (106, 'massive earthquake hits Los Angeles', 'masywne trzęsienie ziemi uderza w Los Angeles', 1, '(brak)', 0), (107, 'floods destroy crops', 'powodzie niszczą uprawy', 1, '(brak)', 0), (108, 'hostages released', 'zakładnicy zwolnieni (wypuszczeni)', 1, '(brak)', 0), (109, 'rebels', 'rebelianci', 1, '(brak)', 0), (110, 'collapse of banks', 'upadek (krach) banków', 1, '(brak)', 0), (111, 'damage and destroy', 'uszkodzić i zniszczyć', 1, '(brak)', 0), (112, 'hostages were allowed to go free', 'zakładnicy zostali puszczeni wolno', 1, '(brak)', 0), (113, 'serious crime', 'poważne przestępstwo', 1, '(brak)', 0), (114, 'disaster', 'karastrofa', 1, '(brak)', 0), (115, 'economic crisis affects business', 'kryzys ekonomiczny wpływa na biznes', 1, '(brak)', 0), (116, 'a lot of farmland is under water', 'dużo pól uprawnych jest pod wodą (zalane)', 1, '(brak)', 0), (117, 'people refuse to go to work', 'ludzie odmawiają pójścia do pracy', 1, '(brak)', 0), (118, 'begin to fight', 'zaczynać walczyć', 1, '(brak)', 0), (119, 'who were you with?', 'z kim byłeś?', 1, '(brak)', 0), (120, 'who is the story about?', 'o kim jest ta historia?', 1, '(brak)', 0), (121, 'what happened?', 'co się stało?', 1, '(brak)', 0), (122, 'why did it happen?', 'dlaczego to się stało?', 1, '(brak)', 0), (123, 'where did it happen?', 'gdzie to się stało?', 1, '(brak)', 0), (124, 'when did it happen?', 'kiedy to się stało?', 1, '(brak)', 0), (125, 'falsely obtain', 'fałszywie uzyskać', 1, '(brak)', 0), (126, 'former', 'były (np. prezydent)', 1, '(brak)', 0), (127, 'discover', 'odkryć', 1, '(brak)', 0), (128, 'currently', 'obecnie', 1, '(brak)', 0); -- -------------------------------------------------------- -- -- Struktura tabeli dla tabeli `Unit_3` -- CREATE TABLE `Unit_3` ( `id` int(10) NOT NULL, `v1` varchar(255) DEFAULT NULL, `v2` varchar(255) DEFAULT NULL, `weight` int(10) DEFAULT NULL, `zdanie` varchar(255) DEFAULT NULL, `flaga` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Zrzut danych tabeli `Unit_3` -- INSERT INTO `Unit_3` (`id`, `v1`, `v2`, `weight`, `zdanie`, `flaga`) VALUES (1, 'nominated for an award', 'nominowany do nagrody', 1, '(brak)', 0), (2, 'you\'re going where?', 'wybierasz się gdzieś?', 1, '(brak)', 0), (3, 'mention', 'wspomnieć', 1, '(brak)', 0), (4, 'cope with', 'radzić sobie z', 1, '(brak)', 0), (5, 'unless', 'chyba że', 1, '(brak)', 0), (6, 'nosy', 'wścibski', 1, '(brak)', 0), (7, 'noisy', 'hałaśliwy, głośny', 1, '(brak)', 0), (8, 'flexible', 'elastyczny', 1, '(brak)', 0), (9, 'freedom', 'wolność', 1, '(brak)', 0), (10, 'beat', 'pokonać, bić, bębnić', 1, '(brak)', 0), (11, 'follow your lead', 'podążać twoim śladem', 1, '(brak)', 0), (12, 'object', 'sprzeciwiać się, obiekt', 1, '(brak)', 0), (13, 'arrangements', 'plany, ustalenia', 1, '(brak)', 0), (14, 'tend to', 'mieć skłonność do', 1, '(brak)', 0), (15, 'what are you two doing?', 'co wy dwoje robicie?', 1, '(brak)', 0), (16, 'change mind about', 'zmienić zdanie na temat', 1, '(brak)', 0), (17, 'to be nosy', 'być wścibskim', 1, '(brak)', 0), (18, 'panic', 'panika', 1, '(brak)', 0), (19, 'last minute arrangements', 'plany, ustalenia w ostatniej chwili', 1, '(brak)', 0), (20, 'if you can\'t beat them join them', 'jeśli nie możesz ich pokonać do nich dołączyć', 1, '(brak)', 0), (21, 'related to', 'powiązany z', 1, '(brak)', 0), (22, 'gossip', 'plotka', 1, '(brak)', 0), (23, 'compliment', 'komplement', 1, '(brak)', 0), (24, 'moan', '<NAME>', 1, '(brak)', 0), (25, 'boast', 'chwalić się', 1, '(brak)', 0), (26, 'argue', 'kłócić się', 1, '(brak)', 0), (27, 'warn', 'ostrzegać', 1, '(brak)', 0), (28, 'chat', 'pogawędzić', 1, '(brak)', 0), (29, 'apologise', 'przepraszać', 1, '(brak)', 0), (30, 'to water the plants', 'podlewać rośliny', 1, '(brak)', 0), (31, 'talk to somebody', 'mówić do kogoś', 1, '(brak)', 0), (32, 'maintain', 'utrzymanie', 1, '(brak)', 0), (33, 'ink', 'atrament, tusz', 1, '(brak)', 0), (34, 'fountain pen', 'wieczne pióro', 1, '(brak)', 0), (35, 'store', 'przechować', 1, '(brak)', 0), (36, 'handwriting', 'pismo ręczne', 1, '(brak)', 0), (37, 'thumb', 'kciuk', 1, '(brak)', 0), (38, 'thumbprint', 'odcisk kciuka', 1, '(brak)', 0), (39, 'digital', 'cyfrowy', 1, '(brak)', 0), (40, 'digital signature', 'podpis cyfrowy', 1, '(brak)', 0), (41, 'on demand', 'na żądanie', 1, '(brak)', 0), (42, 'in the long term', 'w dłuższej perspektywie', 1, '(brak)', 0), (43, 'claim', 'stwierdzać', 1, '(brak)', 0), (44, 'artificial', 'sztuczny', 1, '(brak)', 0), (45, 'artificial intelligence', 'sztuczna inteligencja', 1, '(brak)', 0), (46, 'development', 'rozwój', 1, '(brak)', 0), (47, 'intermediate', 'pośredni', 1, '(brak)', 0), (48, 'an intermediary', 'pośrednik', 1, '(brak)', 0), (49, 'will stop barriers', 'bariery przestaną istnieć', 1, '(brak)', 0), (50, 'retina', 'siatkówka oka', 1, '(brak)', 0), (51, 'retina scan', 'skan siatkówki oka', 1, '(brak)', 0), (52, 'the most straightforward way to do something', 'najprostszy sposób aby coś zrobić', 1, '(brak)', 0), (53, 'method of delivery', 'sposób dostawy', 1, '(brak)', 0), (54, 'in the near future', 'w najbliższej przyszłości', 1, '(brak)', 0), (55, 'in the next ten years', 'w ciągu najbliższych dziesięciu lat', 1, '(brak)', 0), (56, 'in a month or two', 'w ciągu miesiąca lub dwóch', 1, '(brak)', 0), (57, 'in the short term', 'w krótkim terminie', 1, '(brak)', 0), (58, 'in ten years\' time', 'w dziesięć lat', 1, '(brak)', 0), (59, 'shortly', 'niedługo', 1, '(brak)', 0), (60, 'predictions', 'przewidywania, przepowiednia, prognoza', 1, '(brak)', 0), (61, 'certain', 'pewny', 1, '(brak)', 0), (62, 'turning point', 'punkt zwrotny', 1, '(brak)', 0), (63, 'possible', 'możliwy', 1, '(brak)', 0), (64, 'work habits', 'uniform roboczy', 1, '(brak)', 0), (65, 'small talk', 'pogawędka', 1, '(brak)', 0), (66, 'against', 'przeciwko', 1, '(brak)', 0), (67, 'work against the clock', '\"walczyć z czasem\" (idiom)', 1, '(brak)', 0), (68, 'on our mind', 'w naszych myślach', 1, '(brak)', 0), (69, 'it\'s not my cup of tea', '\"to nie w moim stylu\" (idiom)', 1, '(brak)', 0), (70, 'close to my heart', 'bliższy memu sercu', 1, '(brak)', 0), (71, 'be in hot water', '\"mieć kłopoty\" (idiom)', 1, '(brak)', 0), (72, 'put my foot in it', '\"strzelić gafę\" (idiom)', 1, '(brak)', 0), (73, 'running out of time', '\"kończy się czas\" (idiom)', 1, '(brak)', 0), (74, 'keep an eye on', 'mieć na kogoś oko', 1, '(brak)', 0), (75, 'give a hand', 'podać pomocną dłoń, pomóc', 1, '(brak)', 0), (76, 'a piece of cake', '\"bułka z masłem\" (idiom)', 1, '(brak)', 0), (77, 'dark horse', 'czarny koń', 1, '(brak)', 0), (78, 'the rat race', 'wyścig szczurów', 1, '(brak)', 0), (79, 'award', 'nagroda, wyróżnienie', 1, '(brak)', 0), (80, 'celebrate', 'świętować, obchodzić', 1, '(brak)', 0), (81, 'misunderstanding', 'nieporozumienie', 1, '(brak)', 0), (82, 'confirm', 'potwierdzić', 1, '(brak)', 0), (83, 'host', 'gospodarz', 1, '(brak)', 0), (84, 'generous', 'hojny', 1, '(brak)', 0), (85, 'recognise', 'rozpoznawać', 1, '(brak)', 0), (86, 'generous', '<NAME>', 1, '(brak)', 0), (87, 'at the table', 'przy stole', 1, '(brak)', 0), (88, 'the thousand dollars', 'tysiąc dolarów', 1, '(brak)', 0), (89, 'do you mean', 'masz na myśli', 1, '(brak)', 0), (90, 'again', 'ponownie, znowu', 1, '(brak)', 0), (91, 'I didn\'t catch any of that.', 'Nie załapałem nic z tego.', 1, '(brak)', 0), (92, 'You\'ve lost me.', '\"Pogubiłeś się w tym co mówię\" {idiom używany podczas dialogu gdy ktoś przestał nadąrzać za tym co mówisz}', 1, 'Other words: You can\'t follow what i\'m saying?', 0), (93, 'I\'ve lost you.', '\"Pogubiłem się w tym co mówisz\" {idiom używany podczas dialogu gdy przestałeś nadąrzać za tym co ktoś mówi}', 1, 'Other words:I can\'t follow what you\'re saying.', 0), (94, 'Could you repeat that?', 'Mógłbyś to powtórzyć?', 1, '(brak)', 0), (95, 'Can you say that again?', 'Czy możesz powiedzieć to poownie?', 1, '(brak)', 0), (96, 'What exactly do you mean?', 'Co dokładnie masz na myśli?', 1, '(brak)', 0), (97, 'I don\'t get what you\'re saying', 'Nie łapie co mówisz.', 1, '(brak)', 0), (98, 'I mean...', 'To znaczy...', 1, '(brak)', 0), (99, 'What does it mean?', 'Co to znaczy/oznacza?', 1, '(brak)', 0), (100, 'Do you mean to tell me...?', 'Chcesz mi przez to powiedzieć...?', 1, '(brak)', 0), (101, 'In other words...', 'Innymi słowy...', 1, '(brak)', 0), (102, 'other', 'inny', 1, '(brak)', 0), (103, 'break the ice', '\"przełamać lody\" (idiom)', 1, 'Everyone was nervous, so Jackie told a few jokes to break the ice.', 0), (104, 'learn something by heart', '\"uczyć się na pamięć\" (idiom)', 1, 'Tomorrow there\'s a test on this poem. I have to learn it by heart.', 0), (105, 'go window shopping', '\"iść na spacer z oglądaniem wystaw sklepowych {nie mieć w zamiarze niczego kupić} \" (idiom)', 1, 'I\'ve got no money at the moment but we can go window shopping if you want.', 0), (106, 'travel light', '\"podróżować z niewielkim bagażem\" (idiom)', 1, 'He always travels light. He only takes one suitcase even for long trips.', 0), (107, 'let your hair down', '\"pójść w tango\" (idiom)', 1, 'You\'ve been working non-stop. Why don\'t you go out and let your hair down?', 0), (108, 'be in two minds', '\"wahać się\" (idiom)', 1, 'I\'m in two minds. I don\'t know if I want the black one or the red one.', 0), (109, 'arrange', 'zorganizować', 1, '(brak)', 0); -- -------------------------------------------------------- -- -- Struktura tabeli dla tabeli `Unit_4` -- CREATE TABLE `Unit_4` ( `id` int(10) NOT NULL, `v1` varchar(255) DEFAULT NULL, `v2` varchar(255) DEFAULT NULL, `weight` int(10) DEFAULT NULL, `zdanie` varchar(255) DEFAULT NULL, `flaga` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Zrzut danych tabeli `Unit_4` -- INSERT INTO `Unit_4` (`id`, `v1`, `v2`, `weight`, `zdanie`, `flaga`) VALUES (1, 'entrepreneur', 'przedsiębiorca', 1, '(brak)', 0), (2, 'effort', 'wysiłek', 1, '(brak)', 0), (3, 'qualities', 'cechy', 1, '(brak)', 0), (4, 'quality', 'jakość', 1, '(brak)', 0), (5, 'manage', 'pokierować czymś, kimś', 1, '(brak)', 0), (6, 'express', 'wyraźić, okazać', 1, '(brak)', 0), (7, 'remember', 'przypominać sobie', 1, '(brak)', 0), (8, 'remind', 'przypominać komuś', 1, '(brak)', 0), (9, 'forget', 'zapomnieć', 1, '(brak)', 0), (10, 'leave', 'zostawić', 1, '(brak)', 0), (11, 'hear', 'słyszeć, usłyszeć', 1, '(brak)', 0), (12, 'listen', 'słuchać, posłuchać', 1, '(brak)', 0), (13, 'I wasn\'t listening.', 'Nie słuchałem.', 1, '(brak)', 0), (14, 'I wasn\'t hearing.', 'Nie usłyszałem.', 1, '(brak)', 0), (15, 'fun', 'zabawa, uciecha', 1, '(brak)', 0), (16, 'funny', 'zabawny, śmieszny', 1, '(brak)', 0), (17, 'borrow from', 'pożyczyć od', 1, '(brak)', 0), (18, 'lend to', 'pożyczać komuś', 1, '(brak)', 0), (19, 'miss', 'przegapić, tęskić', 1, '(brak)', 0), (20, 'lose', 'stracić, przegrać', 1, '(brak)', 0), (21, 'critic', 'krytyk', 1, '(brak)', 0), (22, 'winemaker', 'winiarz (osoba robiąca wino)', 1, '(brak)', 0), (23, 'paradise', 'raj', 1, '(brak)', 0), (24, 'willing', 'skłonny, chętny', 1, '(brak)', 0), (25, 'snorkel', 'nurkowanie z rurką', 1, '(brak)', 0), (26, 'dive', 'nurkować głębinowo', 1, '(brak)', 0), (27, 'duty', 'obowiązek, cło', 1, '(brak)', 0), (28, 'diary', '<NAME>', 1, '(brak)', 0), (29, 'covering letter', 'list motywacyjny', 1, '(brak)', 0), (30, 'apprentice', 'praktykant, uczeń', 1, '(brak)', 0), (31, 'compete', 'rywalizować, konkurować', 1, '(brak)', 0), (32, 'compete for a job', 'konkurować o pracę', 1, '(brak)', 0), (33, 'hell', 'piekło', 1, '(brak)', 0), (34, 'bloody hell', 'jasna cholera (można używać zamiennie z k... mać ;)', 1, '(brak)', 0), (35, 'get fired', 'zostać zwolnionym', 1, '(brak)', 0), (36, 'empire', 'imperium', 1, '(brak)', 0), (37, 'kingdom', 'królestwo', 1, '(brak)', 0), (38, 'review', 'recenzja', 1, '(brak)', 0), (39, 'survey', 'badanie, przegląd', 1, '(brak)', 0), (40, 'contest = competition', 'konkurs', 1, '(brak)', 0), (41, 'be not easy to please', 'być trudnym do zadowolenia', 1, '(brak)', 0), (42, 'either', 'albo', 1, '(brak)', 0), (43, 'from my point of view', 'z mojego punktu widzenia', 1, '(brak)', 0), (44, 'Have you got what it takes?', 'Czy masz to czego potrzeba?', 1, 'Have you got what it takes to be a millionaire?', 0), (45, 'moderately', 'umiarkowanie', 1, '(brak)', 0), (46, 'spender', '\"rozrzutnik pieniędzy\"', 1, '(brak)', 0), (47, 'effort', 'wysiłek', 1, '(brak)', 0), (48, 'competitive', 'konkurencyjny', 1, '(brak)', 0), (49, 'indecisive', 'niezdecydowany', 1, '(brak)', 0), (50, 'decided', 'zdecydowany', 1, '(brak)', 0), (51, 'think outside the box', 'myśleć poza schematem', 1, '(brak)', 0), (52, 'risk', 'ryzyko', 1, '(brak)', 0), (53, 'motivate', 'motywować', 1, '(brak)', 0), (54, 'work with a lot of effort', 'pracować w dużym wysiłku', 1, '(brak)', 0), (55, 'have problems making decision', 'mieć problemy w podejmowaniu decyzji', 1, '(brak)', 0), (56, 'think differently or in a new way', 'myśleć inaczej lub w nowy sposób', 1, '(brak)', 0), (57, 'want to be more successful than others', 'chcieć być bardziej skutecznym niż inni', 1, '(brak)', 0), (58, 'want to achieve something', 'chcieć coś osiągnąć', 1, '(brak)', 0), (59, 'a risk taker', 'osoba podejmująca ryzyko', 1, '(brak)', 0), (60, 'to be rejected', 'być odrzuconym', 1, '(brak)', 0), (61, 'reject', 'odrzucać', 1, '(brak)', 0), (62, 'miserable', 'beznadziejny', 1, '(brak)', 0), (63, 'in stock', 'w magazynie, na stanie', 1, '(brak)', 0), (64, 'particular', 'konkretny, szczególny', 1, '(brak)', 0), (65, 'put on a lot of weight', 'przybrać dużo na wadze', 1, '(brak)', 0), (66, 'wonderful', 'wspaniały, cudowny', 1, '(brak)', 0), (67, 'brilliant', 'znakomity', 1, '(brak)', 0), (68, 'awful', 'okropny', 1, '(brak)', 0), (69, 'enormous', 'ogromny', 1, '(brak)', 0), (70, 'exhaust', 'wyczerpać, wydechowy', 1, '(brak)', 0), (71, 'boiling', 'wrzenie', 1, '(brak)', 0), (72, 'freezing', 'lodowaty', 1, '(brak)', 0), (73, 'delicious', 'pyszne', 1, '(brak)', 0), (74, 'furious', 'wściekły', 1, '(brak)', 0), (75, 'impossible', 'niemożliwe', 1, '(brak)', 0), (76, 'crew', 'załoga, ekipa', 1, '(brak)', 0), (77, 'blast off', 'wystrzelić, odpalić', 1, 'Blast off into space.', 0), (78, 'a jar', 'słoik', 1, '(brak)', 0), (79, 'regarding', 'w sprawie', 1, '(brak)', 0), (80, 'I am writing to you regarding your advertisement for... with i saw on...', 'Piszę do Ciebie w sprawie Twojego ogłoszenia dla... które widziałem na...', 1, '(brak)', 0), (81, 'I would like to submit an application for the post.', 'Chciałbym złożyć wniosek do urzędu.', 1, '(brak)', 0), (82, 'submit', 'zgłaszać', 1, '(brak)', 0), (83, 'Please find my CV attached.', 'Proszę znaleźć moje CV w załączeniu.', 1, '(brak)', 0), (84, 'I believe that I meet all the requirements you outline in your advertisement.', 'Wieżę, że spełniam wszystkie wymagania które zaznaczyliście w ogłoszeniu.', 1, '(brak)', 0), (85, 'advertisement', 'reklama, ogłoszenie', 1, '(brak)', 0), (86, 'requirements', 'wymagania', 1, '(brak)', 0), (87, 'outline', 'zarys, kontur, szkic', 1, '(brak)', 0), (88, 'I had hands-on experience of...', 'Mam praktyczne doświadczenie w...', 1, '(brak)', 0), (89, 'experience', 'doświadczenie', 1, '(brak)', 0), (90, 'prove', 'udowodnić', 1, '(brak)', 0), (91, 'proven ability in...', 'Sprawdzona zdolność w...', 1, '(brak)', 0), (92, 'ability', 'zdolność', 1, '(brak)', 0), (93, 'require', 'wymagać', 1, '(brak)', 0), (94, 'If you require any further information, or would like to arrange an interview, please call me on...', 'Jeśli potrzebujesz dodatkowych informacji, lub chcesz umówić się na spotkanie, proszę zadzwonić do mnie na ...', 1, '(brak)', 0), (95, 'I look forward to hearing from you at your earliest convenience.', 'Czekam na kontakt z Państwem jak najszybciej.', 1, '(brak)', 0), (96, 'how earliest convenience', 'jak najszybciej', 1, '(brak)', 0), (97, 'caretaker', 'dozorca, stróż', 1, '(brak)', 0), (98, 'protector', 'opiekun', 1, '(brak)', 0), (99, 'Yours sincerely', 'Z poważaniem', 1, '(brak)', 0), (100, 'interview', 'rozmowa kwalifikacyjna, wywiad', 1, '(brak)', 0), (101, 'appointment, meeting', 'spotkanie', 1, '(brak)', 0), (102, 'fired', 'zwolniony', 1, '(brak)', 0), (103, 'Set up a catering company', 'Założyć firmę cateringową', 1, '(brak)', 0), (104, 'mediterranean', 'śródziemnomorski', 1, '(brak)', 0), (105, 'reaching agreement', 'osiągnięcie porozumienia', 1, '(brak)', 0), (106, 'What about...?', 'Co powiesz na...?', 1, '(brak)', 0), (107, 'I suggest we focus on...', 'Proponuję skupić się na...', 1, '(brak)', 0), (108, 'currently', 'aktualnie, obecnie, bieżąco', 1, '(brak)', 0), (109, 'actually', 'faktycznie, rzeczywiście', 1, '(brak)', 0), (110, 'career', 'kariera', 1, '(brak)', 0), (111, 'course', 'kurs, przebieg,', 1, '(brak)', 0), (112, 'direction', 'kierunek', 1, '(brak)', 0), (113, 'argument', 'spór, argument', 1, '(brak)', 0), (114, 'discussion', 'dyskusja', 1, '(brak)', 0), (115, 'reliable', 'niezawodny', 1, '(brak)', 0), (116, 'sensible', 'rozsądny, sensowny', 1, '(brak)', 0), (117, 'easy-going', '\"luzak\"', 1, '(brak)', 0), (118, 'aggressive', 'agresywny, napastliwy', 1, '(brak)', 0), (119, 'clever', 'sprytny', 1, '(brak)', 0), (120, 'bright', 'jasny, bystry', 1, '(brak)', 0), (121, 'honest', 'uczciwy, szczery', 1, '(brak)', 0), (122, 'lazy', 'leniwy', 1, '(brak)', 0), (123, 'punctual', 'punktualny', 1, '(brak)', 0), (124, 'moody', 'humorzasty, nastrojowy', 1, '(brak)', 0), (125, 'independent', 'niezależny', 1, '(brak)', 0), (126, 'I\'m impressed', 'Jestem pod wrażeniem', 1, '(brak)', 0); -- -------------------------------------------------------- -- -- Struktura tabeli dla tabeli `Unit_5` -- CREATE TABLE `Unit_5` ( `id` int(10) NOT NULL, `v1` varchar(255) DEFAULT NULL, `v2` varchar(255) DEFAULT NULL, `weight` int(10) DEFAULT NULL, `zdanie` varchar(255) DEFAULT NULL, `flaga` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Zrzut danych tabeli `Unit_5` -- INSERT INTO `Unit_5` (`id`, `v1`, `v2`, `weight`, `zdanie`, `flaga`) VALUES (1, 'machine', 'maszyna', 1, '(brak)', 0), (2, 'electricity', 'elektryczność', 1, '(brak)', 0), (3, 'nuclear power', 'energia nulkearna', 1, '(brak)', 0), (4, 'antibiotics', 'antybiotyki', 1, '(brak)', 0), (5, 'vaccinations', 'szczepienia', 1, '(brak)', 0), (6, 'computer networks', 'sieci komputerowe', 1, '(brak)', 0), (7, 'motorbikes', 'motocykle', 1, '(brak)', 0), (8, 'genetic engineering', 'inżynieria genetyczna', 1, '(brak)', 0), (9, 'washing machine', 'pralka', 1, '(brak)', 0), (10, 'vacuum cleaner', 'odkurzacz', 1, '(brak)', 0), (11, 'space travel', 'podróż kosmiczna', 1, '(brak)', 0), (12, 'commercial aeroplanes', 'samoloty komercyjne', 1, '(brak)', 0), (13, 'solar power', 'energia słoneczna', 1, '(brak)', 0), (14, 'communications satellites', 'satelity telekomunikacyjne', 1, '(brak)', 0), (15, 'plug it in', 'włączać to do kontaktu (do prądu)', 1, '(brak)', 0), (16, 'press the button', 'nacisnąć przycisk', 1, '(brak)', 0), (17, 'have an injection', 'mieć zastrzyk', 1, '(brak)', 0), (18, 'have an operation', 'mieć operację', 1, '(brak)', 0), (19, 'run out of petrol', 'zabraknąć benzyny', 1, '(brak)', 0), (20, 'break down', 'zepsuć się', 1, '(brak)', 0), (21, 'get a connection', 'uzyskać połączenie', 1, '(brak)', 0), (22, 'restart / reboot the computer', 'zresrartować komputer', 1, '(brak)', 0), (23, 'do an experiment', 'robić eksperyment', 1, '(brak)', 0), (24, 'switch it on / switch it off', 'włączyć to / wyłączyć to', 1, 'switch the light on - włącz światłoswitch the light off - wyłącz światło', 0), (25, 'influential', 'wpływowy', 1, '(brak)', 0), (26, 'advance, progress', 'postęp', 1, '(brak)', 0), (27, 'at the beginning of the twentieth century', 'na początku 20 wieku', 1, '(brak)', 0), (28, 'affordable', 'niedrogi, przystępny cenowo', 1, '(brak)', 0), (29, 'shrink', 'kurczyć się', 1, '(brak)', 0), (30, 'for the first time in history,', 'po raz pierwszy w historii', 1, '(brak)', 0), (31, 'somewhere', 'gdzieś', 1, '(brak)', 0), (32, 'anywhere', 'gdziekolwiek', 1, '(brak)', 0), (33, 'introduce', 'wprowadzać', 1, '(brak)', 0), (34, 'fabric', 'materiał, tkanina', 1, '(brak)', 0), (35, 'nylon', 'nylon, nylonowy', 1, '(brak)', 0), (36, 'allow', 'pozwolić komuś na coś', 1, '(brak)', 0), (37, 'travel further away from home', 'podróżować dalej od domu', 1, '(brak)', 0), (38, 'amplifier', 'wzmacniacz', 1, '(brak)', 0), (39, 'rock music', 'muzyka rockowa', 1, '(brak)', 0), (40, 'electric guitar', 'gitara elektryczna', 1, '(brak)', 0), (41, 'a lot / much / far more', 'gdy chcemy powiedzieć, że coś jest dużo bardziej lub znacznie bardziej \"jakieś\" (np. piękniejsze, bardziej słoneczne)', 1, 'I\'m a lot fatter than Sue.Kate is much more beautiful than Mary.The journey took far more longer than we expected.', 0), (42, 'a little / a little bit / slighty', 'trochę, troszeczkę - gdy chcemy powiedzieć, że coś jest tylko trochę bardziej \"jakieś\" (np. piękniejsze, bardziej słoneczne)', 1, 'She is a little older than he.My car is a little bit more comfortable than yours.', 0), (43, 'by far', 'jak dotąd', 1, 'by far + st. najwyższy przymiotnikaIt\'s by far the best pizza I have ever eaten.', 0), (44, 'one of', 'jeden z', 1, 'one of + st. najwyższy przymiotnika + rzeczownikIt\'s one of the tallest mountains I have ever climbed.', 0), (45, 'advantage', 'zaleta', 1, '(brak)', 0), (46, 'disadvantage', 'wada', 1, '(brak)', 0), (47, 'however,', 'jednak', 1, '(brak)', 0), (48, 'one of the main advantages', 'jedną z głównych zalet', 1, '(brak)', 0), (49, 'in addition to this,', 'w dodatku do tego, oprócz tego', 1, '(brak)', 0), (50, 'on the other hand,', 'z drugiej strony, z innej strony', 1, '(brak)', 0), (51, 'another disadvantage', 'inną wadą, kolejną wadą', 1, 'another disadvantage of modern technology is...', 0), (52, 'in my opinion', 'moim zdaniem', 1, '(brak)', 0), (53, 'the problem is that', 'problemem jest to, że', 1, '(brak)', 0), (54, 'benefit', 'korzyść, pożytek', 1, '(brak)', 0), (55, 'harmful', 'szkodliwy', 1, '(brak)', 0), (56, 'conclusion', 'wniosek', 1, '(brak)', 0), (57, 'introduction', 'wstęp', 1, '(brak)', 0), (58, 'the most important advantage is', 'najważniejszą zaletą jest', 1, '(brak)', 0), (59, 'the main disadvantage is', 'główną wadą jest', 1, '(brak)', 0), (60, 'although,', 'chociaż, aczkolwiek', 1, '(brak)', 0), (61, 'as well as that,', 'oprócz tego', 1, '(brak)', 0), (62, 'and another thing,', 'i kolejną rzeczą...', 1, '(brak)', 0), (63, 'In general,', 'ogólnie rzecz biorąc (generalnie)', 1, '(brak)', 0), (64, 'as far as I\'m concerned', 'o ile mi wiadomo, jeśli o mnie chodzi to jestem przekonany', 1, '(brak)', 0), (65, 'tidal wave', 'pływowa fala', 1, '(brak)', 0), (66, 'nightmare', 'koszmar', 1, '(brak)', 0), (67, 'wrestler', 'zapaśnik', 1, '(brak)', 0), (68, 'wasp', 'osa', 1, '(brak)', 0), (69, 'prove', 'udowodnić', 1, '(brak)', 0), (70, 'exactly the same as', 'dokładnie tak samo jak', 1, '(brak)', 0), (71, 'very similar to', 'bardzo podobny do', 1, '(brak)', 0), (72, 'he\'s not as tall as...', 'on nie jest tak wysoki jak...', 1, '(brak)', 0), (73, 'question', 'pytanie; kwestionować', 1, '(brak)', 0), (74, 'wonder', 'cud; zastanawiać się', 1, '(brak)', 0), (75, 'discuss', 'dyskutować', 1, '(brak)', 0), (76, 'debate', 'debata; debatować', 1, '(brak)', 0), (77, 'responde, reply', 'odpowiadać (np. na list)', 1, '(brak)', 0), (78, 'answer, reply, response', 'odpowiedź', 1, '(brak)', 0), (79, 'research', 'badania; prowadzić prace badawcze', 1, '(brak)', 0), (80, 'investigate', 'prowadzić dochodzenie', 1, '(brak)', 0), (81, 'inquire, ask', 'zapytać', 1, '(brak)', 0), (82, 'look into', 'przyjrzeć się czemuś', 1, '(brak)', 0), (83, 'thesis', 'praca dyplomowa', 1, '(brak)', 0), (84, 'death penalty', '<NAME>', 1, '(brak)', 0), (85, 'round windows', 'okrągłe okna', 1, '(brak)', 0), (86, 'inquiry', 'zapytanie', 1, '(brak)', 0), (87, 'we ran out of coffee', 'skończyła nam się kawa', 1, '(brak)', 0), (88, 'jellyfish', 'meduza', 1, '(brak)', 0), (89, 'doughnut', 'pączek', 1, '(brak)', 0), (90, 'break up', 'rozpaść się', 1, '(brak)', 0), (91, 'over a volcano', 'nad wulkanem', 1, '(brak)', 0), (92, 'number of hairs on a head', 'liczba włosów na głowie', 1, '(brak)', 0), (93, 'mess / messy', 'bałagan / bałaganiarski', 1, '(brak)', 0), (94, 'hair / hairy', 'włosy / owłosiony', 1, '(brak)', 0), (95, 'redponse / responsible', 'odpowiedź / odpowiedzialny', 1, '(brak)', 0), (96, 'love / lovable', 'miłość / kochaniutki, miły', 1, '(brak)', 0), (97, 'profit / profitable', 'zysk / zyskowny, dochodowy', 1, '(brak)', 0), (98, 'thank / thankful', 'dziękować / wdzięczny', 1, '(brak)', 0), (99, 'pain / painful', 'ból / bolesny', 1, '(brak)', 0), (100, 'peace / peaceful', 'pokój (spokój) / pokojowy (spokojny)', 1, '(brak)', 0), (101, 'explosion / explosive', 'wybuch, eksplozja / wybuchowy', 1, '(brak)', 0), (102, 'creativity / creative', 'kreatywność / kreatywny', 1, '(brak)', 0), (103, 'effect / effective', 'skutek (efekt) / skuteczny', 1, '(brak)', 0), (104, 'use / useless / useful', 'użytek / bezużyteczny / użyteczny', 1, '(brak)', 0), (105, 'home / homeless', 'dom / bezdomny', 1, '(brak)', 0), (106, 'hope / hopeless', 'nadzieja / beznadziejny', 1, '(brak)', 0), (107, 'biology / biological', 'biologia / biologiczny', 1, '(brak)', 0), (108, 'poet / poetic', 'poeta / poetycki', 1, '(brak)', 0), (109, 'value / valuable', 'wartość / wartościowy', 1, '(brak)', 0), (110, 'ease / easy', 'łatwość / łatwy', 1, '(brak)', 0), (111, 'even', 'nawet', 1, '(brak)', 0), (112, 'educate / education', 'kształcić / edukacja', 1, '(brak)', 0), (113, 'relax / relaxation', 'relaksować się / relaks', 1, '(brak)', 0), (114, 'imagine / imagination', 'wyobrazić / wyobraźnia', 1, '(brak)', 0), (115, 'immigrate / immigration', 'imigrować / imigracja', 1, '(brak)', 0), (116, 'pollute / pollution', 'zanieczyścić / zanieczyszczenie', 1, '(brak)', 0), (117, 'instruct / instruction', 'instruować / instrukcja', 1, '(brak)', 0), (118, 'depress / depression', 'deprymować, przygnębiać / depresja', 1, '(brak)', 0), (119, 'compete / competition', 'rywalizować / konkurs', 1, '(brak)', 0), (120, 'entertiain / entertainment', 'zabawiać / rozrywka', 1, '(brak)', 0), (121, 'improve / improvement', 'poprawiać, ulepszać / poprawa, ulepszenie', 1, '(brak)', 0), (122, 'employ / employment', 'zatrudniać / zatrudnienie', 1, '(brak)', 0), (123, 'agree / agreement', 'zgodzić się / umowa', 1, '(brak)', 0), (124, 'run / running', 'biegać / bieganie', 1, '(brak)', 0), (125, 'smoke / smoking', 'palić / palenie (papierosy)', 1, '(brak)', 0), (126, 'laugh / laughing', 'śmiać się / roześmiany', 1, '(brak)', 0), (127, 'eat / eating', 'jeść / zjadanie', 1, '(brak)', 0), (128, 'weak / weakness', 'słaby / słabość', 1, '(brak)', 0), (129, 'lonely / loneliness', 'samotny / samotność', 1, '(brak)', 0), (130, 'happy / happiness', 'szczęśliwy / szczęście', 1, '(brak)', 0), (131, 'kind / kindness', 'uprzejmy / uprzejmość', 1, '(brak)', 0), (132, 'stupid / stupidity', 'głupi / głupota', 1, '(brak)', 0), (133, 'sensitive / sensitivity', 'wrażliwy / wrażliwość', 1, '(brak)', 0), (134, 'responsible / responsibility', 'odpowiedzialny / odpowiedzialność', 1, '(brak)', 0), (135, 'it\'s broken down', 'to się zepsuło', 1, '(brak)', 0), (136, 'it needs recharging', 'to potrzebuje ponownego załadowania', 1, '(brak)', 0), (137, 'it\'s out of order', 'to nie jest w porządku', 1, '(brak)', 0), (138, 'it needs fixing', 'trzeba to naprawić, to potrzebuje naprawy', 1, '(brak)', 0), (139, 'there is no reception', 'nie ma zasięgu', 1, '(brak)', 0), (140, 'try switching it off', 'spróbuj wyłączenia tego', 1, '(brak)', 0), (141, 'it keeps making this strange noise', 'to wydaje dziwny dźwięk', 1, '(brak)', 0), (142, 'it\'s crashed', 'to jest rozbite (po wypadku)', 1, '(brak)', 0), (143, 'it\'s frozen', 'zawiesił się', 1, '(brak)', 0), (144, 'it doesn\'t work', 'to nie działa', 1, '(brak)', 0), (145, 'we have to sort it out', 'musimy to rozwiązać', 1, '(brak)', 0), (146, 'save it onto a memory stick', 'zapisać to na pamięci (np. pendrive)', 1, '(brak)', 0), (147, 'shall I print it for you?', 'czy wydrukować to dla ciebie?', 1, '(brak)', 0), (148, 'try to solve the problem', 'próbować rozwiązać problem', 1, '(brak)', 0), (149, 'shout at colleagues', 'krzyczeć na kolegów', 1, '(brak)', 0), (150, 'hit the PC', 'uderzać w komputer', 1, '(brak)', 0), (151, 'throw parts of the computer', 'rzucać częściami komputerowymi', 1, '(brak)', 0), (152, 'frustration', 'frustracja', 1, '(brak)', 0), (153, 'anger', 'złość, gniew', 1, '(brak)', 0), (154, 'could you hold the line, please?', 'mógłbyś poczekać na lini, proszę?', 1, '(brak)', 0), (155, 'coulg you give me a refund?', 'mógłbyś mi zwrócić pieniądze', 1, '(brak)', 0), (156, 'could you tell me who I should speak to?', 'mógłbyś mi powiedzieć z kim powinienem rozmawiać?', 1, '(brak)', 0), (157, 'could you tell me what the problem is?', 'mógłbyś mi powiedzieć jaki jest problem?', 1, '(brak)', 0), (158, 'do you know what the problem is?', 'wiesz w czym problem?', 1, '(brak)', 0), (159, 'would you mind booking us a table?', 'czy miałbyś coś przeciwko żebyś zarezerwował nam stolik?', 1, '(brak)', 0), (160, 'would you mind coming a little bit earlier?', 'czy miałbyś coś przeciwko żebyś przyszedł trochę wcześniej?', 1, '(brak)', 0), (161, 'could you tell me what time it is?', 'mógłbyś mi powiedzieć która jest godzina?', 1, '(brak)', 0), (162, 'do you know how to get there?', 'czy wiesz jak się tam dostać?', 1, '(brak)', 0), (163, 'do you know what time the shops open?', 'czy wiesz o której otwierają sklepy?', 1, '(brak)', 0); -- -------------------------------------------------------- -- -- Struktura tabeli dla tabeli `Unit_6` -- CREATE TABLE `Unit_6` ( `id` int(10) NOT NULL, `v1` varchar(255) DEFAULT NULL, `v2` varchar(255) DEFAULT NULL, `weight` int(10) DEFAULT NULL, `zdanie` varchar(255) DEFAULT NULL, `flaga` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Zrzut danych tabeli `Unit_6` -- INSERT INTO `Unit_6` (`id`, `v1`, `v2`, `weight`, `zdanie`, `flaga`) VALUES (1, 'fear', 'strach', 1, '(brak)', 0), (2, 'anger', 'złość', 1, '(brak)', 0), (3, 'distress', 'ból, cierpienie', 1, '(brak)', 0), (4, 'joy', 'radość', 1, '(brak)', 0), (5, 'surprise', 'niespodzianka, zaskoczenie', 1, '(brak)', 0), (6, 'disgust', 'obrzydzenie', 1, '(brak)', 0), (7, 'annoy / annoyed / annoying', 'irytować / zirytowany / irytujący', 1, '(brak)', 0), (8, 'relaxed / relaxing', 'zrelaksowany / relaksujący', 1, '(brak)', 0), (9, 'bored / boring', 'znudzony / nudny', 1, '(brak)', 0), (10, 'frightened / frightening', 'przerażony / przerażający', 1, '(brak)', 0), (11, 'worried / worrying', 'zmartwiony / niepokojący', 1, '(brak)', 0), (12, 'embarrassed / embarrassing', 'zakłopotany, zażenowany / żenujący', 1, '(brak)', 0), (13, 'exhausted / exhausting', 'wyczerpany / wyczerpujący', 1, '(brak)', 0), (14, 'confused / confusing', 'zmieszany / mylący', 1, '(brak)', 0), (15, 'shocked / shocking', 'zszokowany / szokujący', 1, '(brak)', 0), (16, 'satisfied / satisfying', 'zadowolony / satysfakcjonujący', 1, '(brak)', 0), (17, 'do you find your job satisfying?', 'czy uważasz swoją pracę za satysfakcjonującą?', 1, '(brak)', 0), (18, 'cause = prompt', 'powodować', 1, '(brak)', 0), (19, 'induce = evoke', 'wywołać', 1, '(brak)', 0), (20, 'rotten', 'zepsute (o jedzeniu)', 1, '(brak)', 0), (21, 'excited / exciting', 'podekscytowany / ekscytujący', 1, '(brak)', 0), (22, 'terrified / terrifing', 'przerażony / przerażający', 1, '(brak)', 0), (23, 'astonished / astonishing', 'zdumiony / zdumiewający', 1, '(brak)', 0), (24, 'tiring / tired', 'męczący / zmęczony', 1, '(brak)', 0), (25, 'laughter therapy', 'terapia śmiechu', 1, '(brak)', 0), (26, 'click on', 'kliknąć', 1, '(brak)', 0), (27, 'try on', 'przymierzyć', 1, '(brak)', 0), (28, 'get on', 'dogadywać się z kimś', 1, '(brak)', 0), (29, 'go off', 'zerwać znajomość', 1, '(brak)', 0), (30, 'take off', 'zdjąć', 1, '(brak)', 0), (31, 'log off', 'wylogować się', 1, '(brak)', 0), (32, 'chat sb up', 'zagadać do kogoś', 1, '(brak)', 0), (33, 'scroll up', 'przewijać', 1, '(brak)', 0), (34, 'dress down', 'ubrać się nieodpowiednio', 1, '(brak)', 0), (35, 'calm life', 'spokojne życie', 1, '(brak)', 0), (36, 'settle down', 'ustatkować się', 1, '(brak)', 0), (37, 'shut down', 'wyłączyć', 1, '(brak)', 0), (38, 'cut off', 'odciąć, uciąć', 1, '(brak)', 0), (39, 'call off', 'odwołać', 1, '(brak)', 0), (40, 'put off', 'odkładać, odwlekać, przełożyć', 1, '(brak)', 0), (41, 'check out', 'sprawdzić (także wymeldować)', 1, '(brak)', 0), (42, 'stand out', 'wyróżniać się', 1, '(brak)', 0), (43, 'work out', 'wymyślić, rozpracować, rozgryźć', 1, '(brak)', 0), (44, 'look after', 'opiekować, zadbać, pilnować', 1, '(brak)', 0), (45, 'take after', 'przypominać, być podobnym', 1, '(brak)', 0), (46, 'fill in', 'wypełnić, uzupełnić', 1, '(brak)', 0), (47, 'let ... in', 'wpuścić, wpuszczać', 1, '(brak)', 0), (48, 'persuade', 'przekonać, namówić', 1, '(brak)', 0), (49, 'dress up', 'wystroić', 1, '(brak)', 0), (50, 'raise money', 'kwestować, zbierać pieniądze', 1, '(brak)', 0), (51, 'hold a sale', 'robić wyprzedaż', 1, '(brak)', 0), (52, 'do experiments', 'robić eksperymenty', 1, '(brak)', 0), (53, 'get a seat / take a seat', 'usiąść', 1, '(brak)', 0), (54, 'jump a queue', 'wpychać się w kolejkę', 1, '(brak)', 0), (55, 'cut hair', 'obcinać włosy', 1, '(brak)', 0), (56, 'watch a programme', 'oglądać program', 1, '(brak)', 0), (57, 'obtain', 'uzyskać', 1, '(brak)', 0), (58, 'involve', 'angażować', 1, '(brak)', 0), (59, 'think creatively', 'myśleć kreatywnie', 1, '(brak)', 0), (60, 'get someone to do you a favour', 'sprawić by ktoś wyświadczył ci przysługę', 1, '(brak)', 0), (61, 'bargain', 'okazja, promocja', 1, '(brak)', 0), (62, 'instead', 'natomiast, za to, w zamian', 1, '(brak)', 0), (63, 'ask for a favour', 'poprosić o przysługę', 1, '(brak)', 0), (64, 'pass yours exams', 'zdać twoje egzaminy', 1, '(brak)', 0), (65, 'get a place at university', 'dostać się na uniwersytet', 1, '(brak)', 0), (66, 'get engaged /get married', 'zaręczyć się / pobrać się', 1, '(brak)', 0), (67, 'lose your job, money', 'stracić pracę, pieniądze', 1, '(brak)', 0), (68, 'fail a test', 'oblać test', 1, '(brak)', 0), (69, 'win a competition, match', 'wygrać zawody, mecz', 1, '(brak)', 0), (70, 'get promoted', 'awansować, dostać awans', 1, '(brak)', 0), (71, 'get a degree', 'uzyskać tytuł naukowy', 1, '(brak)', 0), (72, 'give a reason', 'podać powód', 1, '(brak)', 0), (73, 'tone of voice', 'ton głosu', 1, '(brak)', 0), (74, 'prepare your listener', 'przygotuj swojego słuchacza', 1, '(brak)', 0), (75, 'making people too upset', 'zbytnie martwienie ludzi', 1, '(brak)', 0), (76, 'give someone good / bad news', 'przekazać komuś dobrą / złą wiadomość', 1, '(brak)', 0), (77, 'arrangement', 'układ, porozumienie', 1, '(brak)', 0), (78, 'I\'ve got some good news for you.', 'mam dobrą wiadomość dla ciebie', 1, '(brak)', 0), (79, 'I\'m really pleased to tell you...', 'Jestem naprawdę zadowolony żeby ci powiedzieć...', 1, '(brak)', 0), (80, 'Bad news, I\'m afraid.', 'Złe wieści, obawiam się.', 1, NULL, 0), (81, 'I\'m sorry to have to tell you, but', 'Przykro mi, że muszę ci powiedzieć, ale', 1, '(brak)', 0), (82, 'I\'m afraid I\'ve got some bad news', 'Obawiam się, że mam złą wiadomość', 1, '(brak)', 0), (83, 'There\'s something I\'ve got to tell you', 'Jest coś co mam ci do powiedzenia', 1, '(brak)', 0), (84, 'We\'ve got something to tell you', 'Mamy ci coś do powiedzenia', 1, '(brak)', 0), (85, 'Congratulations!', 'Gratulacje!', 1, '(brak)', 0), (86, 'That\'s a shame.', 'Jaka szkoda.', 1, '(brak)', 0), (87, 'You\'re joking?', 'Żartujesz?', 1, '(brak)', 0), (88, 'You lucky thing.', 'Ty szczęściarzu.', 1, '(brak)', 0), (89, 'That\'s terrible', 'To okropne', 1, '(brak)', 0), (90, 'Well done!', 'Dobra robota!', 1, '(brak)', 0), (91, 'I\'m so pleased for you.', 'Jestem z ciebie bardzo zadowolony.', 1, '(brak)', 0), (92, 'I\'m really sorry to hear that.', 'Naprawdę przyro mi to słyszeć.', 1, '(brak)', 0), (93, 'That\'s really annoying.', 'To jest naprawdę denerwujące.', 1, '(brak)', 0), (94, 'exaggerate', 'wyolbrzymiać', 1, '(brak)', 0); -- -------------------------------------------------------- -- -- Struktura tabeli dla tabeli `Unit_8` -- CREATE TABLE `Unit_8` ( `id` int(10) NOT NULL, `v1` varchar(255) DEFAULT NULL, `v2` varchar(255) DEFAULT NULL, `weight` int(10) DEFAULT NULL, `zdanie` varchar(255) DEFAULT NULL, `flaga` int(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Zrzut danych tabeli `Unit_8` -- INSERT INTO `Unit_8` (`id`, `v1`, `v2`, `weight`, `zdanie`, `flaga`) VALUES (1, 'get on well with', 'dobrze dogadywać się z sb', 1, 'I get on well with my neighbour', 0), (2, 'mind my own business', 'zajmować się własnymi sprawami', 1, 'I prefer to mind my own business so I don\'t ask the neighbours personal question.', 0), (3, 'over for coffee', 'na kawę', 1, 'I sometimes invite my neighbour over for coffee', 0), (4, 'nuisance', 'uciążliwy', 1, 'My neighbour\'s dog is a nuisance - he\'s always barking early in the morning (zawsze szczeka wcześnie rano)', 0), (5, 'get to know', 'poznać', 1, 'We didn\'t get to know our neighbours for years.', 0), (6, 'disturb', 'przeszkadzać, zaburzać, niepokoić', 1, 'My neighbour has pets but they never disturb me', 0), (7, 'get on my nerves', 'działają mi na nerwy', 1, 'My neighbours get on my nerves - he\'s always complaining', 0), (8, 'we made friends', 'staliśmy się przyjaciółmi', 1, 'We made friends with our neighbours immediately. (natychmiast)', 0), (9, 'I like to keep myself to myself', 'lubię być sobą', 1, 'I like to keep myself to myself so my neighbours hasn\'t been in my house. (kiedy moich sąsiadów nie ma w domu)', 0), (10, 'be quite noisy', 'być dość hałaśliwym', 1, 'I can be quite noisy so I often ask my neighbors about their lives.', 0), (11, 'put your feet up', 'możesz odpocząć, wyciągnąć nogi', 1, 'You can sit on this chair.', 0), (12, 'make yourself at home', 'możesz poczuć się jak u siebie w domu', 1, 'Please you can make oneself at your home.', 0), (13, 'be my guest', 'poczuj się moim gościem', 1, 'I can expose you permission to use it.', 0), (14, 'have a seat', 'możesz usiąść', 1, 'Let is just sit down and relax.', 0), (15, 'help yourself', 'częstuj się', 1, 'I will prepare something to food if you want.', 0); -- -- Indeksy dla zrzutów tabel -- -- -- Indeksy dla tabeli `fiszki` -- ALTER TABLE `fiszki` ADD PRIMARY KEY (`id`); -- -- Indeksy dla tabeli `info_table` -- ALTER TABLE `info_table` ADD PRIMARY KEY (`id`); -- -- Indeksy dla tabeli `Media_1` -- ALTER TABLE `Media_1` ADD PRIMARY KEY (`id`); -- -- Indeksy dla tabeli `Unit_1` -- ALTER TABLE `Unit_1` ADD PRIMARY KEY (`id`); -- -- Indeksy dla tabeli `Unit_2` -- ALTER TABLE `Unit_2` ADD PRIMARY KEY (`id`); -- -- Indeksy dla tabeli `Unit_3` -- ALTER TABLE `Unit_3` ADD PRIMARY KEY (`id`); -- -- Indeksy dla tabeli `Unit_4` -- ALTER TABLE `Unit_4` ADD PRIMARY KEY (`id`); -- -- Indeksy dla tabeli `Unit_5` -- ALTER TABLE `Unit_5` ADD PRIMARY KEY (`id`); -- -- Indeksy dla tabeli `Unit_6` -- ALTER TABLE `Unit_6` ADD PRIMARY KEY (`id`); -- -- Indeksy dla tabeli `Unit_8` -- ALTER TABLE `Unit_8` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT dla tabeli `fiszki` -- ALTER TABLE `fiszki` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT dla tabeli `info_table` -- ALTER TABLE `info_table` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT dla tabeli `Unit_1` -- ALTER TABLE `Unit_1` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=96; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<filename>EdFi.Ods.Utilities.Migration/Scripts/MsSql/02Upgrade/v24_to_v25/11 Create Constraints/52950 StudentSectionAssociation [FK].sql -- SPDX-License-Identifier: Apache-2.0 -- Licensed to the Ed-Fi Alliance under one or more agreements. -- The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0. -- See the LICENSE and NOTICES files in the project root for more information. PRINT N'Adding foreign keys to [edfi].[StudentSectionAssociation]' GO ALTER TABLE [edfi].[StudentSectionAssociation] ADD CONSTRAINT [FK_StudentSectionAssociation_RepeatIdentifierType] FOREIGN KEY ([RepeatIdentifierTypeId]) REFERENCES [edfi].[RepeatIdentifierType] ([RepeatIdentifierTypeId]) GO ALTER TABLE [edfi].[StudentSectionAssociation] ADD CONSTRAINT [FK_StudentSectionAssociation_Section] FOREIGN KEY ([SchoolId], [ClassPeriodName], [ClassroomIdentificationCode], [LocalCourseCode], [TermDescriptorId], [SchoolYear], [UniqueSectionCode], [SequenceOfCourse]) REFERENCES [edfi].[Section] ([SchoolId], [ClassPeriodName], [ClassroomIdentificationCode], [LocalCourseCode], [TermDescriptorId], [SchoolYear], [UniqueSectionCode], [SequenceOfCourse]) GO ALTER TABLE [edfi].[StudentSectionAssociation] ADD CONSTRAINT [FK_StudentSectionAssociation_Student] FOREIGN KEY ([StudentUSI]) REFERENCES [edfi].[Student] ([StudentUSI]) GO
--------------------------------------------------------------------------- -- Purpose : Gather statistics for db objects in Oracle db --------------------------------------------------------------------------- set serveroutput on size unlimited; set timing on; Prompt Prompt INFO : START - Gather table statistics DECLARE v_stats VARCHAR2(1000); v_sample_size_pct varchar2(100) := 100; v_degree varchar2(100) := 4; BEGIN $IF DBMS_DB_VERSION.VER_LE_10_2 $THEN -- dbms_output.put_line('Oracle 10G_R2 ...'); v_sample_size_pct := '100'; $ELSIF DBMS_DB_VERSION.VER_LE_11 $THEN -- dbms_output.put_line('Oracle 11G ...'); v_sample_size_pct := 'DBMS_STATS.AUTO_SAMPLE_SIZE'; $ELSIF DBMS_DB_VERSION.VER_LE_12 $THEN -- dbms_output.put_line('Oracle 12c ...'); v_sample_size_pct := 'DBMS_STATS.AUTO_SAMPLE_SIZE'; $ELSIF DBMS_DB_VERSION.VER_LE_19 $THEN -- dbms_output.put_line('Oracle 19c ...'); v_sample_size_pct := 'DBMS_STATS.AUTO_SAMPLE_SIZE'; v_degree := 'DBMS_STATS.AUTO_DEGREE'; $ELSE v_sample_size_pct := '100'; $END for st_row in (select owner, table_name from all_tables where OWNER IN (UPPER('&SCHEMA_NAME')) AND NOT REGEXP_LIKE (table_name, '^BIN\$.*') ORDER by owner, table_name) loop v_stats := 'begin dbms_stats.gather_table_stats(ownname=>'||''''||st_row.owner||''''||','|| 'tabname=>'||''''||st_row.table_name||''''||','|| 'estimate_percent=>'|| v_sample_size_pct ||','|| 'method_opt=>'||''''||'FOR ALL COLUMNS SIZE AUTO'||''''||','|| 'degree=>'|| v_degree ||','|| 'cascade=>true); end;'; -- dbms_output.put_line('ownname=>'||''''||st_row.owner||''''||','||'tabname=>'||''''||st_row.table_name); -- dbms_output.put_line(v_stats); execute immediate v_stats; end loop; end; / Prompt INFO : END - Gather table statistics Prompt set serveroutput off;
alter table "public"."publications" add constraint "publications_data_id_fkey" foreign key ("data_id") references "public"."data" ("id") on update no action on delete no action;
-- 1.Find active concept by term SELECT * FROM descriptions_snapshot WHERE term LIKE 'Myocardial infarction%' AND active=1 ORDER BY conceptid; -- 2.List the Fully Specified Name and Synonym(s) for a concept SELECT conceptid, term, CASE typeid WHEN 900000000000013009 THEN 'Synonym' ELSE 'Fully specified name' END AS description_type FROM descriptions_snapshot WHERE conceptId = 248713000 AND active=1; -- 3.List all MEMBERS(descriptions) of a reference set SELECT c.id AS conceptid, d.id AS descriptionid, d.term AS preferred_term FROM concepts_snapshot AS c, refset_snapshot AS rs, descriptions_snapshot AS d, language_refset_snapshot AS adrs WHERE c.id=rs.referencedComponentId AND c.id=d.conceptid AND d.id=adrs.referencedComponentId AND adrs.acceptabilityid=900000000000548007 -- ID of Preferred Term AND rs.refsetid= 11000036103 -- ID of Adverse reaction type refset AND c.active=1 AND d.active=1 AND rs.active=1 ORDER BY preferred_term; -- 4. List of Australian reference sets & member count SELECT refset_active.refsetid AS "Reference Set ID", desc_active.term AS "Name of Reference Set", refset_active.member_count AS "No of Members" FROM (SELECT term,id,conceptid FROM descriptions_snapshot AS ds WHERE active=1) AS desc_active, (SELECT referencedComponentId FROM language_refset_snapshot AS lrs WHERE refsetId = 32570271000036106 -- Australian dialect refset AND acceptabilityid = 900000000000548007 -- Preferred Term AND active=1) AS lang_refset_active, (SELECT refsetid, COUNT(referencedcomponentid) AS member_count FROM refset_snapshot AS rss WHERE active=1 GROUP BY refsetid) AS refset_active WHERE desc_active.conceptid = refset_active.refsetid AND desc_active.id = lang_refset_active.referencedcomponentid ORDER by desc_active.term; -- 5. List of descendants of the Fetal finding hierarchy SELECT c.id AS conceptid, d.id AS descriptionid, d.term AS preferred_term FROM concepts_snapshot AS c JOIN (SELECT sourceId FROM transitive_closure WHERE destinationId=106112009 -- Fetal finding ) AS ffd ON c.id=ffd.sourceid JOIN descriptions_snapshot AS d ON c.id=d.conceptid JOIN language_refset_snapshot AS adrs ON d.id=adrs.referencedComponentId WHERE adrs.acceptabilityid = 900000000000548007 -- ID of Preferred Term AND c.active=1 AND d.active=1 AND adrs.active=1; -- 6. Applying the Clincal Finding Grouper Exclusion RefSet against the Fetal Finding hierarchy SELECT c.id AS conceptid, d.id AS descriptionid, d.term AS preferred_term FROM concepts_snapshot AS c, (SELECT sourceId FROM transitive_closure WHERE destinationId=106112009 -- Fetal finding AND sourceid NOT IN (SELECT referencedcomponentid FROM refset_snapshot WHERE refsetid = 171991000036103 -- clinical finding grouper exclusion refset AND active=1 )) AS ffd, descriptions_snapshot AS d, language_refset_snapshot AS adrs WHERE c.id=ffd.sourceid AND c.id=d.conceptid AND d.id=adrs.referencedComponentId AND adrs.acceptabilityid=900000000000548007 -- ID of Preferred Term AND c.active=1 AND d.active=1 AND adrs.active=1; -- 7. Finding terms within a specific hierarchy SELECT d.term AS preferred_term FROM concepts_snapshot AS c, (SELECT sourceId FROM transitive_closure WHERE destinationId=71388002 -- Procedure hierarchy ) AS pd, descriptions_snapshot AS d, language_refset_snapshot AS adrs WHERE c.id=pd.sourceid AND c.id=d.conceptid AND d.id=adrs.referencedComponentId AND adrs.acceptabilityid=900000000000548007 -- ID of Preferred Term AND c.active=1 AND d.active=1 AND adrs.active=1 AND d.term like '% obstetric%'; -- 8. Finding AMT product concepts that have been inactivated and has an association with another concept SELECT effectiveTime, refsetid, get_PT(refsetid), referencedcomponentid, get_PT(referencedcomponentid), targetComponentid, get_PT(targetComponentid) FROM crefset_snapshot WHERE targetComponentid IN ( SELECT referencedcomponentid FROM refset_snapshot WHERE refsetid IN (929360061000036106,929360021000036102,929360081000036101,929360041000036105,929360051000036108,929360071000036103,929360031000036100) AND active = 1 ) AND active = 1 -- 9. Finding AMT product concepts that have been inactivated and has NO association with another concept SELECT refset_snapshot.referencedcomponentid AS original_concept_ID, get_PT(refset_snapshot.referencedcomponentid) AS original_concept_PT, crefset_snapshot.targetComponentid AS replacement_concept_ID, get_PT(crefset_snapshot.targetComponentid) AS replacement_concept_term FROM refset_snapshot LEFT OUTER JOIN crefset_snapshot ON refset_snapshot.referencedcomponentid = crefset_snapshot.referencedcomponentid AND crefset_snapshot.active = 1 WHERE refset_snapshot.refsetid IN (929360061000036106,929360021000036102,929360081000036101,929360041000036105,929360051000036108,929360071000036103,929360031000036100) AND refset_snapshot.active = 0 AND crefset_snapshot.targetComponentid IS null
<filename>e2e/regression/cases/007_dedupe_nested/bqtail/schema.sql CREATE OR REPLACE TABLE dummy_v${parentIndex} ( id INT64 NOT NULL, type_id INT64 NOT NULL, name STRING, refs ARRAY<INT64> );
------------------------------------------------------------------------------- -- stock info ------------------------------------------------------------------------------- CREATE TABLE STOCK_INFO( ID BIGINT NOT NULL, STORE_COUNT INT, USING_COUNT INT, DESCRIPTION VARCHAR(200), TENANT_ID VARCHAR(64), SKU_ID BIGINT, CONSTRAINT PK_STOCK_INFO PRIMARY KEY(ID), CONSTRAINT FK_STOCK_INFO_SKU FOREIGN KEY(SKU_ID) REFERENCES SKU_INFO(ID) ); COMMENT ON TABLE STOCK_INFO IS '库存总数'; COMMENT ON COLUMN STOCK_INFO.ID IS '主键';
<filename>models/integration/int_converter_subscription_revenue.sql<gh_stars>100-1000 {% if var("subscriptions_warehouse_sources") %} SELECT d.event_id AS event_id, d.user_id, max(d.event_details) as plan_id, max(d.event_ts) AS subscribe_event_ts, max(p.plan_interval) as plan_interval, max(p.plan_name) as plan_name, max(p.plan_interval_count) as plan_interval_count, max(p.plan_amount/100) AS plan_amount, max(b.plan_ltv/100) AS baremetrics_predicted_ltv FROM {{ ref('stg_segment_dashboard_events_events') }} d JOIN {{ ref('stg_stripe_subscriptions_plans') }} p ON d.event_details = p.plan_id JOIN {{ ref('stg_baremetrics_plan_breakout') }} b ON p.plan_id = b.plan_id WHERE d.event_type = 'subscribed' AND date(b.plan_breakout_ts) = date(d.event_ts) {{ dbt_utils.group_by(n=2) }} {% else %} {{config(enabled=false)}} {% endif %}
<reponame>edwino-stein/desafio-tj<filename>bd/2-pessoa.sql CREATE TABLE public.pessoa ( id serial NOT NULL, cp character varying(14) NOT NULL, tipo character varying(10) NOT NULL, nome character varying(100) NOT NULL, endereco integer NOT NULL, nascimento date NOT NULL, telefone character varying(11) NOT NULL, PRIMARY KEY (id), CONSTRAINT cp_unique UNIQUE (cp), CONSTRAINT endereco_fk FOREIGN KEY (endereco) REFERENCES public.endereco (id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION NOT VALID ) WITH ( OIDS = FALSE ); ALTER TABLE public.pessoa OWNER to tj;
<filename>db/seeds/seed.sql SET IDENTITY_INSERT MovieRate.dbo.Movie ON; INSERT INTO MovieRate.dbo.Movie (MovieID, Name, Description) VALUES (1,'<NAME>', 'They find a stone') INSERT INTO MovieRate.dbo.Movie (MovieID, Name, Description) VALUES (2,'<NAME>', 'They find a ring') SET IDENTITY_INSERT MovieRate.dbo.Movie OFF; SET IDENTITY_INSERT MovieRate.dbo.Actor ON; INSERT INTO MovieRate.dbo.Actor (ActorID, Name, Age, MovieID) VALUES (1,'<NAME>', 25, 1) SET IDENTITY_INSERT MovieRate.dbo.Actor OFF;
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 29, 2020 at 03:39 PM -- Server version: 10.4.11-MariaDB -- PHP Version: 7.2.29 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `coders` -- -- -------------------------------------------------------- -- -- Table structure for table `options` -- CREATE TABLE `options` ( `id` bigint(20) UNSIGNED NOT NULL, `option` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` double DEFAULT NULL, `hours` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `weight` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `options` -- INSERT INTO `options` (`id`, `option`, `type`, `name`, `price`, `hours`, `weight`, `created_at`, `updated_at`) VALUES (1, '32066', '99-custom', 'Custom option 32066', 900, '10', '1', NULL, NULL), (3, '32066', '99-custom', 'Custom option 32066', 900, '10', '1', NULL, NULL), (4, '32066', '99-custom', 'Custom option 32066', 900, '10', '1', NULL, NULL), (5, '32066', '99-custom', 'Custom option 32066', 900, '10', '1', NULL, NULL), (6, '320611', 'test', 'test', 23, '2', '2', '2020-04-29 06:52:10', '2020-04-29 07:01:50'); -- -- Indexes for dumped tables -- -- -- Indexes for table `options` -- ALTER TABLE `options` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `options` -- ALTER TABLE `options` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '(1’C)D 3’2’ T 35', '1CD32T35', 1); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '1’C1’ h2t', '1C1H2T', 2); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '1’C h2t 3 T 16', '1CH2T3T16', 3); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '1’D1’ h2t', '1D1H2T', 4); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '1’E1’ h3 2’3’ T 28', '1E1H323T28', 5); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '1’E h2 2’2’ T 26 KAB5', '1EH222T26KAB5', 6); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '1’E1’ h3t', '1E1H3T', 7); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '2’C1’ h2 2’2’ T 32', '2C1H222T32', 8); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '2’C1’ 2’2’ T 34', '2C1H322T34', 9); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '2’C1’ h3 2’2’ T 40', '2C1H322T40', 10); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'A1 dm', 'A1DM', 11); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'AA dm', 'AADM', 12); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'B drn', 'BDRN', 13); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'B h2t', 'BH2T', 14); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'B’2’ dh 2’2’ 2’2’ 2’B’ dh', 'B2DH22222BDH', 15); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'B’B’ de', 'BBDE', 16); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'B’B’ dh', 'BBDH', 17); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'B’B’', 'BB', 18); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'Bo’2’', 'BO2', 19); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'B’2’+2’2’+2’2’+2’B’', 'B222222B', 20); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'Bo’Bo’+Bo’Bo’+Bo’Bo’+Bo’Bo’', 'BOBOBOBOBOBOBOBO', 21); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'C dh', 'CDH', 22); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'C h2t', 'CH2T', 23); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'C’C’ dh', 'CCDH', 24); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'Co’Co’ w6gf', 'COCOW6GF', 25); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'Co’Co’', 'COCO', 26); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'D h2t', 'DH2T', 27); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'D’D’ h4vt', 'DDH4VT', 28); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '11', '11', 29); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '111', '111', 30); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '1A', '1A', 31); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '2’2’', '22', 32); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '3’3’ 2’2’ T 26', '3322T26', 33); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, '3’3’', '33', 34); INSERT INTO achsfolg (deleted, bezeichnung, name, id) VALUES (FALSE, 'Bo’Bo’', 'BOBO', 35); ALTER TABLE achsfolg ALTER COLUMN id RESTART WITH 36;
<gh_stars>0 /* Navicat Premium Data Transfer Source Server : localhost_3306 Source Server Type : MySQL Source Server Version : 80013 Source Host : localhost:3306 Source Schema : wucai Target Server Type : MySQL Target Server Version : 80013 File Encoding : 65001 Date: 03/05/2020 19:13:56 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for heros_play -- ---------------------------- DROP TABLE IF EXISTS `heros_play`; CREATE TABLE `heros_play` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hero_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `game_id` int(11) NULL DEFAULT NULL, `player_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `kda_k` int(11) NULL DEFAULT NULL, `kda_d` int(11) NULL DEFAULT NULL, `kda_a` int(11) NULL DEFAULT NULL, `money` int(11) NULL DEFAULT NULL, `damage_input` int(11) NULL DEFAULT NULL, `damage_output` int(11) NULL DEFAULT NULL, `win` tinyint(2) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `hero_player`(`hero_name`, `game_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of heros_play -- ---------------------------- INSERT INTO `heros_play` VALUES (502, '露娜', 65314, 'XQ.九尾', 2, 4, 2, 16912, 116536, 48543, 0); INSERT INTO `heros_play` VALUES (503, '马超', 65314, '百兽', 4, 1, 8, 15963, 78315, 110786, 1); INSERT INTO `heros_play` VALUES (504, '兰陵王', 65314, 'XQ.绑兔', 4, 5, 9, 11251, 84217, 49224, 0); INSERT INTO `heros_play` VALUES (505, '虞姬', 65314, '鹏鹏', 2, 5, 10, 14755, 53525, 117879, 1); INSERT INTO `heros_play` VALUES (506, '狄仁杰', 65314, 'XQ.钎城', 4, 2, 6, 17818, 87906, 119123, 0); INSERT INTO `heros_play` VALUES (507, '沈梦溪', 65314, '青枫', 6, 0, 7, 13915, 26129, 141993, 1); INSERT INTO `heros_play` VALUES (508, '吕布', 65314, 'XQ.晨羽', 3, 5, 4, 12220, 161638, 77695, 0); INSERT INTO `heros_play` VALUES (509, '娜可露露', 65314, '阿改', 7, 4, 3, 15322, 98562, 96175, 1); INSERT INTO `heros_play` VALUES (510, '太乙真人', 65314, 'XQ.冰尘', 0, 3, 10, 9228, 130577, 29778, 0); INSERT INTO `heros_play` VALUES (511, '刘邦', 65314, '伊恩', 0, 3, 13, 9658, 132371, 19882, 1); INSERT INTO `heros_play` VALUES (512, '西施', 65316, 'XQ.九尾', 4, 0, 8, 13055, 27724, 79205, 1); INSERT INTO `heros_play` VALUES (513, '曜', 65316, '百兽', 2, 3, 0, 11656, 67333, 39793, 0); INSERT INTO `heros_play` VALUES (514, '裴擒虎', 65316, 'XQ.绑兔', 3, 2, 6, 13712, 109560, 51641, 1); INSERT INTO `heros_play` VALUES (515, '公孙离', 65316, '鹏鹏', 1, 4, 2, 11423, 60365, 85294, 0); INSERT INTO `heros_play` VALUES (516, '马可波罗', 65316, 'XQ.钎城', 5, 0, 8, 16294, 62920, 146882, 1); INSERT INTO `heros_play` VALUES (517, '嬴政', 65316, '青枫', 1, 3, 0, 11715, 45727, 85758, 0); INSERT INTO `heros_play` VALUES (518, '关羽', 65316, 'XQ.晨羽', 3, 2, 6, 11291, 61483, 55975, 1); INSERT INTO `heros_play` VALUES (519, '橘右京', 65316, '阿改', 1, 4, 2, 10468, 84777, 35470, 0); INSERT INTO `heros_play` VALUES (520, '牛魔', 65316, 'XQ.冰尘', 1, 1, 5, 7615, 103102, 20881, 1); INSERT INTO `heros_play` VALUES (521, '张飞', 65316, '伊恩', 0, 2, 3, 7277, 141364, 19179, 0); INSERT INTO `heros_play` VALUES (522, '沈梦溪', 65318, 'XQ.九尾', 3, 3, 5, 9399, 39431, 120564, 0); INSERT INTO `heros_play` VALUES (523, '关羽', 65318, '百兽', 5, 1, 6, 11617, 58227, 73659, 1); INSERT INTO `heros_play` VALUES (524, '娜可露露', 65318, 'XQ.绑兔', 2, 5, 5, 9845, 64479, 24613, 0); INSERT INTO `heros_play` VALUES (525, '李元芳', 65318, '鹏鹏', 7, 2, 6, 13212, 65981, 100874, 1); INSERT INTO `heros_play` VALUES (526, '狂铁', 65318, 'XQ.钎城', 3, 3, 4, 9119, 91255, 44915, 0); INSERT INTO `heros_play` VALUES (527, '王昭君', 65318, '青枫', 2, 1, 14, 8858, 56575, 77396, 1); INSERT INTO `heros_play` VALUES (528, '铠', 65318, 'XQ.晨羽', 2, 2, 2, 10068, 76380, 38125, 0); INSERT INTO `heros_play` VALUES (529, '赵云', 65318, '阿改', 5, 1, 9, 10533, 71810, 60699, 1); INSERT INTO `heros_play` VALUES (530, '苏烈', 65318, 'XQ.冰尘', 0, 6, 8, 5299, 117464, 24505, 0); INSERT INTO `heros_play` VALUES (531, '盾山', 65318, '伊恩', 0, 5, 11, 6410, 75541, 22495, 1); INSERT INTO `heros_play` VALUES (532, '不知火舞', 65321, 'XQ.九尾', 6, 3, 4, 11552, 45066, 71066, 1); INSERT INTO `heros_play` VALUES (533, '狂铁', 65321, '百兽', 6, 2, 4, 12128, 139214, 94944, 0); INSERT INTO `heros_play` VALUES (534, '猪八戒', 65321, 'XQ.绑兔', 2, 2, 6, 9992, 137122, 51007, 1); INSERT INTO `heros_play` VALUES (535, '孙尚香', 65321, '鹏鹏', 2, 4, 1, 12588, 52346, 81110, 0); INSERT INTO `heros_play` VALUES (536, '李元芳', 65321, 'XQ.钎城', 6, 2, 4, 13604, 53085, 107507, 1); INSERT INTO `heros_play` VALUES (537, '姜子牙', 65321, '青枫', 1, 3, 2, 9384, 36239, 73666, 0); INSERT INTO `heros_play` VALUES (538, '马超', 65321, 'XQ.晨羽', 6, 4, 7, 15563, 74586, 76777, 1); INSERT INTO `heros_play` VALUES (539, '云中君', 65321, '阿改', 1, 8, 5, 9283, 79184, 57974, 0); INSERT INTO `heros_play` VALUES (540, '张飞', 65321, 'XQ.冰尘', 0, 0, 10, 7591, 93290, 27693, 1); INSERT INTO `heros_play` VALUES (541, '太乙真人', 65321, '伊恩', 1, 3, 3, 8217, 78518, 15043, 0); INSERT INTO `heros_play` VALUES (542, '上官婉儿', 65324, 'XQ.九尾', 0, 3, 0, 10551, 27507, 49371, 0); INSERT INTO `heros_play` VALUES (543, '曹操', 65324, '百兽', 1, 0, 3, 13324, 36747, 26700, 1); INSERT INTO `heros_play` VALUES (544, '盘古', 65324, 'XQ.绑兔', 0, 1, 0, 8369, 61029, 26411, 0); INSERT INTO `heros_play` VALUES (545, '蒙犽', 65324, '鹏鹏', 2, 0, 3, 14310, 44099, 75858, 1); INSERT INTO `heros_play` VALUES (546, '孙尚香', 65324, 'XQ.钎城', 0, 2, 0, 11797, 41957, 46614, 0); INSERT INTO `heros_play` VALUES (547, '西施', 65324, '青枫', 1, 0, 6, 10073, 32184, 65271, 1); INSERT INTO `heros_play` VALUES (548, '老夫子', 65324, 'XQ.晨羽', 0, 2, 0, 10089, 48038, 19189, 0); INSERT INTO `heros_play` VALUES (549, '孙策', 65324, '阿改', 3, 0, 2, 9256, 63377, 25120, 1); INSERT INTO `heros_play` VALUES (550, '庄周', 65324, 'XQ.冰尘', 0, 0, 0, 6079, 72214, 32121, 0); INSERT INTO `heros_play` VALUES (551, '廉颇', 65324, '伊恩', 1, 0, 5, 7556, 79349, 16937, 1); INSERT INTO `heros_play` VALUES (552, '橘右京', 65204, '轩泽', 3, 1, 4, 11718, 50341, 38722, 1); INSERT INTO `heros_play` VALUES (553, '百里守约', 65204, 'XQ.九尾', 1, 4, 0, 7421, 27365, 43734, 0); INSERT INTO `heros_play` VALUES (554, '兰陵王', 65204, '清融', 1, 2, 5, 7555, 46392, 16476, 1); INSERT INTO `heros_play` VALUES (555, '裴擒虎', 65204, 'XQ.绑兔', 2, 2, 2, 11001, 67836, 20920, 0); INSERT INTO `heros_play` VALUES (556, '元歌', 65204, '月色', 6, 0, 3, 11504, 31785, 62194, 1); INSERT INTO `heros_play` VALUES (557, '马可波罗', 65204, 'XQ.钎城', 1, 3, 2, 9680, 43405, 53866, 0); INSERT INTO `heros_play` VALUES (558, '蒙犽', 65204, '久酷', 2, 1, 7, 12168, 36677, 62838, 1); INSERT INTO `heros_play` VALUES (559, '狂铁', 65204, 'XQ.晨羽', 0, 1, 2, 9906, 78718, 30178, 0); INSERT INTO `heros_play` VALUES (560, '张飞', 65204, '尘夏', 0, 1, 4, 6214, 101572, 6758, 1); INSERT INTO `heros_play` VALUES (561, '姜子牙', 65204, 'XQ.冰尘', 1, 2, 3, 6401, 22065, 54175, 0); INSERT INTO `heros_play` VALUES (562, '关羽', 65207, '轩泽', 3, 3, 1, 14657, 90181, 55852, 0); INSERT INTO `heros_play` VALUES (563, '沈梦溪', 65207, 'XQ.九尾', 1, 1, 11, 14003, 47639, 112393, 1); INSERT INTO `heros_play` VALUES (564, '云中君', 65207, '清融', 2, 4, 3, 12366, 92388, 50335, 0); INSERT INTO `heros_play` VALUES (565, '赵云', 65207, 'XQ.绑兔', 3, 2, 6, 15120, 111215, 46406, 1); INSERT INTO `heros_play` VALUES (566, '姜子牙', 65207, '月色', 1, 2, 1, 12883, 51834, 104185, 0); INSERT INTO `heros_play` VALUES (567, '孙尚香', 65207, 'XQ.钎城', 6, 2, 6, 16671, 69010, 106893, 1); INSERT INTO `heros_play` VALUES (568, '马可波罗', 65207, '久酷', 2, 3, 3, 16045, 73806, 124467, 0); INSERT INTO `heros_play` VALUES (569, '曜', 65207, 'XQ.晨羽', 2, 3, 6, 14446, 84952, 49822, 1); INSERT INTO `heros_play` VALUES (570, '太乙真人', 65207, '尘夏', 0, 3, 3, 8411, 102967, 9738, 0); INSERT INTO `heros_play` VALUES (571, '张飞', 65207, 'XQ.冰尘', 3, 0, 12, 10277, 127764, 21226, 1); INSERT INTO `heros_play` VALUES (572, '曜', 65210, '轩泽', 0, 3, 1, 7259, 49587, 34406, 0); INSERT INTO `heros_play` VALUES (573, '上官婉儿', 65210, 'XQ.九尾', 4, 0, 6, 9264, 25978, 39846, 1); INSERT INTO `heros_play` VALUES (574, '百里玄策', 65210, '清融', 0, 4, 1, 5845, 41255, 12685, 0); INSERT INTO `heros_play` VALUES (575, '云中君', 65210, 'XQ.绑兔', 6, 1, 4, 9677, 46203, 38712, 1); INSERT INTO `heros_play` VALUES (576, '王昭君', 65210, '月色', 1, 2, 1, 6800, 24666, 34317, 0); INSERT INTO `heros_play` VALUES (577, '李元芳', 65210, 'XQ.钎城', 3, 0, 10, 10449, 30086, 56368, 1); INSERT INTO `heros_play` VALUES (578, '黄忠', 65210, '久酷', 1, 3, 1, 7316, 24266, 30770, 0); INSERT INTO `heros_play` VALUES (579, '吕布', 65210, 'XQ.晨羽', 2, 1, 6, 8917, 56859, 32147, 1); INSERT INTO `heros_play` VALUES (580, '廉颇', 65210, '尘夏', 0, 3, 1, 4442, 54788, 17617, 0); INSERT INTO `heros_play` VALUES (581, '盾山', 65210, 'XQ.冰尘', 0, 0, 7, 5317, 39998, 8162, 1); INSERT INTO `heros_play` VALUES (582, '盘古', 65215, '迷神', 3, 6, 9, 17412, 186548, 71105, 0); INSERT INTO `heros_play` VALUES (583, '刘邦', 65215, '凉晨', 3, 7, 12, 15216, 229257, 65094, 1); INSERT INTO `heros_play` VALUES (584, '老夫子', 65215, '苏沫', 3, 6, 12, 16637, 188872, 63948, 0); INSERT INTO `heros_play` VALUES (585, '马超', 65215, '雨雨', 5, 5, 9, 21526, 163181, 160489, 1); INSERT INTO `heros_play` VALUES (586, '蒙犽', 65215, '小鹏', 9, 3, 10, 22097, 118498, 299097, 0); INSERT INTO `heros_play` VALUES (587, '马可波罗', 65215, '虔诚', 5, 5, 14, 21062, 138210, 270690, 1); INSERT INTO `heros_play` VALUES (588, '周瑜', 65215, '花卷', 7, 4, 14, 20418, 132495, 255861, 0); INSERT INTO `heros_play` VALUES (589, '安琪拉', 65215, '暴风锐', 11, 1, 7, 21342, 111796, 223802, 1); INSERT INTO `heros_play` VALUES (590, '张飞', 65215, '夏竹', 1, 7, 13, 12087, 278718, 35414, 0); INSERT INTO `heros_play` VALUES (591, '太乙真人', 65215, 'Zero', 2, 5, 15, 14053, 222109, 50668, 1); INSERT INTO `heros_play` VALUES (592, '橘右京', 65217, '迷神', 4, 0, 9, 10872, 66113, 51512, 1); INSERT INTO `heros_play` VALUES (593, '吕布', 65217, '凉晨', 2, 3, 8, 9039, 80075, 33001, 0); INSERT INTO `heros_play` VALUES (594, '关羽', 65217, '苏沫', 1, 1, 6, 9902, 49671, 31544, 1); INSERT INTO `heros_play` VALUES (595, '曜', 65217, '雨雨', 3, 2, 2, 10987, 50840, 38094, 0); INSERT INTO `heros_play` VALUES (596, '马可波罗', 65217, '小鹏', 7, 1, 6, 12105, 44883, 102672, 1); INSERT INTO `heros_play` VALUES (597, '裴擒虎', 65217, '虔诚', 4, 3, 4, 12630, 68292, 66572, 0); INSERT INTO `heros_play` VALUES (598, '张良', 65217, '花卷', 1, 5, 5, 6555, 42407, 28088, 1); INSERT INTO `heros_play` VALUES (599, '不知火舞', 65217, '暴风锐', 1, 3, 7, 9335, 43279, 68020, 0); INSERT INTO `heros_play` VALUES (600, '牛魔', 65217, '夏竹', 1, 5, 11, 6218, 85253, 32503, 1); INSERT INTO `heros_play` VALUES (601, '孙膑', 65217, 'Zero', 2, 3, 9, 6651, 55533, 55776, 0); INSERT INTO `heros_play` VALUES (602, '娜可露露', 65218, '迷神', 8, 1, 5, 14660, 65979, 62839, 1); INSERT INTO `heros_play` VALUES (603, '赵云', 65218, '凉晨', 4, 5, 5, 11023, 88915, 65061, 0); INSERT INTO `heros_play` VALUES (604, '猪八戒', 65218, '苏沫', 0, 3, 16, 9634, 134761, 42859, 1); INSERT INTO `heros_play` VALUES (605, '老夫子', 65218, '雨雨', 2, 7, 7, 10430, 82099, 67216, 0); INSERT INTO `heros_play` VALUES (606, '公孙离', 65218, '小鹏', 7, 2, 7, 14453, 60035, 122741, 1); INSERT INTO `heros_play` VALUES (607, '孙尚香', 65218, '虔诚', 6, 6, 3, 13118, 70014, 106729, 0); INSERT INTO `heros_play` VALUES (608, '上官婉儿', 65218, '花卷', 9, 6, 7, 11053, 64930, 115007, 1); INSERT INTO `heros_play` VALUES (609, '周瑜', 65218, '暴风锐', 2, 5, 9, 11071, 49604, 82092, 0); INSERT INTO `heros_play` VALUES (610, '廉颇', 65218, '夏竹', 1, 3, 11, 7673, 101009, 34001, 1); INSERT INTO `heros_play` VALUES (611, '张飞', 65218, 'Zero', 1, 2, 7, 7262, 119420, 34483, 0); INSERT INTO `heros_play` VALUES (612, '裴擒虎', 65222, '迷神', 3, 1, 2, 9785, 30765, 20364, 0); INSERT INTO `heros_play` VALUES (613, '橘右京', 65222, '凉晨', 0, 3, 5, 6930, 37460, 14746, 1); INSERT INTO `heros_play` VALUES (614, '狂铁', 65222, '苏沫', 0, 4, 4, 5991, 43339, 13037, 0); INSERT INTO `heros_play` VALUES (615, '曹操', 65222, '雨雨', 4, 0, 2, 9005, 44790, 19319, 1); INSERT INTO `heros_play` VALUES (616, '孙尚香', 65222, '小鹏', 1, 1, 3, 8882, 29474, 21791, 0); INSERT INTO `heros_play` VALUES (617, '蒙犽', 65222, '虔诚', 4, 0, 7, 11173, 17157, 58407, 1); INSERT INTO `heros_play` VALUES (618, '干将莫邪', 65222, '花卷', 1, 2, 4, 7087, 23731, 62993, 0); INSERT INTO `heros_play` VALUES (619, '张良', 65222, '暴风锐', 2, 1, 5, 6497, 18523, 18768, 1); INSERT INTO `heros_play` VALUES (620, '盾山', 65222, '夏竹', 0, 3, 3, 4440, 33576, 4063, 0); INSERT INTO `heros_play` VALUES (621, '廉颇', 65222, 'Zero', 1, 2, 6, 5022, 50749, 14127, 1); INSERT INTO `heros_play` VALUES (622, '露娜', 65223, '迷神', 0, 2, 1, 10661, 52357, 6743, 0); INSERT INTO `heros_play` VALUES (623, '兰陵王', 65223, '凉晨', 1, 0, 5, 9503, 29721, 18513, 1); INSERT INTO `heros_play` VALUES (624, '刘邦', 65223, '苏沫', 1, 3, 1, 7105, 38859, 10346, 0); INSERT INTO `heros_play` VALUES (625, '关羽', 65223, '雨雨', 1, 0, 4, 11211, 36343, 23086, 1); INSERT INTO `heros_play` VALUES (626, '狄仁杰', 65223, '小鹏', 0, 0, 0, 9587, 17994, 22271, 0); INSERT INTO `heros_play` VALUES (627, '后羿', 65223, '虔诚', 7, 0, 4, 13232, 41909, 64266, 1); INSERT INTO `heros_play` VALUES (628, '沈梦溪', 65223, '花卷', 1, 1, 1, 8699, 25100, 62315, 0); INSERT INTO `heros_play` VALUES (629, '王昭君', 65223, '暴风锐', 2, 0, 9, 9672, 21694, 41558, 1); INSERT INTO `heros_play` VALUES (630, '太乙真人', 65223, '夏竹', 0, 5, 1, 5757, 57084, 4043, 0); INSERT INTO `heros_play` VALUES (631, '盾山', 65223, 'Zero', 0, 2, 6, 6268, 48245, 9980, 1); INSERT INTO `heros_play` VALUES (632, '周瑜', 65286, '笑', 1, 1, 3, 13718, 109569, 107760, 0); INSERT INTO `heros_play` VALUES (633, '曜', 65286, '初心', 1, 2, 2, 16403, 104959, 93731, 1); INSERT INTO `heros_play` VALUES (634, '关羽', 65286, '易瞳', 1, 1, 1, 14366, 104805, 53410, 0); INSERT INTO `heros_play` VALUES (635, '苏烈', 65286, '556', 1, 0, 6, 9697, 162973, 29419, 1); INSERT INTO `heros_play` VALUES (636, '赵云', 65286, '吴勉', 1, 4, 3, 13485, 144695, 41769, 0); INSERT INTO `heros_play` VALUES (637, '裴擒虎', 65286, '小新', 5, 1, 0, 17474, 118355, 64501, 1); INSERT INTO `heros_play` VALUES (638, '蒙犽', 65286, '十三', 1, 1, 3, 18424, 101540, 140395, 0); INSERT INTO `heros_play` VALUES (639, '沈梦溪', 65286, '小A', 1, 1, 5, 13328, 41419, 218610, 1); INSERT INTO `heros_play` VALUES (640, '太乙真人', 65286, '萌神', 1, 2, 3, 11592, 171459, 19770, 0); INSERT INTO `heros_play` VALUES (641, '马可波罗', 65286, 'Best', 1, 1, 7, 16025, 69507, 180262, 1); INSERT INTO `heros_play` VALUES (642, '张良', 65290, '笑', 8, 2, 9, 16299, 51523, 129009, 0); INSERT INTO `heros_play` VALUES (643, '关羽', 65290, '初心', 2, 2, 9, 16874, 136600, 90059, 1); INSERT INTO `heros_play` VALUES (644, '猪八戒', 65290, '易瞳', 3, 5, 11, 15312, 259644, 57098, 0); INSERT INTO `heros_play` VALUES (645, '盾山', 65290, '556', 0, 9, 10, 11245, 176905, 23159, 1); INSERT INTO `heros_play` VALUES (646, '云中君', 65290, '吴勉', 5, 3, 6, 21345, 123734, 60106, 0); INSERT INTO `heros_play` VALUES (647, '娜可露露', 65290, '小新', 4, 4, 11, 21142, 110507, 139051, 1); INSERT INTO `heros_play` VALUES (648, '马可波罗', 65290, '十三', 4, 4, 14, 19964, 103909, 194365, 0); INSERT INTO `heros_play` VALUES (649, '周瑜', 65290, '小A', 3, 4, 17, 15970, 72739, 141215, 1); INSERT INTO `heros_play` VALUES (650, '苏烈', 65290, '萌神', 3, 8, 14, 12110, 263490, 55991, 0); INSERT INTO `heros_play` VALUES (651, '后羿', 65290, 'Best', 13, 4, 8, 20004, 86219, 270979, 1); INSERT INTO `heros_play` VALUES (652, '沈梦溪', 65292, '笑', 1, 1, 2, 8973, 23539, 86371, 0); INSERT INTO `heros_play` VALUES (653, '老夫子', 65292, '初心', 2, 1, 6, 10789, 54182, 38018, 1); INSERT INTO `heros_play` VALUES (654, '狂铁', 65292, '易瞳', 0, 3, 2, 7495, 81385, 30487, 0); INSERT INTO `heros_play` VALUES (655, '太乙真人', 65292, '556', 1, 1, 7, 7382, 69524, 21380, 1); INSERT INTO `heros_play` VALUES (656, '娜可露露', 65292, '吴勉', 0, 5, 3, 8790, 63007, 29470, 0); INSERT INTO `heros_play` VALUES (657, '赵云', 65292, '小新', 4, 1, 7, 11269, 73504, 62806, 1); INSERT INTO `heros_play` VALUES (658, '公孙离', 65292, '十三', 3, 2, 1, 10335, 53861, 63532, 0); INSERT INTO `heros_play` VALUES (659, '王昭君', 65292, '小A', 2, 1, 8, 9189, 49584, 85364, 1); INSERT INTO `heros_play` VALUES (660, '张飞', 65292, '萌神', 0, 3, 1, 5699, 100207, 17250, 0); INSERT INTO `heros_play` VALUES (661, '孙尚香', 65292, 'Best', 5, 0, 3, 12347, 44670, 69191, 1); INSERT INTO `heros_play` VALUES (662, '关羽', 65295, '沽酒', 3, 0, 6, 9783, 32750, 38592, 1); INSERT INTO `heros_play` VALUES (663, '曜', 65295, '轻雨', 1, 4, 0, 8394, 44367, 25865, 0); INSERT INTO `heros_play` VALUES (664, '杨戬', 65295, '冷心', 9, 0, 5, 12320, 44249, 42802, 1); INSERT INTO `heros_play` VALUES (665, '赵云', 65295, '清融', 0, 3, 2, 7134, 42246, 13179, 0); INSERT INTO `heros_play` VALUES (666, '姜子牙', 65295, '晴一', 2, 2, 8, 7348, 20218, 59114, 1); INSERT INTO `heros_play` VALUES (667, '上官婉儿', 65295, '月色', 3, 4, 0, 7027, 41461, 56742, 0); INSERT INTO `heros_play` VALUES (668, '孙尚香', 65295, '夏天', 2, 1, 6, 10533, 34185, 53485, 1); INSERT INTO `heros_play` VALUES (669, '公孙离', 65295, '久酷', 0, 2, 1, 8166, 28887, 29511, 0); INSERT INTO `heros_play` VALUES (670, '张飞', 65295, '兽兽', 0, 1, 10, 5720, 62675, 14640, 1); INSERT INTO `heros_play` VALUES (671, '太乙真人', 65295, '尘夏', 0, 3, 3, 5098, 73853, 9786, 0); INSERT INTO `heros_play` VALUES (672, '曜', 65296, '沽酒', 2, 1, 1, 9113, 39784, 31381, 1); INSERT INTO `heros_play` VALUES (673, '关羽', 65296, '轻雨', 0, 2, 0, 7587, 40487, 21751, 0); INSERT INTO `heros_play` VALUES (674, '裴擒虎', 65296, '冷心', 3, 0, 6, 10693, 51930, 46613, 1); INSERT INTO `heros_play` VALUES (675, '盘古', 65296, '清融', 1, 4, 3, 5114, 53510, 21642, 0); INSERT INTO `heros_play` VALUES (676, '不知火舞', 65296, '晴一', 3, 1, 5, 8403, 49449, 82597, 1); INSERT INTO `heros_play` VALUES (677, '嬴政', 65296, '月色', 2, 1, 3, 8731, 24174, 65745, 0); INSERT INTO `heros_play` VALUES (678, '马可波罗', 65296, '夏天', 1, 1, 5, 8566, 34333, 47583, 1); INSERT INTO `heros_play` VALUES (679, '蒙犽', 65296, '久酷', 2, 1, 3, 9190, 34020, 81794, 0); INSERT INTO `heros_play` VALUES (680, '苏烈', 65296, '兽兽', 1, 2, 6, 5202, 90575, 11560, 1); INSERT INTO `heros_play` VALUES (681, '张飞', 65296, '尘夏', 0, 2, 5, 4522, 96326, 15819, 0); INSERT INTO `heros_play` VALUES (682, '李信', 65297, '沽酒', 1, 1, 8, 15496, 71286, 71963, 1); INSERT INTO `heros_play` VALUES (683, '橘右京', 65297, '轻雨', 0, 1, 6, 12602, 74782, 57155, 0); INSERT INTO `heros_play` VALUES (684, '云中君', 65297, '冷心', 6, 0, 1, 15164, 70617, 37108, 1); INSERT INTO `heros_play` VALUES (685, '裴擒虎', 65297, '清融', 7, 2, 2, 16308, 113528, 64943, 0); INSERT INTO `heros_play` VALUES (686, '干将莫邪', 65297, '晴一', 2, 2, 5, 13092, 34230, 186302, 1); INSERT INTO `heros_play` VALUES (687, '西施', 65297, '月色', 2, 1, 3, 11194, 55073, 54631, 0); INSERT INTO `heros_play` VALUES (688, '公孙离', 65297, '夏天', 1, 1, 6, 13832, 53150, 83152, 1); INSERT INTO `heros_play` VALUES (689, '吕布', 65297, '久酷', 0, 5, 4, 8259, 115947, 34318, 0); INSERT INTO `heros_play` VALUES (690, '盾山', 65297, '兽兽', 0, 5, 7, 7335, 79373, 10922, 1); INSERT INTO `heros_play` VALUES (691, '鬼谷子', 65297, '尘夏', 0, 1, 6, 7714, 80077, 15612, 0); SET FOREIGN_KEY_CHECKS = 1;
INSERT INTO permisos (modulo, area, created_at) VALUES('PRINCIPAL', 'USUARIOS', NOW()); INSERT INTO permisos (modulo, area, created_at) VALUES('GENERAL', 'GESTIÓN ADMINISTRATIVA', NOW()); INSERT INTO permisos (modulo, area, created_at) VALUES('PRINCIPAL', 'GESTIÓN ADMINISTRATIVA', NOW()); INSERT INTO permisos (modulo, area, created_at) VALUES('FOROS', 'GESTIÓN ADMINISTRATIVA', NOW()); INSERT INTO permisos (modulo, area, created_at) VALUES('CONFERENCIA ASISTENCIA', 'USUARIOS', NOW()); INSERT INTO permisos (modulo, area, created_at) VALUES('FOROS', 'USUARIOS', NOW()); INSERT INTO permisos (modulo, AREA, created_at) VALUES('PONENTES', 'GESTIÓN ADMINISTRATIVA', NOW()); INSERT INTO permisos (modulo, area, created_at) VALUES('LISTAR PONENTES', 'GESTIÓN ADMINISTRATIVA', NOW()); INSERT INTO permisos (modulo, area, created_at) VALUES('LISTAR CONGRESOS', 'GESTIÓN ADMINISTRATIVA', NOW()); INSERT INTO permisos (modulo, area, created_at) VALUES('LISTAR CATEGORIAS', 'GESTIÓN ADMINISTRATIVA', NOW()); INSERT INTO permisos (modulo, area, created_at) VALUES('LISTAR ADMINISTRADORES', 'GESTIÓN ADMINISTRATIVA', NOW()); INSERT INTO permisos (modulo, area, created_at) VALUES('LISTAR RECURSOS', 'GESTIÓN ADMINISTRATIVA', NOW());
<filename>db/schema.sql create database burgers_db; use burgers_db; CREATE TABLE burgers ( id int(11) NOT NULL AUTO_INCREMENT, burger_name varchar(45) NOT NULL, devoured BOOLEAN DEFAULT false, PRIMARY KEY (`id`) );
/* 9. Create a table to show the count of most frequent PCF (Primary Collision Factor) Violation Categories that are under the most frequent PCF, and the number of dead and injuries associated with each of them among the 2 decades under study. (i.e., 2001 - 2010 and 2011 – 2020) */ SELECT pcf_violation_category AS PCF_Violation_Categories, COUNT(pcf_violation_category) AS PCF_Category_Count, COUNT(pcf_violation_category) / (SELECT COUNT(pcf_violation_category) FROM collisions WHERE YEAR(collision_date) > 2010 AND pcf_violation_category = (SELECT COUNT(pcf_violation_category) FROM collisions WHERE pcf_violation_category = (SELECT primary_collision_factor FROM collisions GROUP BY primary_collision_factor ORDER BY COUNT(primary_collision_factor) DESC LIMIT 1))) * 100 AS Percentage_PCF_Category_Count, SUM(killed_victims) AS Death_Count, SUM(killed_victims) / (SELECT SUM(killed_victims) FROM collisions WHERE YEAR(collision_date) > 2010 AND pcf_violation_category = (SELECT COUNT(pcf_violation_category) FROM collisions WHERE pcf_violation_category = (SELECT primary_collision_factor FROM collisions GROUP BY primary_collision_factor ORDER BY COUNT(primary_collision_factor) DESC LIMIT 1))) * 100 AS Death_Percentage, SUM(injured_victims) AS Injuries_Count, SUM(injured_victims) / (SELECT SUM(injured_victims) FROM collisions WHERE YEAR(collision_date) > 2010 AND pcf_violation_category = (SELECT COUNT(pcf_violation_category) FROM collisions WHERE pcf_violation_category = (SELECT primary_collision_factor FROM collisions GROUP BY primary_collision_factor ORDER BY COUNT(primary_collision_factor) DESC LIMIT 1))) * 100 AS Injuries_Percentage FROM collisions WHERE pcf_violation_category = (SELECT COUNT(pcf_violation_category) FROM collisions WHERE pcf_violation_category = (SELECT primary_collision_factor FROM collisions GROUP BY primary_collision_factor ORDER BY COUNT(primary_collision_factor) DESC LIMIT 1)) AND YEAR(collision_date) > 2010 GROUP BY pcf_violation_category ORDER BY Death_Count DESC; /* Note: Firstly, we write the query to retrieve the data in the recent decade (2011-2020) Comment: Looking at the results obtained in the following pages, we notice that even though “DUI” (Driving Under Influence) is the cause of only 7% of the collisions, it is responsible for over 20% of the deaths, standing as the main cause of collisions ending up in death of a party for both decades. “Speeding” is the most common PCF violation category under ‘Vehicle Code Violation’ being responsible for almost one third of the collisions in both decades. Another interesting fact is that the number of deaths in the recent decade is decreased compared to the previous one (2001-2010). Even though, it is apparent that we don’t have all the information about the year 2020. In the recent decade (2011-2020) we don’t have any death caused by “pedestrian dui” which is a huge improvement since the previous decade, as it caused 124 death counts standing as top 15 causes of death under “Vehicle Code Violation”. */
<gh_stars>0 CREATE TABLE user_status( user_0x TEXT UNIQUE NOT NULL, twit_sn TEXT NOT NULL, last_visited TIMESTAMP NOT NULL DEFAULT NOW(), status TEXT ); CREATE TABLE user_keys( user_0x TEXT UNIQUE NOT NULL, oauth_token_secret TEXT, access_token TEXT, access_token_secret TEXT ); CREATE TABLE webhooks( hook_uid TEXT NOT NULL UNIQUE, twit_sn TEXT NOT NULL, label TEXT DEFAULT 'N/A', url TEXT NOT NULL, twit_target TEXT NOT NULL, favorites BOOL DEFAULT False, posts BOOL DEFAULT False, media_only BOOL DEFAULT False, time_added TIMESTAMP NOT NULL DEFAULT NOW(), time_queried TIMESTAMP NOT NULL DEFAULT NOW() - interval '1 day' );
-- FORMS UPDATE `sys_form_inputs` SET `type`='price' WHERE `object`='bx_organizations_price' AND `name`='price';
-- a) Creacion de la tabla intermedia -- Borrar tabla intermedia (por si quedo de run anterior) DROP TABLE IF EXISTS intermedia; -- Crear tabla intermedia CREATE TABLE intermedia( Quarter TEXT NOT NULL, Month TEXT NOT NULL, Week TEXT NOT NULL, Product_Type TEXT NOT NULL, Territory TEXT NOT NULL, Sales_Channel TEXT NOT NULL, Customer_Type TEXT NOT NULL, Revenue FLOAT, Cost FLOAT ); -- b) Creacion de la tabla definitiva -- Borrar tabla definitiva (por si quedo de run anterior) DROP TABLE IF EXISTS definitiva; -- Crear tabla definitiva CREATE TABLE definitiva( Sales_Date DATE NOT NULL, Product_Type TEXT NOT NULL, Territory TEXT NOT NULL, Sales_Channel TEXT NOT NULL, Customer_Type TEXT NOT NULL, Revenue FLOAT, Cost FLOAT, CONSTRAINT PK_Definitiva PRIMARY KEY (Sales_Date, Product_Type, Territory, Sales_Channel, Customer_Type) ); -- c) Importacion de los datos -- Import data CREATE OR REPLACE FUNCTION finsertaDefinitiva() RETURNS TRIGGER AS $$ DECLARE month_format TEXT DEFAULT 'yy-Mon'; month DATE DEFAULT TO_DATE(new.month, month_format); BEGIN UPDATE definitiva SET revenue = (revenue + new.revenue), cost = (cost + new.cost) WHERE sales_date = month AND product_type = new.product_type AND territory = new.territory AND sales_channel = new.sales_channel AND customer_type = new.customer_type; IF NOT FOUND THEN INSERT INTO definitiva VALUES (month, new.product_type, new.territory, new.sales_channel, new.customer_type, new.revenue, new.cost); END IF; RETURN NULL; END $$ LANGUAGE plpgsql; CREATE TRIGGER insertaDefinitiva AFTER INSERT ON intermedia FOR EACH ROW EXECUTE PROCEDURE finsertaDefinitiva(); \copy intermedia from SalesbyRegion.csv header delimiter ',' csv; -- d) Calculo del Margen de venta promedio CREATE OR REPLACE FUNCTION MargenMovil(fecha DATE, n INT) RETURNS definitiva.Revenue%TYPE AS $$ BEGIN -- VALIDACIONES: Raise exception si alguno de los argumentos es invalido IF (fecha IS NULL OR n IS NULL) THEN RAISE NOTICE 'Argumentos no pueden ser null' USING ERRCODE = 'RR222'; RETURN NULL; END IF; IF (n <= 0) THEN RAISE NOTICE 'La cantidad de meses anteriores debe ser mayor a 0' USING ERRCODE = 'PP111'; RETURN NULL; END IF; -- Argumentos correctos! Calculo el margen de ventas promedio RETURN (SELECT (SUM(Revenue - Cost)::decimal(10,2)/COUNT(*))::decimal(10,2) FROM definitiva WHERE Sales_Date >= (fecha - (n * '1 month'::INTERVAL)) AND Sales_Date <= fecha); END $$ LANGUAGE plpgsql; SELECT * FROM definitiva; -- Test MargenMovil SELECT MargenMovil(to_date('2012-11-01','YYYY-MM-DD'), 3); -- e) Reporte de Ventas Historico CREATE OR REPLACE FUNCTION validDates(n INT) RETURNS TABLE( Sales_Date DATE, Sales_Channel TEXT, Customer_Type TEXT, Revenue FLOAT, Cost FLOAT ) AS $$ DECLARE baseYear INT := EXTRACT(YEAR FROM (SELECT MIN(definitiva.Sales_Date) FROM definitiva))::INT; BEGIN IF (n IS NULL) THEN RAISE EXCEPTION 'No pueden pasarse una cantidad de anios NULL' USING ERRCODE = 'QQ333'; END IF; RETURN QUERY SELECT definitiva.Sales_Date, definitiva.Sales_Channel, definitiva.Customer_Type, definitiva.Revenue, definitiva.Cost FROM definitiva WHERE EXTRACT(YEAR FROM definitiva.Sales_Date)::INT >= baseYear AND EXTRACT(YEAR FROM definitiva.Sales_Date)::INT < (baseYear + n)::INT; END; $$ LANGUAGE plpgsql; CREATE OR REPLACE FUNCTION report(n INT) RETURNS TABLE( year INT, category TEXT, category_desc TEXT, revenue INT, cost INT, margin INT ) AS $$ BEGIN RETURN QUERY SELECT aux.year, aux.category, aux.category_desc, SUM(aux.revenue)::INT as revenue, SUM(aux.cost)::INT as cost, SUM(aux.margin)::INT as margin FROM ((SELECT EXTRACT(YEAR FROM T1.Sales_Date)::INT as year, 'Sales Channel' AS Category, T1.Sales_Channel AS Category_Desc, T1.revenue::INT, T1.cost::INT, (T1.revenue-T1.cost)::INT AS margin FROM validDates(n) AS T1) UNION (SELECT EXTRACT(YEAR FROM T2.Sales_Date)::INT, 'Customer Type' AS Category, T2.Customer_Type AS Category_Desc, T2.revenue::INT, T2.cost::INT, (T2.revenue-T2.cost)::INT AS margin FROM validDates(n) AS T2) ) AS AUX GROUP BY aux.year, aux.category, aux.category_desc ORDER BY aux.year, aux.category DESC, aux.category_desc ASC; END; $$ LANGUAGE plpgsql; DROP TYPE IF EXISTS definitiva_lens CASCADE; CREATE TYPE definitiva_lens AS (year_len INT, cat_len INT, rev_len INT, cost_len INT, margin_len INT); CREATE OR REPLACE FUNCTION make_report_line(year TEXT, category TEXT, revenue TEXT, cost TEXT, margin TEXT, lens definitiva_lens) RETURNS TEXT AS $$ DECLARE separator TEXT DEFAULT ' '; BEGIN IF (year IS NULL) THEN year := ''; END IF; IF (category IS NULL) THEN category := ''; END IF; IF (revenue IS NULL) THEN revenue := ''; END IF; IF (cost IS NULL) THEN cost := ''; END IF; IF (margin IS NULL) THEN margin := ''; END IF; RETURN (rpad(year, lens.year_len, separator) || separator || rpad(category, lens.cat_len, separator) || separator || rpad(revenue, lens.rev_len, separator) || separator || rpad(cost, lens.cost_len, separator) || separator || rpad(margin, lens.margin_len, separator)); END; $$ LANGUAGE plpgsql; CREATE OR REPLACE FUNCTION ReporteVenta(n INT) RETURNS void AS $$ DECLARE separator TEXT DEFAULT ' '; cat_separator TEXT DEFAULT ': '; records CURSOR FOR SELECT * FROM report(n); record RECORD; title TEXT DEFAULT 'HISTORIC SALES REPORT'; prev_year INT DEFAULT NULL; curr_year TEXT; total_revenue INT DEFAULT 0; total_cost INT DEFAULT 0; total_margin INT DEFAULT 0; lens definitiva_lens; BEGIN SELECT MAX(LENGTH(report.year::TEXT)) AS year_len, MAX((LENGTH(report.category)+LENGTH(cat_separator)+LENGTH(report.category_desc))) AS cat_len INTO lens.year_len, lens.cat_len FROM report(n) AS report; SELECT MAX(revenue) as revenue, MAX(cost) as cost, MAX(margin) as margin INTO lens.rev_len, lens.cost_len, lens.margin_len FROM (SELECT LENGTH(SUM(revenue)::TEXT) as revenue, LENGTH(SUM(cost)::TEXT) as cost, LENGTH(SUM(revenue-cost)::TEXT) as margin FROM definitiva GROUP BY EXTRACT(YEAR FROM Sales_Date)) as len_by_year; PERFORM DBMS_OUTPUT.DISABLE(); PERFORM DBMS_OUTPUT.ENABLE(); PERFORM DBMS_OUTPUT.SERVEROUTPUT ('t'); OPEN records; LOOP FETCH records INTO record; EXIT WHEN NOT FOUND; IF (prev_year IS NULL OR prev_year <> record.year) THEN IF (prev_year IS NOT NULL) THEN PERFORM DBMS_OUTPUT.PUT_LINE (make_report_line('', 'Total:', total_revenue::TEXT, total_cost::TEXT, total_margin::TEXT, lens)); ELSE PERFORM DBMS_OUTPUT.PUT_LINE (title); PERFORM DBMS_OUTPUT.PUT_LINE (make_report_line('YEAR', 'CATEGORY', 'REVENUE', 'COST', 'MARGIN', lens)); END IF; SELECT SUM(revenue) as revenue, SUM(cost) as cost, SUM(revenue-cost) as margin INTO total_revenue, total_cost, total_margin FROM definitiva WHERE EXTRACT(YEAR FROM Sales_Date) = record.year; curr_year := record.year::TEXT; prev_year := record.year; ELSE curr_year := rpad('', LENGTH(record.year::TEXT), ' '); END IF; PERFORM DBMS_OUTPUT.PUT_LINE (make_report_line(curr_year, record.category || ': ' || separator || record.category_desc, record.revenue::TEXT, record.cost::TEXT, record.margin::TEXT, lens)); END LOOP; CLOSE records; PERFORM DBMS_OUTPUT.PUT_LINE (make_report_line('', 'Total:', total_revenue::TEXT, total_cost::TEXT, total_margin::TEXT, lens)); END; $$ LANGUAGE plpgsql; --Test ReporteVenta -- -- SELECT * FROM report(2);
<reponame>fakeNetflix/uber-repo-cherami-server<filename>clients/metadata/schema/v17/201708090000_destination_uuid_for_consumer_groups.cql ALTER TABLE consumer_groups ADD destination_uuid uuid; CREATE INDEX ON consumer_groups (destination_uuid);
<filename>database/install.sql CREATE DATABASE IF NOT EXISTS `social_poster` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; USE `social_poster`; CREATE TABLE `company` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(60) NOT NULL, `phone` VARCHAR(15) DEFAULT NULL, `email` VARCHAR(60) DEFAULT NULL, `created_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `deleted_on` TIMESTAMP DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE TABLE `teams` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(60) NOT NULL, `phone` VARCHAR(15) DEFAULT NULL, `email` VARCHAR(60) DEFAULT NULL, `company_id` int(11) NOT NULL, `privateKey` VARCHAR(40) NOT NULL, `created_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `deleted_on` TIMESTAMP DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE TABLE `users` ( `id` INT NOT NULL AUTO_INCREMENT, `first_name` VARCHAR(30) NOT NULL, `last_name` VARCHAR(30) NOT NULL, `phone` VARCHAR(15) DEFAULT NULL, `email` VARCHAR(60) DEFAULT NULL, `password` VARCHAR(40) NOT NULL, `team_id` int(11) NOT NULL, `created_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `deleted_on` TIMESTAMP DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE TABLE `clients` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(60) NOT NULL, `phone` VARCHAR(15) DEFAULT NULL, `email` VARCHAR(60) DEFAULT NULL, `company_id` INT(11) DEFAULT 0, `team_id` INT(11) NOT NULL, `active` BOOLEAN DEFAULT FALSE, `created_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `deleted_on` TIMESTAMP DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE TABLE `status` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(60) NOT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE TABLE `platforms` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE TABLE `accounts` ( `id` INT NOT NULL AUTO_INCREMENT, `client_id` int(11) NOT NULL, `platform_id` int(11) NOT NULL, `active` BOOLEAN NOT NULL, `created_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `deleted_on` TIMESTAMP DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE TABLE `tokens` ( `id` INT NOT NULL AUTO_INCREMENT, `account_id` int(11) NOT NULL, `token` VARCHAR(255) NOT NULL, `client_id` VARCHAR(255) DEFAULT NULL, `client_secret` VARCHAR(255) DEFAULT NULL, `refresh_token` VARCHAR(40) NOT NULL, `created_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `deleted_on` TIMESTAMP DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE TABLE `posts` ( `id` INT NOT NULL AUTO_INCREMENT, `status_id` INT(11) NOT NULL, `token_id` INT(11) NOT NULL, `content` TEXT NOT NULL, `created_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `deleted_on` TIMESTAMP DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE TABLE `post_attempts` ( `id` INT NOT NULL AUTO_INCREMENT, `post_id` int(11) NOT NULL, `success` BOOLEAN NOT NULL, `failed_response` TEXT NOT NULL, `created_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci; INSERT INTO `status` (`id`, `name`) VALUES (DEFAULT, 'Scheduled'), (DEFAULT, 'Updating'), (DEFAULT, 'Posting'), (DEFAULT, 'Failed'), (DEFAULT, 'Rescheduled'), (DEFAULT, 'Errors'), (DEFAULT, 'Completed'); INSERT INTO `platforms` (`id`, `name`) VALUES (DEFAULT, 'Facebook'), (DEFAULT, 'LinkedIn'), (DEFAULT, 'Twitter');
<gh_stars>1-10 CREATE OR REPLACE VIEW `pvlng_tree_view` AS select `n`.`id` AS `id`,`n`.`entity` AS `entity`,ifnull(`n`.`guid`,`c`.`guid`) AS `guid`,if(`co`.`id`,`co`.`name`,`c`.`name`) AS `name`,if(`co`.`id`,`co`.`serial`,`c`.`serial`) AS `serial`,`c`.`channel` AS `channel`,if(`co`.`id`,`co`.`description`,`c`.`description`) AS `description`,if(`co`.`id`,`co`.`resolution`,`c`.`resolution`) AS `resolution`,if(`co`.`id`,`co`.`cost`,`c`.`cost`) AS `cost`,if(`co`.`id`,`co`.`meter`,`c`.`meter`) AS `meter`,if(`co`.`id`,`co`.`numeric`,`c`.`numeric`) AS `numeric`,if(`co`.`id`,`co`.`offset`,`c`.`offset`) AS `offset`,if(`co`.`id`,`co`.`adjust`,`c`.`adjust`) AS `adjust`,if(`co`.`id`,`co`.`unit`,`c`.`unit`) AS `unit`,if(`co`.`id`,`co`.`decimals`,`c`.`decimals`) AS `decimals`,if(`co`.`id`,`co`.`threshold`,`c`.`threshold`) AS `threshold`,if(`co`.`id`,`co`.`valid_from`,`c`.`valid_from`) AS `valid_from`,if(`co`.`id`,`co`.`valid_to`,`c`.`valid_to`) AS `valid_to`,if(`co`.`id`,`co`.`public`,`c`.`public`) AS `public`,if(`co`.`id`,`co`.`tags`,`c`.`tags`) AS `tags`,if(`co`.`id`,`co`.`extra`,`c`.`extra`) AS `extra`,if(`co`.`id`,`co`.`comment`,`c`.`comment`) AS `comment`,`t`.`id` AS `type_id`,`t`.`name` AS `type`,`t`.`model` AS `model`,`t`.`childs` AS `childs`,`t`.`read` AS `read`,`t`.`write` AS `write`,`t`.`graph` AS `graph`,if(`co`.`id`,`co`.`icon`,`c`.`icon`) AS `icon`,`ca`.`id` AS `alias`,`ta`.`id` AS `alias_of`,`ta`.`entity` AS `entity_of`,(((count(1) - 1) + (`n`.`lft` > 1)) + 1) AS `level`,round((((`n`.`rgt` - `n`.`lft`) - 1) / 2),0) AS `haschilds`,((((min(`p`.`rgt`) - `n`.`rgt`) - (`n`.`lft` > 1)) / 2) > 0) AS `lower`,((`n`.`lft` - max(`p`.`lft`)) > 1) AS `upper` from ((((((`pvlng_tree` `n` left join `pvlng_channel` `c` on((`n`.`entity` = `c`.`id`))) left join `pvlng_type` `t` on((`c`.`type` = `t`.`id`))) left join `pvlng_channel` `ca` on(((if(`t`.`childs`,`n`.`guid`,`c`.`guid`) = `ca`.`channel`) and (`ca`.`type` = 0)))) left join `pvlng_tree` `ta` on((`c`.`channel` = `ta`.`guid`))) left join `pvlng_channel` `co` on(((`ta`.`entity` = `co`.`id`) and (`c`.`type` = 0)))) join `pvlng_tree` `p`) where ((`n`.`lft` between `p`.`lft` and `p`.`rgt`) and ((`p`.`id` <> `n`.`id`) or (`n`.`lft` = 1))) group by `n`.`id` order by `n`.`lft`; REPLACE INTO `pvlng_babelkit` (`code_set`, `code_lang`, `code_code`, `code_desc`, `code_order`) VALUES ('app', 'de', 'SwitchChannels', 'Kanäle tauschen', 0), ('app', 'en', 'SwitchChannels', 'Switch channels', 0), ('app', 'de', 'ResetAll', 'Auswahl zurücksetzen', 0), ('app', 'en', 'ResetAll', 'Reset selection', 0), ('app', 'de', 'ClickDragShiftPan', 'Mausrad drehen oder Doppelklicken zum Vergrößern/Verkleinern, Maus klicken und halten zum Verschieben.', 0), ('app', 'en', 'ClickDragShiftPan', 'Scroll mouse wheel or double click to zoom, click and hold to pan.', 0), ('app', 'de', 'SettingsMenu', 'Einstellungen', 0), ('app', 'de', 'RepeatPasswordForChange', 'Nur ausfüllen, wenn es geändert werden soll!', 0), ('app', 'en', 'RepeatPasswordForChange', 'Fill only to change it!', 0), ('app', 'de', 'RepeatPassword', '<PASSWORD>', 0), ('app', 'en', 'RepeatPassword', 'repeat password', 0), ('settings', 'de', 'model__DoubleRead', 'Erkenne doppelte Daten per Zeitstempelvergleich &plusmn;Sekunden<br>\r\n<small>(setze auf 0 zum deaktivieren)</small>', 0), ('settings', 'en', 'model__DoubleRead', 'Detect double readings by timestamp &plusmn;seconds<br>\r\n<small>(set 0 to disable)</small>', 0), ('settings', 'de', 'model_InternalCalc_LifeTime', 'Speicherdauer für berechnete Daten in Sekunden<br>\r\n\r\n<small>(Wenn z.B. Deine Daten eine Auflösung von 5 Min. haben, setze es auf 300 usw.)</small>', 0), ('settings', 'en', 'model_InternalCalc_LifeTime', 'Buffer lifetime of calculated data in seconds<br>\r\n\r\n<small>(e.g. if your store most data each 5 minutes, set to 300 and so on)</small>', 0), ('settings', 'de', 'model_History_AverageDays', 'Berechne Durchschnitt für die letzten ? Tage', 0), ('settings', 'de', 'model_Estimate_Marker', 'Bild für den Marker', 0), ('settings', 'de', 'model_Daylight_ZenitIcon', 'Bild für den Sonnenzenit-Marker', 0), ('settings', 'de', 'model_Daylight_SunsetIcon', 'Bild für den Sonnenuntergangs-Marker', 0), ('settings', 'de', 'model_Daylight_SunriseIcon', 'Bild für den Sonnenaufgangs-Marker', 0), ('settings', 'de', 'model_Daylight_CurveDays', 'Berechne Durchschnitt für die letzten ? Tage', 0), ('settings', 'de', 'model_Daylight_Average', 'Berechnungsmethode für die Einstrahlungsvorhersage', 0), ('settings', 'de', 'core__TokenLogin', 'Erlaube Login mit einem IP spezifischen Token', 0), ('settings', 'de', 'core__Title', 'Dein persönlicher Titel (HTML ist erlaubt)', 0), ('settings', 'de', 'core__SendStats', 'Sende anonyme Statistiken', 0), ('settings', 'de', 'core__Password', '<PASSWORD>', 0), ('settings', 'de', 'core__Latitude', 'Standort-Latitude (<a href=\"/location\" target=\"_blank\">oder Suche</a>)<br>\r\n<small>geographische Nord-Süd Koordinate (-90..90)</small>', 0), ('settings', 'de', 'core__Longitude', 'Standort-Longitude (<a href=\"/location\" target=\"_blank\">oder Suche</a>)<br>\r\n<small>geographische Ost-West Koordinate (-180..180)</small>', 0), ('settings', 'en', 'core__Latitude', 'Location latitude (<a href=\"/location\" target=\"_blank\">or search</a>)<br>\r\n<small>Your geographic coordinate that specifies the north-south position (-90..90)</small>', 0), ('settings', 'de', 'core__Language', 'Standardsprache', 0), ('settings', 'de', 'core__KeepLogs', 'Halte Log-Einträge für ? Tage', 0), ('settings', 'de', 'core__EmptyDatabaseAllowed', 'Aktiviere die Funktion zum Löschen aller Messdaten aus der Datenbank.<br>\r\nKanäle und die Kanalhierarchie werden <strong>nicht</strong> gelöscht!<br>\r\n<strong style=\"color:red\">Erst nach Aktivierung ist die Bereinigung möglich!</strong>', 0), ('settings', 'en', 'core__EmptyDatabaseAllowed', 'Enable function for deletion of all measuring data from database.<br>\r\nChannels and channel hierarchy will <strong>not</strong> be deleted!<br>\r\n<strong style=\"color:red\">The deletion is only after activation possible!</strong>', 0), ('settings', 'de', 'core_Currency_Format', 'Ausgabeformat, <strong><tt>{}</tt></strong> wird durch den Wert ersetzt', 0), ('settings', 'de', 'core_Currency_Decimals', 'Nachkommastellen', 0), ('settings', 'de', 'controller_Tariff_TimesLines', 'Initiale Leerzeilen pro Tarif', 0), ('settings', 'de', 'controller_Mobile_ChartHeight', 'Standard Diagrammhöhe', 0), ('settings', 'de', 'controller_Lists_PresetPeriods', 'Standard-Perioden für die Tag/Woche/Monat/Jahr Buttons (Semikolon getrennt)', 0), ('settings', 'de', 'controller_Index_Refresh', 'Diagramm automatisch neu laden aller ? Sekunden, setze auf 0 zum deaktivieren\r\n(Nur wenn Fenster im Vordergrund)', 0), ('settings', 'en', 'controller_Index_Refresh', 'Auto refresh chart each ? seconds, set 0 to disable\r\n(Only if window is in foreground)', 0), ('settings', 'de', 'controller_Index_PresetPeriods', 'Standard-Perioden für die Tag/Woche/Monat/Jahr Buttons (Semikolon getrennt)', 0), ('code_admin', 'en', 'settings', 'multi=1', 0), ('settings', 'de', 'controller_Index_NotifyAll', 'Zeige die Ladezeit für die Datenkanäle', 0), ('settings', 'de', 'controller_Index_ChartHeight', 'Standard Diagrammhöhe', 0), ('settings', 'en', 'core__Title', 'Your personal title (HTML allowed)', 0), ('settings', 'en', 'core__KeepLogs', 'Hold entries in log table for ? days', 0), ('settings', 'en', 'core__Language', 'Default language', 0), ('settings', 'en', 'core__Password', 'Password', 0), ('settings', 'en', 'core__Longitude', 'Location longitude (<a href=\"/location\" target=\"_blank\">or search</a>)<br /><small>Your geographic coordinate that specifies the east-west position (-180..180)</small>', 0), ('settings', 'en', 'core__SendStats', 'Send anonymous statistics', 0), ('settings', 'en', 'core__TokenLogin', 'Allow administrator login by IP bound login token', 0), ('settings', 'en', 'core_Currency_ISO', 'ISO Code', 0), ('settings', 'en', 'core_Currency_Format', 'Output format, <strong><tt>{}</tt></strong> will be replaced with value', 0), ('settings', 'en', 'core_Currency_Symbol', 'Symbol', 0), ('settings', 'en', 'model_Estimate_Marker', 'Marker image', 0), ('settings', 'en', 'core_Currency_Decimals', 'Decimals', 0), ('settings', 'en', 'model_Daylight_Average', 'Calculation method for irradiation average', 0), ('settings', 'en', 'model_Daylight_CurveDays', 'Build average over the last ? days', 0), ('settings', 'en', 'model_Daylight_ZenitIcon', 'Sun zenit marker image', 0), ('settings', 'en', 'controller_Weather_APIkey', 'Wunderground API key', 0), ('settings', 'en', 'model_Daylight_SunsetIcon', 'Sunset marker image', 0), ('settings', 'en', 'model_History_AverageDays', 'Build average over the last ? days', 0), ('settings', 'en', 'controller_Index_NotifyAll', 'Notify overall loading time for all channels', 0), ('settings', 'en', 'model_Daylight_SunriseIcon', 'Sunrise marker image', 0), ('settings', 'en', 'controller_Index_ChartHeight', 'Default chart height', 0), ('settings', 'en', 'controller_Tariff_TimesLines', 'Initial times lines for each taiff', 0), ('settings', 'en', 'controller_Mobile_ChartHeight', 'Default chart height', 0), ('settings', 'en', 'controller_Index_PresetPeriods', 'Default periods for day/week/month/year buttons (separated by semicolon)', 0), ('settings', 'en', 'controller_Lists_PresetPeriods', 'Default periods for day/week/month/year buttons (separated by semicolon)', 0), ('code_set', 'de', 'settings', 'Einstellungen', 0), ('code_set', 'en', 'settings', 'Settings', 103), ('app', 'de', 'Hour', 'Stunde', 0), ('app', 'en', 'Hour', 'Hour', 0), ('app', 'de', 'DecimalsForMarkers', 'Dezimalstellen für Punkt-Beschriftungen', 0), ('app', 'en', 'DecimalsForMarkers', 'Decimals for marker texts', 0), ('app', 'de', 'ScatterChart', 'Punkte', 0), ('app', 'en', 'ScatterChart', 'Scatter', 0), ('app', 'en', 'ScatterCharts', 'Scatter chart', 0), ('app', 'de', 'ScatterCharts', 'Streudiagramm', 0), ('app', 'de', 'yAxisChannel', 'Kanal für die Y-Achse', 0), ('app', 'en', 'yAxisChannel', 'Channel for Y axis', 0), ('app', 'de', 'xAxisChannel', 'Kanal für die X-Achse', 0), ('app', 'en', 'xAxisChannel', 'Channel for X axis', 0), ('app', 'de', 'PutBarsToStackInSameStack', 'Um Balken zu stapeln, gib allen Balken eines Stapels die gleiche Stapel-Nummer oder -Name', 0), ('app', 'en', 'PutBarsToStackInSameStack', 'To stack bars give all bars of ohne stack the same stack number or name', 0), ('app', 'de', 'BarStack', 'Balkenstapel', 0), ('app', 'en', 'BarStack', 'Bar stack', 0), ('app', 'de', 'Year', 'Jahr', 0), ('app', 'en', 'Year', 'Year', 0), ('app', 'de', 'Week', 'Woche', 0), ('app', 'en', 'Week', 'Week', 0), ('app', 'de', 'YearsToReadMissing', 'Wenn Du plus/minus Tage definiert hast, müssen auch die zu lesenden Jahre angeben werden', 0), ('app', 'en', 'YearsToReadMissing', 'If you defined plus/minus days, the count of years to read is required', 0), ('model', 'de', 'History_extraHint', 'Wenn plus/minus Tage angegeben sind, wieviele Jahre sollen ausgewertet werden', 0), ('model', 'en', 'History_extraHint', 'If plus/minus days defined, how many years back should be read', 0), ('model', 'en', 'History_valid_toHint', 'These are number of days to fetch foreward.\r\n(0 = until today)\r\nA value greater 0 means reading last ? years * (backward + foreward days)!', 0), ('model', 'de', 'History_extra', 'Jahre', 0), ('model', 'en', 'History_extra', 'Years', 0);
<reponame>swordysrepo/BlueWave-1<filename>src/main/java/bluewave/queries/Edges_By_Selected_Pack.sql MATCH (a)-[r]-(b) WHERE any(label IN labels(a) WHERE label = "{packLabel}") unwind labels(startNode(r)) as sources unwind labels(endNode(r)) as targets WITH collect(distinct(sources)) as sourceLabels, collect(distinct(targets)) as targetLabels return {source: sourceLabels, target: targetLabels}
<filename>HackerRank - MS SQL SERVER Problems/P43_WeatherObservationStation19.sql -- (X)^2 + (Y)^2 = (Distance)^2 SELECT CAST(SQRT(POWER(MAX(LAT_N) - MIN(LAT_N), 2) + POWER(MAX(LONG_W) - MIN(LONG_W), 2)) AS DECIMAL(18, 4)) FROM Station
<reponame>Zenika/previzen<gh_stars>0 /* * Init script intended to create all requested TABLE in the PostgresSQL docker container. * It'll be run in the docker-compose.yml (volumes: - ./sql/init:/docker-entrypoint-initdb.d) */ CREATE TABLE "absence_jaz" ( "id_absence_jaz" serial PRIMARY KEY, "id_consultant" integer NOT NULL, "comment_absence_jaz" text NOT NULL, "date_absence_jaz" integer NOT NULL, "month_absence_jaz" integer NOT NULL, "year_absence_jaz" integer NOT NULL, "duration_absence_jaz" real NOT NULL ); CREATE TABLE "absence_off" ( "id_absence_off" serial PRIMARY KEY, "id_consultant" integer NOT NULL, "comment_absence_off" text NOT NULL, "date_absence_off" integer NOT NULL, "month_absence_off" integer NOT NULL, "year_absence_off" integer NOT NULL, "duration_absence_off" real NOT NULL ); CREATE TABLE "billable_day" ( "id_billable_day" serial PRIMARY KEY, "id_consultant" integer NOT NULL, "count_billable_days" integer NOT NULL, "month_billable_day" integer NOT NULL, "year_billable_day" integer NOT NULL ); CREATE TABLE "consultant" ( "id_consultant" serial PRIMARY KEY, "id_agency" integer NOT NULL, "first_name_consultant" text NOT NULL, "last_name_consultant" text NOT NULL, "starts_after_month_consultant" integer NOT NULL, "starts_after_year_consultant" integer NOT NULL, "leaves_after_month_consultant" integer, "leaves_after_year_consultant" integer ); CREATE TABLE "customer" ( "id_customer" serial PRIMARY KEY, "name_customer" text NOT NULL ); CREATE TABLE "agency" ( "id_agency" serial PRIMARY KEY, "name_agency" text NOT NULL, "name_manager" text, "city_agency" text NOT NULL, "country_agency" text NOT NULL ); CREATE TABLE "daily_cost" ( "id_daily_cost" serial PRIMARY KEY, "id_consultant" integer NOT NULL, "month_daily_cost" integer NOT NULL, "year_daily_cost" integer NOT NULL, "price_daily_cost" real NOT NULL ); CREATE TABLE "staffing" ( "id_staffing" serial PRIMARY KEY, "id_consultant" integer NOT NULL, "id_customer" integer NOT NULL, "month_staffing" integer NOT NULL, "year_staffing" integer NOT NULL, "duration_staffing" double precision NOT NULL, "price_staffing" integer NOT NULL ); ALTER TABLE "absence_jaz" ADD FOREIGN KEY ("id_consultant") REFERENCES "consultant" ("id_consultant"); ALTER TABLE "absence_off" ADD FOREIGN KEY ("id_consultant") REFERENCES "consultant" ("id_consultant"); ALTER TABLE "billable_day" ADD FOREIGN KEY ("id_consultant") REFERENCES "consultant" ("id_consultant"); ALTER TABLE "daily_cost" ADD FOREIGN KEY ("id_consultant") REFERENCES "consultant" ("id_consultant"); ALTER TABLE "staffing" ADD FOREIGN KEY ("id_consultant") REFERENCES "consultant" ("id_consultant"); ALTER TABLE "staffing" ADD FOREIGN KEY ("id_customer") REFERENCES "customer" ("id_customer"); ALTER TABLE "consultant" ADD FOREIGN KEY ("id_agency") REFERENCES "agency" ("id_agency");
DROP PROCEDURE IF EXISTS sp_insert_inv_out; DELIMITER ;; CREATE PROCEDURE sp_insert_inv_out( IN item_code varchar(100) , IN inventory_sn int(11) , IN batch varchar(100) , IN warehouse varchar(100) , IN position varchar(100) , IN quantity double(16,3) , IN price_sale double(16,2) , IN po_code varchar(20) , IN irradiation varchar(100) , IN tpc varchar(100) , IN vendor_id int(11) , IN customer_id int(11) , IN stockout_date varchar(10), IN create_by varchar(64), IN remark varchar(500) ) BEGIN INSERT INTO inv_inventory_out( item_code , inventory_sn , batch , warehouse , position , quantity, price_sale , po_code , irradiation , tpc , vendor_id , customer_id , status ,stockout_date , create_time, create_by , update_by , update_time , remark ) VALUES ( item_code , inventory_sn , batch , warehouse , position , quantity, price_sale , po_code , irradiation , tpc , vendor_id , customer_id , 0 , stockout_date , sysdate() , create_by , create_by , sysdate() , remark ); END ;; DELIMITER ; DROP PROCEDURE IF EXISTS sp_stockOut; DELIMITER ;; CREATE PROCEDURE sp_stockOut( IN inventory_sn int(11), IN item_code varchar(100) , IN batch varchar(100) , IN warehouse varchar(100) , IN position varchar(100) , IN var_quantity double(16,3) , IN price_sale double(16,2) , IN po_code varchar(20) , IN irradiation varchar(100) , IN tpc varchar(100) , IN vendor_id int(11) , IN customer_id int(11) , IN stockout_date varchar(10), IN create_by varchar(64), IN remark varchar(500) ) BEGIN declare res_quantity int default 0; declare inventory_quantity INT default 0; select quantity into inventory_quantity from inv_inventory where sn=inventory_sn; set res_quantity =inventory_quantity - var_quantity; start transaction; update inv_inventory set quantity=res_quantity where sn =inventory_sn; call sp_insert_inv_out(item_code, inventory_sn, batch, warehouse, position , var_quantity , price_sale , po_code ,irradiation ,tpc , vendor_id , customer_id , stockout_date , create_by , remark ); commit; END ;; DELIMITER ; DROP PROCEDURE IF EXISTS sp_stockOutRemove; DELIMITER ;; CREATE PROCEDURE sp_stockOutRemove( IN var_sn int(11) ) BEGIN declare tmp_inventory_sn int(11); declare tmp_quantity double(16,3); declare res_quantity double(16,3) default 0; declare inventory_quantity double(16,3) default 0; select inventory_sn, quantity into tmp_inventory_sn, tmp_quantity from inv_inventory_out where sn=var_sn; select quantity into inventory_quantity from inv_inventory where sn=tmp_inventory_sn; set res_quantity =inventory_quantity + tmp_quantity; start transaction; update inv_inventory_out set status=1 where sn=var_sn; update inv_inventory set quantity=res_quantity where sn=tmp_inventory_sn; commit; END ;; DELIMITER ;
CREATE DATABASE IF NOT EXISTS `sys` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `sys`; -- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64) -- -- Host: 192.168.10.94 Database: sys -- ------------------------------------------------------ -- Server version 5.7.18 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `sys_config` -- DROP TABLE IF EXISTS `sys_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sys_config` ( `variable` varchar(128) NOT NULL, `value` varchar(128) DEFAULT NULL, `set_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `set_by` varchar(128) DEFAULT NULL, PRIMARY KEY (`variable`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8 */ ; /*!50003 SET character_set_results = utf8 */ ; /*!50003 SET collation_connection = utf8_general_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = '' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`mysql.sys`@`localhost`*/ /*!50003 TRIGGER sys_config_insert_set_user BEFORE INSERT on sys_config FOR EACH ROW BEGIN IF @sys.ignore_sys_config_triggers != true AND NEW.set_by IS NULL THEN SET NEW.set_by = USER(); END IF; END */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8 */ ; /*!50003 SET character_set_results = utf8 */ ; /*!50003 SET collation_connection = utf8_general_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = '' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`mysql.sys`@`localhost`*/ /*!50003 TRIGGER sys_config_update_set_user BEFORE UPDATE on sys_config FOR EACH ROW BEGIN IF @sys.ignore_sys_config_triggers != true AND NEW.set_by IS NULL THEN SET NEW.set_by = USER(); END IF; END */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2017-06-24 9:15:21
<filename>scripts/AddNetworkServiceUser.sql<gh_stars>0 IF NOT EXISTS (SELECT * FROM sys.server_principals WHERE name = N'NT AUTHORITY\NETWORK SERVICE') CREATE LOGIN [NT AUTHORITY\NETWORK SERVICE] FROM WINDOWS WITH DEFAULT_DATABASE=[master], DEFAULT_LANGUAGE=[us_english] GO IF NOT EXISTS (SELECT * FROM sys.database_principals WHERE name = N'NT AUTHORITY\NETWORK SERVICE') BEGIN CREATE USER [NT AUTHORITY\NETWORK SERVICE] FOR LOGIN [NT AUTHORITY\NETWORK SERVICE] WITH DEFAULT_SCHEMA=[dbo] EXEC sp_addrolemember N'db_datawriter', N'NT AUTHORITY\NETWORK SERVICE' EXEC sp_addrolemember N'db_datareader', N'NT AUTHORITY\NETWORK SERVICE' EXEC sp_addrolemember N'db_ddladmin', N'NT AUTHORITY\NETWORK SERVICE' END GO
<filename>src/main/resources/schema-mysql.sql create table if not exists broken ( id BIGINT(20) NOT NULL AUTO_INCREMENT, line_text VARCHAR(300) NULL, ref_id INT(20) NOT NULL, rec_line BIGINT NOT NULL, PRIMARY KEY (`id`) ) ENGINE = MyISAM DEFAULT CHARSET = utf8 DEFAULT COLLATE = utf8_general_ci; create table deals ( id BIGINT(20) NOT NULL AUTO_INCREMENT, deal_id varchar(200) not null, from_currency_iso varchar(3) not null, to_currency_iso varchar(3) not null, deal_timestamp timestamp default CURRENT_TIMESTAMP not null, ordering_amount double null, ref_id int not null, PRIMARY KEY (`id`), UNIQUE KEY `deal_id` (`deal_id`,`ref_id`) ) ENGINE = MyISAM DEFAULT CHARSET = utf8 DEFAULT COLLATE = utf8_general_ci; create table fileinfo ( ref_id int auto_increment primary key, file_name varchar(255) not null, check_sum varchar(255) null, constraint file_refs_ref_id_uindex unique (ref_id), constraint file_refs_file_name_uindex unique (file_name) ) ; create table statistics ( iso_code varchar(3) not null primary key, count bigint default '0' not null ) ; ALTER TABLE broken ENGINE = MyISAM; ALTER TABLE deals ENGINE = MyISAM; ALTER TABLE fileinfo ENGINE = MyISAM; ALTER TABLE statistics ENGINE = MyISAM; SET GLOBAL max_allowed_packet = 9377953; SET bulk_insert_buffer_size= 1024 * 1024 * 256; SET GLOBAL storage_engine=MYISAM;
{% macro utils_date_periods(start_date, end_date) %} WITH dates AS ({{ dbt_utils.date_spine( datepart="day", start_date=start_date, end_date=end_date ) }}), -- Window Periods windows AS ( {% for nb_days in [7, 28, 56] %} (SELECT 'rolling_{{ nb_days}}d' AS period, ROW_NUMBER() OVER() AS nb_days FROM dates LIMIT {{ nb_days }}) {% if not loop.last %} UNION {% endif %} {% endfor %} ), date_periods_windows AS ( SELECT period, {{ dbt_utils.dateadd('day', "nb_days", "date_day") }} AS date, dates.date_day AS date_original FROM dates CROSS JOIN windows ), -- Calendar Periods calendar AS ( SELECT CASE ROW_NUMBER() OVER() WHEN 1 THEN 'day' WHEN 2 THEN 'week' WHEN 3 THEN 'month' WHEN 4 THEN 'quarter' WHEN 5 THEN 'year' END AS period FROM dates LIMIT 5 ), date_periods_calendar AS ( SELECT period, DATE_TRUNC(period, "date_day") AS date, dates.date_day AS date_original FROM dates CROSS JOIN calendar WHERE period = 'week' ORDER BY period, date, date_original ), -- Interval Periods intervals AS ( (SELECT 'Last Week' AS period, 7 as threshold FROM dates LIMIT 1) UNION (SELECT 'Last 2 Weeks' AS period, 7*2 as threshold FROM dates LIMIT 1) ), date_periods_intervals AS ( SELECT period, CURRENT_DATE AS date, dates.date_day AS date_original FROM dates CROSS JOIN intervals WHERE dates.date_day <= CURRENT_DATE AND {{ dbt_utils.dateadd('day', "threshold", "date_day") }} > CURRENT_DATE ) SELECT * FROM date_periods_windows UNION SELECT * FROM date_periods_calendar UNION SELECT * FROM date_periods_intervals {% endmacro %}
<filename>fineract-provider/src/main/resources/sql/migrations/core_db/V91__apply_annual_fees_permission.sql INSERT INTO `m_permission` (`grouping`,`code`,`entity_name`,`action_name`,`can_maker_checker`) VALUES ('transaction_savings', 'APPLYANNUALFEE_SAVINGSACCOUNT', 'SAVINGSACCOUNT', 'APPLYANNUALFEE', 1), ('transaction_savings', 'APPLYANNUALFEE_SAVINGSACCOUNT_CHECKER', 'SAVINGSACCOUNT', 'APPLYANNUALFEE', 0);
-- MySQL dump 10.11 -- -- Host: localhost Database: emmet -- ------------------------------------------------------ -- Server version 5.0.67 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `auth_key` -- DROP TABLE IF EXISTS `auth_key`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `auth_key` ( `id` bigint(20) NOT NULL auto_increment, `version` bigint(20) NOT NULL, `auth_key` varchar(255) NOT NULL, `mobile_user_id` bigint(20) NOT NULL, PRIMARY KEY (`id`), KEY `FK5563974818294D56` (`mobile_user_id`), CONSTRAINT `FK5563974818294D56` FOREIGN KEY (`mobile_user_id`) REFERENCES `mobile_user` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Table structure for table `authorised_system` -- DROP TABLE IF EXISTS `authorised_system`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `authorised_system` ( `id` bigint(20) NOT NULL auto_increment, `version` bigint(20) NOT NULL, `host` varchar(255) NOT NULL, `description` varchar(255) default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Table structure for table `authorities` -- DROP TABLE IF EXISTS `authorities`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `authorities` ( `userid` int(11) NOT NULL, `authority` varchar(30) NOT NULL, PRIMARY KEY (`userid`,`authority`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Table structure for table `c3p0TestTable` -- DROP TABLE IF EXISTS `c3p0TestTable`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `c3p0TestTable` ( `a` char(1) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Table structure for table `identities` -- DROP TABLE IF EXISTS `identities`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `identities` ( `userid` int(11) NOT NULL, `identityuri` varchar(255) NOT NULL, `domain` varchar(255) NOT NULL, PRIMARY KEY (`userid`,`identityuri`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Table structure for table `mobile_user` -- DROP TABLE IF EXISTS `mobile_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `mobile_user` ( `id` bigint(20) NOT NULL auto_increment, `version` bigint(20) NOT NULL, `user_name` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Table structure for table `passwords` -- DROP TABLE IF EXISTS `passwords`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `passwords` ( `userid` int(11) NOT NULL, `password` varchar(255) NOT NULL, `created` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `expiry` timestamp NOT NULL default '0000-00-00 00:00:00', `status` varchar(10) NOT NULL, PRIMARY KEY (`userid`,`password`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Table structure for table `profiles` -- DROP TABLE IF EXISTS `profiles`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `profiles` ( `userid` int(11) NOT NULL, `property` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, PRIMARY KEY (`userid`,`property`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Table structure for table `role` -- DROP TABLE IF EXISTS `role`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `role` ( `role` varchar(255) NOT NULL, `description` varchar(255) NOT NULL, PRIMARY KEY (`role`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `role` -- LOCK TABLES `role` WRITE; /*!40000 ALTER TABLE `role` DISABLE KEYS */; INSERT INTO `role` VALUES ('ROLE_ABRS_ADMIN',''),('ROLE_ABRS_INSTITUTION',''),('ROLE_ADMIN','Admin role for ALA staff'),('ROLE_API_EDITOR','Enables a user to update the online web service API'),('ROLE_APPD_USER','APPD user'),('ROLE_AVH_ADMIN',''),('ROLE_AVH_CLUB',''),('ROLE_COLLECTION_ADMIN',''),('ROLE_COLLECTION_EDITOR',''),('ROLE_COLLECTORS_ADMIN',''),('ROLE_FC_ADMIN','Admin role for the Field Capture webapp'),('ROLE_FC_OFFICER','Field Capture officer role'),('ROLE_FC_READ_ONLY','Provides read only access to all projects in the field capture system.'),('ROLE_IMAGE_ADMIN',''),('ROLE_SPATIAL_ADMIN',''),('ROLE_SYSTEM_ADMIN',''),('ROLE_USER',''),('ROLE_VP_ADMIN',''),('ROLE_VP_TEST_ADMIN','The admin role for BVP Test server'),('ROLE_VP_VALIDATOR',''); /*!40000 ALTER TABLE `role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_role` -- DROP TABLE IF EXISTS `user_role`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `user_role` ( `user_id` bigint(20) NOT NULL, `role_id` varchar(255) NOT NULL, PRIMARY KEY (`user_id`,`role_id`), KEY `FK143BF46AF129182D` (`role_id`), CONSTRAINT `FK143BF46AF129182D` FOREIGN KEY (`role_id`) REFERENCES `role` (`role`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `users` ( `userid` int(11) NOT NULL auto_increment, `username` varchar(255) default NULL, `firstname` varchar(255) default NULL, `lastname` varchar(255) default NULL, `email` varchar(255) default NULL, `activated` char(1) NOT NULL, `created` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `expiry` timestamp NOT NULL default '0000-00-00 00:00:00', `locked` char(1) NOT NULL, `temp_auth_key` varchar(255) default NULL, PRIMARY KEY (`userid`), UNIQUE KEY `username` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=10649 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2014-12-16 6:46:11
<filename>oci-test/tests/oci_core_load_balancer/test-not-found-query.sql<gh_stars>10-100 select display_name, id, lifecycle_state from oci.oci_core_load_balancer where id = '{{ output.resource_id.value }}aa';
SELECT 2031 AS layer_code, 'poi_public' AS layer_class, 'recycling_glass' AS layer_name, feature_type AS gdal_type, osm_id, osm_way_id, osm_timestamp, all_tags, geometry FROM `openstreetmap-public-data-prod.osm_planet.features` WHERE EXISTS(SELECT 1 FROM UNNEST(all_tags) AS tags WHERE tags.key = 'recycling:glass' AND tags.value='yes')
INSERT INTO workflow_configuration(workflow_definition_name, default_assignee, enabled, name) VALUES ('reportingperiod_coordinating_center','SYSTEM_ADMIN', true, 'Evaluation Period Workflow'); INSERT INTO task_configuration(workflow_config_id,status_name, applicable, "location", message, task_name) VALUES (currval('workflow_configuration_id_seq'),'DRAFT_INCOMPLETE', true,1,'','Start Reporting Period Flow'); INSERT INTO task_configuration(workflow_config_id,status_name, applicable, "location", message, task_name) VALUES (currval('workflow_configuration_id_seq'),'DRAFT_INCOMPLETE', true,1,'The task "Submit Reporting Period for Data Coordinator Review" is assigned to you. Please use the link ${REPORTING_PERIOD_LINK} to access the evaluation period.','Submit Reporting Period for Data Coordinator Review'); INSERT INTO wf_assignees("name", user_role_id,task_config_id, dtype) VALUES ('Site CRA',4,currval('task_configuration_id_seq'),'r'); INSERT INTO wf_transition_configs(transition_name, task_config_id) VALUES ('Submit to Data Coordinator',currval('task_configuration_id_seq')); INSERT INTO wf_transition_owners("name", user_role_id, transition_config_id,dtype) VALUES ('Site CRA',4,currval('wf_transition_configs_id_seq'),'r'); INSERT INTO task_configuration(workflow_config_id,status_name, applicable, "location", message, task_name) VALUES (currval('workflow_configuration_id_seq'),'DATA_COORDINATOR_REVIEW', true,2,'The task "Data Coordinator Review" is assigned to you. Please use the link ${REPORTING_PERIOD_LINK} to access the evaluation period.','Data Coordinator Review'); INSERT INTO wf_assignees("name", user_role_id,task_config_id, dtype) VALUES ('Coordinating Center Data Coordinator',6,currval('task_configuration_id_seq'),'r'); INSERT INTO wf_transition_configs(transition_name, task_config_id) VALUES ('Request Additional Information',currval('task_configuration_id_seq')); INSERT INTO wf_transition_owners("name", user_role_id, transition_config_id,dtype) VALUES ('Coordinating Center Data Coordinator',6,currval('wf_transition_configs_id_seq'),'r'); INSERT INTO wf_transition_configs(transition_name, task_config_id) VALUES ('Approve Reporting Period',currval('task_configuration_id_seq')); INSERT INTO wf_transition_owners("name", user_role_id, transition_config_id,dtype) VALUES ('Coordinating Center Data Coordinator',6,currval('wf_transition_configs_id_seq'),'r'); INSERT INTO task_configuration(workflow_config_id,status_name, applicable, "location", message, task_name) VALUES (currval('workflow_configuration_id_seq'),'DATA_COORDINATOR_ADDITIONAL_INFO', true,1,'The task "Provide Additional Information To Data Coordinator" is assigned to you. Please use the link ${REPORTING_PERIOD_LINK} to access the evaluation period.','Provide Additional Information To Data Coordinator'); INSERT INTO wf_assignees("name", user_role_id,task_config_id, dtype) VALUES ('Site CRA',4,currval('task_configuration_id_seq'),'r'); INSERT INTO wf_transition_configs(transition_name, task_config_id) VALUES ('Submit to Data Coordinator',currval('task_configuration_id_seq')); INSERT INTO wf_transition_owners("name", user_role_id, transition_config_id,dtype) VALUES ('Site CRA',4,currval('wf_transition_configs_id_seq'),'r'); INSERT INTO task_configuration(workflow_config_id,status_name, applicable, "location", message, task_name) VALUES (currval('workflow_configuration_id_seq'),'READY_FOR_FINALIZE', true,2,'The task "Finalize Reporting Period" is assigned to you. Please use the link ${REPORTING_PERIOD_LINK} to access the evaluation period.','Finalize Reporting Period'); INSERT INTO wf_assignees("name", user_role_id,task_config_id, dtype) VALUES ('Coordinating Center Data Coordinator',6,currval('task_configuration_id_seq'),'r'); INSERT INTO wf_transition_configs(transition_name, task_config_id) VALUES ('Finalize Reporting Period',currval('task_configuration_id_seq')); INSERT INTO wf_transition_owners("name", user_role_id, transition_config_id,dtype) VALUES ('Coordinating Center Data Coordinator',6,currval('wf_transition_configs_id_seq'),'r'); INSERT INTO task_configuration(workflow_config_id,status_name, applicable, "location", message, task_name) VALUES (currval('workflow_configuration_id_seq'),'FINALIZED', true,1,'The task "Finalized" is assigned to you. Please use the link ${REPORTING_PERIOD_LINK} to access the evaluation period.','Finalized'); INSERT INTO wf_transition_configs(transition_name, task_config_id) VALUES ('Modify Reporting Period',currval('task_configuration_id_seq')); INSERT INTO wf_transition_owners("name", user_role_id, transition_config_id,dtype) VALUES ('Site CRA',4,currval('wf_transition_configs_id_seq'),'r'); INSERT INTO task_configuration(workflow_config_id,status_name, applicable, "location", message, task_name) VALUES (currval('workflow_configuration_id_seq'),'FINALIZED', true,1,'The task "End State" is assigned to you. Please use the link ${REPORTING_PERIOD_LINK} to access the evaluation period.','End State');
CREATE TABLE IF NOT EXISTS document ( id INTEGER PRIMARY KEY, content TEXT UNIQUE NOT NULL, extra_data TEXT); CREATE TABLE IF NOT EXISTS label( id INTEGER PRIMARY KEY, string_form TEXT UNIQUE NOT NULL, color TEXT NOT NULL DEFAULT "yellow"); CREATE TABLE IF NOT EXISTS annotation( doc_id NOT NULL REFERENCES document (id) ON DELETE CASCADE, label_id NOT NULL REFERENCES label(id) ON DELETE CASCADE, start_char INTEGER NOT NULL, end_char INTEGER NOT NULL); CREATE INDEX IF NOT EXISTS annotation_doc_id_idx ON annotation(doc_id); CREATE INDEX IF NOT EXISTS annotation_label_id_idx ON annotation(label_id); CREATE TABLE IF NOT EXISTS app_state ( last_visited_doc INTEGER REFERENCES document (id) ON DELETE SET NULL ); INSERT INTO app_state (last_visited_doc) SELECT (null) WHERE NOT EXISTS (SELECT * from app_state); CREATE TABLE IF NOT EXISTS app_state_extra ( key TEXT UNIQUE NOT NULL, value ); CREATE VIEW IF NOT EXISTS unlabelled_document AS SELECT * FROM document WHERE id NOT IN (SELECT doc_id FROM annotation); -- slower than the subquery above -- CREATE VIEW IF NOT EXISTS unlabelled_document AS -- SELECT document.* FROM document LEFT JOIN annotation -- ON annotation.doc_id = document.id -- WHERE annotation.rowid IS NULL; CREATE VIEW IF NOT EXISTS labelled_document AS SELECT distinct * FROM document WHERE id IN (SELECT doc_id FROM annotation); -- slower than the subquery above -- create view if not exists labelled_document as -- select distinct document.* from document -- inner join annotation -- on annotation.doc_id = document.id;
-- phpMyAdmin SQL Dump -- version 4.9.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Oct 28, 2021 at 06:43 PM -- Server version: 10.4.8-MariaDB -- PHP Version: 7.3.11 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `chib-log` -- -- -------------------------------------------------------- -- -- Table structure for table `blogs` -- CREATE TABLE `blogs` ( `id` int(10) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `author` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `blogs` -- INSERT INTO `blogs` (`id`, `title`, `slug`, `author`, `message`, `created_at`, `updated_at`) VALUES (9, '<NAME> Has devastated Florida.', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.', '<NAME>', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.', '2021-07-14 10:28:26', '2021-07-14 10:28:26'), (10, 'Feed a girl child in school programme.', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.', 'Admin u b a', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.', '2021-07-14 10:28:41', '2021-07-14 10:55:46'), (11, 'Hurricane Irma has devastated Florida', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.', '<NAME>', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.', '2021-07-14 10:52:39', '2021-07-14 10:52:39'), (12, '10 Tips For The Traveler', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.', '<NAME>', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.', '2021-07-14 10:52:53', '2021-07-14 10:52:53'), (13, 'Feed a girl child in school programme.', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.', 'Lance Smith', 'vvvA small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.', '2021-07-14 10:53:11', '2021-07-14 10:53:11'), (14, '10 Tips For The Traveler', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.', '<NAME>', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.', '2021-07-14 10:53:43', '2021-07-14 10:53:43'), (17, 'Feed a girl child in school programme.', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.', 'Admin', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.', '2021-07-19 18:14:22', '2021-07-19 18:14:22'), (18, '10 Tips For The Traveler', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.', 'Lance Smith', 'A small river named Duden flows by their place and supplies it with the necessary regelialia. \r\n A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.', '2021-07-19 19:02:04', '2021-07-19 19:02:04'), (19, 'Feed a girl child in school programme.', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.', 'Admin', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.', '2021-07-20 16:08:34', '2021-07-20 16:08:34'), (20, '<NAME> Has devastated Florida.', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.', 'payug', 'A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.A small river named Duden flows by their place and supplies it with the necessary regelialia.', '2021-07-20 16:08:54', '2021-07-20 17:17:38'), (23, 'ataas', '127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted', 'zeus ajene', 'Route::get(\'/create\', [BlogController::class, \'creator\'])->name(\'create\');Route::get(\'/create\', [BlogController::class, \'creator\'])->name(\'create\');Route::get(\'/create\', [BlogController::class, \'creator\'])->name(\'create\');Route::get(\'/create\', [BlogController::class, \'creator\'])->name(\'create\');', '2021-07-26 21:56:38', '2021-07-26 21:56:38'), (25, 'new blog', '127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted', 'zeus ajene Adam', '127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted', '2021-07-26 22:01:19', '2021-07-26 22:01:19'), (26, 'aas', '127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted', 'zeus ajene wO', '127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted', '2021-07-26 22:01:54', '2021-07-26 22:01:54'), (27, 'new blog', '127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted', 'Paulben', '127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted', '2021-07-26 23:02:46', '2021-07-26 23:02:46'), (28, 'new blog', '127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted', 'Paulben', 'if($blog->author === Auth::user()->name)if($blog->author === Auth::user()->name)if($blog->author === Auth::user()->name)if($blog->author === Auth::user()->name)if($blog->author === Auth::user()->name)', '2021-07-26 23:15:38', '2021-07-26 23:15:38'), (29, 'ataas', '127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted', 'Paulben', '127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted 127.0.0.1:58776 Closing [Fri Jul 16 20:52:51 2021] 127.0.0.1:58778 Accepted [Fri Jul 16 20:52:51 2021] 127.0.0.1:58780 Accepted', '2021-07-28 14:10:59', '2021-07-28 14:10:59'); -- -------------------------------------------------------- -- -- Table structure for table `blog_photos` -- CREATE TABLE `blog_photos` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `causes` -- CREATE TABLE `causes` ( `id` int(10) UNSIGNED NOT NULL, `cause_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `cause_text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `amt_raised` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `amt_to_raise` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `last_donation` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `frontpages` -- CREATE TABLE `frontpages` ( `id` int(10) UNSIGNED NOT NULL, `cause_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `cause_text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `amt_raised` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `amt_to_raise` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `last_donation` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (17, '2014_10_12_000000_create_users_table', 1), (18, '2014_10_12_100000_create_password_resets_table', 1), (19, '2019_08_19_000000_create_failed_jobs_table', 1), (20, '2021_07_11_134356_create_blogs_table', 1), (21, '2021_07_13_204423_create_causes_table', 1), (22, '2021_07_13_222252_create_frontpages_table', 1), (23, '2021_07_26_193057_laratrust_setup_tables', 2), (24, '2021_10_15_225608_create_blog_photos_table', 3); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `permissions` -- CREATE TABLE `permissions` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `display_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `permissions` -- INSERT INTO `permissions` (`id`, `name`, `display_name`, `description`, `created_at`, `updated_at`) VALUES (1, 'users-create', 'Create Users', 'Create Users', '2021-07-26 19:37:04', '2021-07-26 19:37:04'), (2, 'users-read', 'Read Users', 'Read Users', '2021-07-26 19:37:04', '2021-07-26 19:37:04'), (3, 'users-update', 'Update Users', 'Update Users', '2021-07-26 19:37:04', '2021-07-26 19:37:04'), (4, 'users-delete', 'Delete Users', 'Delete Users', '2021-07-26 19:37:04', '2021-07-26 19:37:04'), (5, 'payments-create', 'Create Payments', 'Create Payments', '2021-07-26 19:37:04', '2021-07-26 19:37:04'), (6, 'payments-read', 'Read Payments', 'Read Payments', '2021-07-26 19:37:04', '2021-07-26 19:37:04'), (7, 'payments-update', 'Update Payments', 'Update Payments', '2021-07-26 19:37:05', '2021-07-26 19:37:05'), (8, 'payments-delete', 'Delete Payments', 'Delete Payments', '2021-07-26 19:37:05', '2021-07-26 19:37:05'), (9, 'profile-read', 'Read Profile', 'Read Profile', '2021-07-26 19:37:05', '2021-07-26 19:37:05'), (10, 'profile-update', 'Update Profile', 'Update Profile', '2021-07-26 19:37:05', '2021-07-26 19:37:05'); -- -------------------------------------------------------- -- -- Table structure for table `permission_role` -- CREATE TABLE `permission_role` ( `permission_id` bigint(20) UNSIGNED NOT NULL, `role_id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `permission_role` -- INSERT INTO `permission_role` (`permission_id`, `role_id`) VALUES (1, 1), (1, 2), (2, 1), (2, 2), (3, 1), (3, 2), (4, 1), (4, 2), (5, 1), (6, 1), (7, 1), (8, 1), (9, 1), (9, 2), (9, 3), (10, 1), (10, 2), (10, 3); -- -------------------------------------------------------- -- -- Table structure for table `permission_user` -- CREATE TABLE `permission_user` ( `permission_id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `user_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE `roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `display_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `roles` -- INSERT INTO `roles` (`id`, `name`, `display_name`, `description`, `created_at`, `updated_at`) VALUES (1, 'superadmin', 'Superadmin', 'Superadmin', '2021-07-26 19:37:04', '2021-07-26 19:37:04'), (2, 'admin', 'Admin', 'Admin', '2021-07-26 19:37:06', '2021-07-26 19:37:06'), (3, 'user', 'User', 'User', '2021-07-26 19:37:07', '2021-07-26 19:37:07'); -- -------------------------------------------------------- -- -- Table structure for table `role_user` -- CREATE TABLE `role_user` ( `role_id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `user_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `role_user` -- INSERT INTO `role_user` (`role_id`, `user_id`, `user_type`) VALUES (2, 1, 'App\\Models\\User'), (3, 2, 'App\\Models\\User'), (2, 3, 'App\\Models\\User'), (3, 4, 'App\\Models\\User'), (2, 5, 'App\\Models\\User'), (1, 6, 'App\\Models\\User'), (1, 7, 'App\\Models\\User'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, '<NAME>', '<EMAIL>', NULL, '$2y$10$PygBKLl.zn2.HvZapAR4f.mBMfhrHpTQbESjJTRpLWNXRiwMx63Aq', NULL, '2021-07-26 20:13:09', '2021-07-26 20:13:09'), (2, '<NAME>', '<EMAIL>', NULL, '$2y$10$M05VTXe4X1ZRBGFHAg.PH.bM06aDfkv/Uu1pLdZmfOaWcxCVoJ/AS', NULL, '2021-07-26 22:04:56', '2021-07-26 22:04:56'), (3, 'Paulben', '<EMAIL>', NULL, '$2y$10$LGG4yMpwoNZbP8sJ9Wqqk.F9FD0AG14MkmiI6B3RmCq/Fx8ISrfWi', NULL, '2021-07-26 22:24:06', '2021-07-26 22:24:06'), (4, '<NAME>', '<EMAIL>', NULL, '$2y$10$Hw08alJFNFhPeZVX4xUDveQx880dsM0t3KcwP0NtGD02YinnLagrK', NULL, '2021-07-26 23:18:55', '2021-07-26 23:18:55'), (5, '<NAME>', '<EMAIL>', NULL, '$2y$10$Junc36Bvpf2Emt57.4oTCOk1/VGcbQZb541guhtMTrvpTpsnZmy6S', NULL, '2021-07-26 23:26:18', '2021-07-26 23:26:18'), (6, 'Godwin', '<EMAIL>', NULL, '$2y$10$wbIhtKrtV3kZ9D7InlyNmOIFj8i4ECSw.cELuaLoEsRm8af3OO052', NULL, '2021-07-26 23:31:03', '2021-07-26 23:31:03'), (7, '<NAME>', '<EMAIL>', NULL, '$2y$10$Qogo8EDYaXwhNPcaqEKXL.uHkaOMB0isQQLunTi7mBKb..mrDdqIy', NULL, '2021-09-29 09:37:29', '2021-09-29 09:37:29'); -- -- Indexes for dumped tables -- -- -- Indexes for table `blogs` -- ALTER TABLE `blogs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `blog_photos` -- ALTER TABLE `blog_photos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `causes` -- ALTER TABLE `causes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `frontpages` -- ALTER TABLE `frontpages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `permissions` -- ALTER TABLE `permissions` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `permissions_name_unique` (`name`); -- -- Indexes for table `permission_role` -- ALTER TABLE `permission_role` ADD PRIMARY KEY (`permission_id`,`role_id`), ADD KEY `permission_role_role_id_foreign` (`role_id`); -- -- Indexes for table `permission_user` -- ALTER TABLE `permission_user` ADD PRIMARY KEY (`user_id`,`permission_id`,`user_type`), ADD KEY `permission_user_permission_id_foreign` (`permission_id`); -- -- Indexes for table `roles` -- ALTER TABLE `roles` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `roles_name_unique` (`name`); -- -- Indexes for table `role_user` -- ALTER TABLE `role_user` ADD PRIMARY KEY (`user_id`,`role_id`,`user_type`), ADD KEY `role_user_role_id_foreign` (`role_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `blogs` -- ALTER TABLE `blogs` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30; -- -- AUTO_INCREMENT for table `blog_photos` -- ALTER TABLE `blog_photos` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `causes` -- ALTER TABLE `causes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `frontpages` -- ALTER TABLE `frontpages` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; -- -- AUTO_INCREMENT for table `permissions` -- ALTER TABLE `permissions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `roles` -- ALTER TABLE `roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- Constraints for dumped tables -- -- -- Constraints for table `permission_role` -- ALTER TABLE `permission_role` ADD CONSTRAINT `permission_role_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `permission_role_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `permission_user` -- ALTER TABLE `permission_user` ADD CONSTRAINT `permission_user_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `role_user` -- ALTER TABLE `role_user` ADD CONSTRAINT `role_user_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;