Compare commits
3 Commits
main
...
feature/da
| Author | SHA1 | Date | |
|---|---|---|---|
| 223c9a6c6e | |||
| 0abf5618f7 | |||
| 71fc7eee13 |
132
.github/copilot-instructions.md
vendored
Normal file → Executable file
132
.github/copilot-instructions.md
vendored
Normal file → Executable file
@@ -1,66 +1,66 @@
|
||||
# Copilot instructions for DMS repository
|
||||
|
||||
This file contains short, actionable guidance for AI coding agents working in this repository. Keep edits small and focused; prefer non-invasive changes and always run the project's health checks after edits.
|
||||
|
||||
Summary (one line):
|
||||
- Monorepo-style Dockerized DMS app: Node (ESM) backend (Express + Sequelize + MariaDB), Next.js frontend, n8n workflows, nginx/NPM reverse proxy, and various DB admin containers.
|
||||
|
||||
What to read first (order matters):
|
||||
1. `README.md` (root) — high-level architecture and host paths used on QNAP (/share/Container/dms and /share/dms-data).
|
||||
2. `docker-compose.yml` — service boundaries, env var conventions, mounted volumes, and healthchecks.
|
||||
3. `backend/README.md` and `backend/package.json` — backend runtime (Node >=20, ESM), start/dev scripts, and important env names (DB_*, JWT_*).
|
||||
4. `frontend/package.json`, `frontend/next.config.js`, `frontend/middleware.ts` — Next.js routes and auth cookie usage.
|
||||
|
||||
Quick architecture notes (why things are structured this way):
|
||||
- Containers are intended to run on QNAP Container Station; many volumes map host paths under `/share/Container/dms` and `/share/dms-data` for persistent storage and uploads.
|
||||
- Backend is ESM Node app with Sequelize connecting to MariaDB. No project-level `.env` — environment is provided by `docker-compose.yml` or Container Station.
|
||||
- Frontend is Next.js (server+client) running on port 3000. Middleware enforces cookie-based auth (`access_token`).
|
||||
- Reverse proxy (NPM) and nginx landing are used to expose services; ensure `TRUSTED_PROXIES`, `ROOT_URL`, and proxy headers are configured when editing networking code.
|
||||
|
||||
Important developer workflows (commands & checks):
|
||||
- Backend dev server:
|
||||
- npm run dev (in `backend/`) — nodemon watches `src` and restarts. Port from `PORT` env (default 3001).
|
||||
- npm run health (in `backend/`) — quick healthcheck: fetches /health.
|
||||
- Frontend dev server:
|
||||
- npm run dev (in `frontend/`) — next dev on port 3000.
|
||||
- Docker: use `docker-compose up -d` on the host (QNAP) to recreate services. On local dev, mount source to container as `docker-compose.yml` shows.
|
||||
|
||||
Project-specific conventions and patterns:
|
||||
- No `.env` files in repo; service environment is provided in compose and expected on host. Do not introduce secrets into repository; use compose or host secrets.
|
||||
- Ports: backend 3001, frontend 3000. Health endpoints: `/health` for both services.
|
||||
- File uploads are module-scoped: upload endpoint is `POST /api/v1/uploads/:module/:refId` and allowed `module` values are in README (rfa, correspondence, drawing, document, transmittal).
|
||||
- RBAC: permission strings like `rfa:create` and middleware `requirePerm('...')` (see `backend/middleware/permGuard.js`). Prefer existing middleware and permission helpers rather than inlining checks.
|
||||
- Views endpoints require `?project_id=` for scoped queries and enforce `projectScopedView('<module>')` policy.
|
||||
|
||||
Key files and directories to reference for edits or feature additions:
|
||||
- `backend/src/` — controllers, routes, middleware, models (Sequelize). Look for `index.js`, `routes/`, `models/`, `middleware/`.
|
||||
- `frontend/app` and `frontend/page.jsx` — Next.js app routes and top-level page.
|
||||
- `docker-compose.yml` — service shapes, volumes, env var names, and healthchecks (use this to know what variables to set).
|
||||
- `README.md` (root) and `backend/README.md` — canonical list of endpoints and env vars.
|
||||
|
||||
Testing and validation checklist for code changes:
|
||||
- Backend: run `npm run lint` (placeholder) and `npm run health` in `backend/`. Start nodemon and ensure `/health` returns OK and DB connection works.
|
||||
- Frontend: run `npm run dev` and confirm middleware redirects unauthenticated users to `/login` when visiting protected routes (see `middleware.ts` matcher).
|
||||
- Docker compose: after edits to services or env vars, run `docker-compose up -d --build` and watch healthchecks. Check mapped host paths under `/share/Container/dms`.
|
||||
|
||||
Common pitfalls to avoid (from repo patterns):
|
||||
- Do not hardcode secrets (JWT secrets, DB passwords) into code or repo files — they appear in compose for local deployment but should not be committed for production.
|
||||
- File permissions: many volumes expect certain UID/GID (e.g., `USER_UID=1000`). Ensure the container user has write permission for uploads and logs.
|
||||
- Large file uploads: proxy (NPM/nginx) may block big uploads; remember to check proxy `client_max_body_size` or NPM upload limits when debugging upload issues.
|
||||
|
||||
If you change routing, auth, or upload behavior:
|
||||
- Update `frontend/middleware.ts` if protected path patterns change.
|
||||
- Update backend `routes/` and ensure RBAC middleware usage follows `requirePerm` and `projectScopedView` patterns.
|
||||
- Run both services and test a full upload flow: login -> upload file -> download -> list files.
|
||||
|
||||
When you need more context, open these files first:
|
||||
- `docker-compose.yml` (service boundaries & env names)
|
||||
- `backend/README.md` (endpoint list & env examples)
|
||||
- `backend/src/index.js` (app bootstrap & middleware wiring)
|
||||
- `backend/src/middleware/permGuard.js` (RBAC enforcement)
|
||||
- `frontend/middleware.ts` (auth enforcement for routes)
|
||||
|
||||
If the repo already contains a `.github/copilot-instructions.md`, merge rather than replace; preserve any specific workflow steps.
|
||||
|
||||
Feedback request
|
||||
- Is there any additional developer workflow or file path you'd like included (build scripts, CI, or QNAP-specific steps)? If yes, point me to the file(s) and I'll integrate them.
|
||||
# Copilot instructions for DMS repository
|
||||
|
||||
This file contains short, actionable guidance for AI coding agents working in this repository. Keep edits small and focused; prefer non-invasive changes and always run the project's health checks after edits.
|
||||
|
||||
Summary (one line):
|
||||
- Monorepo-style Dockerized DMS app: Node (ESM) backend (Express + Sequelize + MariaDB), Next.js frontend, n8n workflows, nginx/NPM reverse proxy, and various DB admin containers.
|
||||
|
||||
What to read first (order matters):
|
||||
1. `README.md` (root) — high-level architecture and host paths used on QNAP (/share/Container/dms and /share/dms-data).
|
||||
2. `docker-compose.yml` — service boundaries, env var conventions, mounted volumes, and healthchecks.
|
||||
3. `backend/README.md` and `backend/package.json` — backend runtime (Node >=20, ESM), start/dev scripts, and important env names (DB_*, JWT_*).
|
||||
4. `frontend/package.json`, `frontend/next.config.js`, `frontend/middleware.ts` — Next.js routes and auth cookie usage.
|
||||
|
||||
Quick architecture notes (why things are structured this way):
|
||||
- Containers are intended to run on QNAP Container Station; many volumes map host paths under `/share/Container/dms` and `/share/dms-data` for persistent storage and uploads.
|
||||
- Backend is ESM Node app with Sequelize connecting to MariaDB. No project-level `.env` — environment is provided by `docker-compose.yml` or Container Station.
|
||||
- Frontend is Next.js (server+client) running on port 3000. Middleware enforces cookie-based auth (`access_token`).
|
||||
- Reverse proxy (NPM) and nginx landing are used to expose services; ensure `TRUSTED_PROXIES`, `ROOT_URL`, and proxy headers are configured when editing networking code.
|
||||
|
||||
Important developer workflows (commands & checks):
|
||||
- Backend dev server:
|
||||
- npm run dev (in `backend/`) — nodemon watches `src` and restarts. Port from `PORT` env (default 3001).
|
||||
- npm run health (in `backend/`) — quick healthcheck: fetches /health.
|
||||
- Frontend dev server:
|
||||
- npm run dev (in `frontend/`) — next dev on port 3000.
|
||||
- Docker: use `docker-compose up -d` on the host (QNAP) to recreate services. On local dev, mount source to container as `docker-compose.yml` shows.
|
||||
|
||||
Project-specific conventions and patterns:
|
||||
- No `.env` files in repo; service environment is provided in compose and expected on host. Do not introduce secrets into repository; use compose or host secrets.
|
||||
- Ports: backend 3001, frontend 3000. Health endpoints: `/health` for both services.
|
||||
- File uploads are module-scoped: upload endpoint is `POST /api/v1/uploads/:module/:refId` and allowed `module` values are in README (rfa, correspondence, drawing, document, transmittal).
|
||||
- RBAC: permission strings like `rfa:create` and middleware `requirePerm('...')` (see `backend/middleware/permGuard.js`). Prefer existing middleware and permission helpers rather than inlining checks.
|
||||
- Views endpoints require `?project_id=` for scoped queries and enforce `projectScopedView('<module>')` policy.
|
||||
|
||||
Key files and directories to reference for edits or feature additions:
|
||||
- `backend/src/` — controllers, routes, middleware, models (Sequelize). Look for `index.js`, `routes/`, `models/`, `middleware/`.
|
||||
- `frontend/app` and `frontend/page.jsx` — Next.js app routes and top-level page.
|
||||
- `docker-compose.yml` — service shapes, volumes, env var names, and healthchecks (use this to know what variables to set).
|
||||
- `README.md` (root) and `backend/README.md` — canonical list of endpoints and env vars.
|
||||
|
||||
Testing and validation checklist for code changes:
|
||||
- Backend: run `npm run lint` (placeholder) and `npm run health` in `backend/`. Start nodemon and ensure `/health` returns OK and DB connection works.
|
||||
- Frontend: run `npm run dev` and confirm middleware redirects unauthenticated users to `/login` when visiting protected routes (see `middleware.ts` matcher).
|
||||
- Docker compose: after edits to services or env vars, run `docker-compose up -d --build` and watch healthchecks. Check mapped host paths under `/share/Container/dms`.
|
||||
|
||||
Common pitfalls to avoid (from repo patterns):
|
||||
- Do not hardcode secrets (JWT secrets, DB passwords) into code or repo files — they appear in compose for local deployment but should not be committed for production.
|
||||
- File permissions: many volumes expect certain UID/GID (e.g., `USER_UID=1000`). Ensure the container user has write permission for uploads and logs.
|
||||
- Large file uploads: proxy (NPM/nginx) may block big uploads; remember to check proxy `client_max_body_size` or NPM upload limits when debugging upload issues.
|
||||
|
||||
If you change routing, auth, or upload behavior:
|
||||
- Update `frontend/middleware.ts` if protected path patterns change.
|
||||
- Update backend `routes/` and ensure RBAC middleware usage follows `requirePerm` and `projectScopedView` patterns.
|
||||
- Run both services and test a full upload flow: login -> upload file -> download -> list files.
|
||||
|
||||
When you need more context, open these files first:
|
||||
- `docker-compose.yml` (service boundaries & env names)
|
||||
- `backend/README.md` (endpoint list & env examples)
|
||||
- `backend/src/index.js` (app bootstrap & middleware wiring)
|
||||
- `backend/src/middleware/permGuard.js` (RBAC enforcement)
|
||||
- `frontend/middleware.ts` (auth enforcement for routes)
|
||||
|
||||
If the repo already contains a `.github/copilot-instructions.md`, merge rather than replace; preserve any specific workflow steps.
|
||||
|
||||
Feedback request
|
||||
- Is there any additional developer workflow or file path you'd like included (build scripts, CI, or QNAP-specific steps)? If yes, point me to the file(s) and I'll integrate them.
|
||||
|
||||
195
.gitignore
vendored
Normal file → Executable file
195
.gitignore
vendored
Normal file → Executable file
@@ -1,101 +1,94 @@
|
||||
# ยกเว้นโฟลเดอร์
|
||||
.devcontainer/
|
||||
.qsync/
|
||||
@Recently-Snapshot/
|
||||
Documents/
|
||||
mariadb/data/
|
||||
n8n*/
|
||||
n8n-postgres/
|
||||
npm/
|
||||
phpmyadmin/
|
||||
pgadmin/
|
||||
.tmp.driveupload
|
||||
.qsync
|
||||
# =====================================================
|
||||
# IDE/Editor settings
|
||||
# =====================================================
|
||||
.vscode/
|
||||
.idea/
|
||||
# =====================================================
|
||||
# Node.js dependencies (เฉพาะ backend และ frontend)
|
||||
# =====================================================
|
||||
/backend/node_modules/
|
||||
/frontend/node_modules/
|
||||
**/node_modules/
|
||||
# lockfiles
|
||||
# /backend/package-lock.json
|
||||
# /frontend/package-lock.json
|
||||
# **/package-lock.json
|
||||
# =====================================================
|
||||
# Next.js build output
|
||||
# =====================================================
|
||||
/frontend/.next/
|
||||
/frontend/out/
|
||||
/frontend/.vercel/
|
||||
|
||||
# Build outputs
|
||||
/dist
|
||||
/build
|
||||
/.next/
|
||||
/out/
|
||||
/bin/
|
||||
|
||||
# =====================================================
|
||||
# Environment files
|
||||
# =====================================================
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# =====================================================
|
||||
# Logs
|
||||
# =====================================================
|
||||
/backend/logs/
|
||||
/frontend/logs/
|
||||
/logs/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
*.tmp
|
||||
*.temp
|
||||
ehthumbs.db
|
||||
desktop.ini
|
||||
# ===================================================================
|
||||
# Databases (MariaDB, Postgres) & Admin Tools (phpMyAdmin, pgAdmin)
|
||||
# ===================================================================
|
||||
# Do not commit database data dumps which may contain sensitive info
|
||||
*.dump
|
||||
*.bak
|
||||
|
||||
# =====================================================
|
||||
# OS-specific junk
|
||||
# =====================================================
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.AppleDouble
|
||||
|
||||
# =====================================================
|
||||
# Docker-related
|
||||
# =====================================================
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
docker-compose.override.yml
|
||||
docker-compose.override.*.yml
|
||||
|
||||
# =====================================================
|
||||
# Cache / temp
|
||||
# =====================================================
|
||||
/backend/.cache/
|
||||
/frontend/.cache/
|
||||
.tmp/
|
||||
.tmp*.*/
|
||||
.cache/
|
||||
# Ignore Nginx Proxy Manager data
|
||||
/npm/
|
||||
|
||||
/n8n-postgres/
|
||||
# ยกเว้นโฟลเดอร์
|
||||
.devcontainer/
|
||||
.qsync/
|
||||
@Recently-Snapshot/
|
||||
Documents/
|
||||
mariadb/data/
|
||||
n8n*/
|
||||
npm/
|
||||
phpmyadmin/
|
||||
pgadmin/
|
||||
# =====================================================
|
||||
# IDE/Editor settings
|
||||
# =====================================================
|
||||
.vscode/
|
||||
.idea/
|
||||
# =====================================================
|
||||
# Node.js dependencies (เฉพาะ backend และ frontend)
|
||||
# =====================================================
|
||||
/backend/node_modules/
|
||||
/frontend/node_modules/
|
||||
**/node_modules/
|
||||
# lockfiles
|
||||
# /backend/package-lock.json
|
||||
# /frontend/package-lock.json
|
||||
# **/package-lock.json
|
||||
# =====================================================
|
||||
# Next.js build output
|
||||
# =====================================================
|
||||
/frontend/.next/
|
||||
/frontend/out/
|
||||
/frontend/.vercel/
|
||||
|
||||
# Build outputs
|
||||
/dist
|
||||
/build
|
||||
/.next/
|
||||
/out/
|
||||
/bin/
|
||||
|
||||
# =====================================================
|
||||
# Environment files
|
||||
# =====================================================
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# =====================================================
|
||||
# Logs
|
||||
# =====================================================
|
||||
/backend/logs/
|
||||
/frontend/logs/
|
||||
/logs/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
*.tmp
|
||||
*.temp
|
||||
ehthumbs.db
|
||||
desktop.ini
|
||||
# ===================================================================
|
||||
# Databases (MariaDB, Postgres) & Admin Tools (phpMyAdmin, pgAdmin)
|
||||
# ===================================================================
|
||||
# Do not commit database data dumps which may contain sensitive info
|
||||
*.dump
|
||||
*.bak
|
||||
|
||||
# =====================================================
|
||||
# OS-specific junk
|
||||
# =====================================================
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.AppleDouble
|
||||
|
||||
# =====================================================
|
||||
# Docker-related
|
||||
# =====================================================
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
docker-compose.override.yml
|
||||
docker-compose.override.*.yml
|
||||
|
||||
# =====================================================
|
||||
# Cache / temp
|
||||
# =====================================================
|
||||
/backend/.cache/
|
||||
/frontend/.cache/
|
||||
.tmp/
|
||||
.tmp*.*/
|
||||
.cache/
|
||||
@@ -1,4 +1,4 @@
|
||||
[/dms]
|
||||
max_log = 510381
|
||||
number = 3
|
||||
max_log = 498246
|
||||
number = 4
|
||||
finish = 1
|
||||
|
||||
7479
.qsync/meta/qmeta0
7479
.qsync/meta/qmeta0
File diff suppressed because it is too large
Load Diff
7301
.qsync/meta/qmeta1
7301
.qsync/meta/qmeta1
File diff suppressed because it is too large
Load Diff
6587
.qsync/meta/qmeta2
6587
.qsync/meta/qmeta2
File diff suppressed because it is too large
Load Diff
BIN
.tmp.driveupload/1834
Normal file
BIN
.tmp.driveupload/1834
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1836
Normal file
BIN
.tmp.driveupload/1836
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1838
Normal file
BIN
.tmp.driveupload/1838
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1842
Normal file
BIN
.tmp.driveupload/1842
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1844
Normal file
BIN
.tmp.driveupload/1844
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1848
Normal file
BIN
.tmp.driveupload/1848
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1852
Normal file
BIN
.tmp.driveupload/1852
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1854
Normal file
BIN
.tmp.driveupload/1854
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1858
Normal file
BIN
.tmp.driveupload/1858
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1860
Normal file
BIN
.tmp.driveupload/1860
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1864
Normal file
BIN
.tmp.driveupload/1864
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1866
Normal file
BIN
.tmp.driveupload/1866
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1868
Normal file
BIN
.tmp.driveupload/1868
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1872
Normal file
BIN
.tmp.driveupload/1872
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1874
Normal file
BIN
.tmp.driveupload/1874
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1876
Normal file
BIN
.tmp.driveupload/1876
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1878
Normal file
BIN
.tmp.driveupload/1878
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1882
Normal file
BIN
.tmp.driveupload/1882
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1884
Normal file
BIN
.tmp.driveupload/1884
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1888
Normal file
BIN
.tmp.driveupload/1888
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1892
Normal file
BIN
.tmp.driveupload/1892
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1894
Normal file
BIN
.tmp.driveupload/1894
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1896
Normal file
BIN
.tmp.driveupload/1896
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1898
Normal file
BIN
.tmp.driveupload/1898
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1902
Normal file
BIN
.tmp.driveupload/1902
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1904
Normal file
BIN
.tmp.driveupload/1904
Normal file
Binary file not shown.
2
.tmp.driveupload/1906
Normal file
2
.tmp.driveupload/1906
Normal file
@@ -0,0 +1,2 @@
|
||||
x<01><>]J1<14>}<7D>*<2A><>uH2<48>?q+I<>M<1D><>0<EFBFBD><30>}l<>&\<5C><>
|
||||
<EFBFBD><EFBFBD>d)<29><>@8p>|p<>4}<06><>]^<5E> Xr!<21>5<1C><>I<EFBFBD>#<23>.q!<21><><EFBFBD><EFBFBD>:i<>u<EFBFBD><75>~<7E>1<06>[nm<6E><6D><EFBFBD>F<EFBFBD>h1R2mRh$<06>&<1F>5<EFBFBD><35><EFBFBD>봀ǡ<1F><>V/<2F>>7<><37><EFBFBD><EFBFBD><EFBFBD>|L<><4C><19>Q<EFBFBD>i%<25><>{n8g<38>v/ӿE<D3BF><45><EFBFBD>G<EFBFBD><47>c-<2D>z9<7A>r<EFBFBD>姖<EFBFBD>Z<EFBFBD>`<60>[Z<><5A><EFBFBD>s<03><>0<EFBFBD><30><1F>_qm[}
|
||||
BIN
.tmp.driveupload/1910
Normal file
BIN
.tmp.driveupload/1910
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1912
Normal file
BIN
.tmp.driveupload/1912
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1916
Normal file
BIN
.tmp.driveupload/1916
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1918
Normal file
BIN
.tmp.driveupload/1918
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1922
Normal file
BIN
.tmp.driveupload/1922
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1924
Normal file
BIN
.tmp.driveupload/1924
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1926
Normal file
BIN
.tmp.driveupload/1926
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1928
Normal file
BIN
.tmp.driveupload/1928
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1932
Normal file
BIN
.tmp.driveupload/1932
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1934
Normal file
BIN
.tmp.driveupload/1934
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1936
Normal file
BIN
.tmp.driveupload/1936
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1940
Normal file
BIN
.tmp.driveupload/1940
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1942
Normal file
BIN
.tmp.driveupload/1942
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1944
Normal file
BIN
.tmp.driveupload/1944
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1946
Normal file
BIN
.tmp.driveupload/1946
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1948
Normal file
BIN
.tmp.driveupload/1948
Normal file
Binary file not shown.
4
.tmp.driveupload/1952
Normal file
4
.tmp.driveupload/1952
Normal file
@@ -0,0 +1,4 @@
|
||||
xm<><6D>j<EFBFBD>0<0C>{<7B>S<EFBFBD><53><EFBFBD>2N
|
||||
<EFBFBD><EFBFBD>.<19>J)s<>]q<><71><EFBFBD>%<25><>,<2C><>{<7B>t<EFBFBD>N<EFBFBD>K<08>ӯOr<4F>l<0F>O7<4F><37> <09><>dBƘԽun=<3D> E<><45>Y
|
||||
<EFBFBD>K<EFBFBD><EFBFBD>E<EFBFBD>
|
||||
RNj<19><><0E><>a+w|<7C><><EFBFBD><EFBFBD>U<EFBFBD>N}#<23>
|
||||
BIN
.tmp.driveupload/1954
Normal file
BIN
.tmp.driveupload/1954
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1958
Normal file
BIN
.tmp.driveupload/1958
Normal file
Binary file not shown.
2
.tmp.driveupload/1960
Normal file
2
.tmp.driveupload/1960
Normal file
@@ -0,0 +1,2 @@
|
||||
x<01><><EFBFBD>M<EFBFBD>0@aή<61>G"<22>olKh<4B><68>L<EFBFBD>1<04>myg<79>n+p<>n)'<27> m<07><><EFBFBD><EFBFBD>^<5E><><EFBFBD>W<><57>QG<51><47><05>.jQ+<2B><><EFBFBD>8-<2D>t<10><>F<EFBFBD><46>uf
|
||||
:⠓Be<42>$q<>bZ<> J<>f<EFBFBD><66>PbJz<02><19><><EFBFBD>vi]
|
||||
BIN
.tmp.driveupload/1964
Normal file
BIN
.tmp.driveupload/1964
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1966
Normal file
BIN
.tmp.driveupload/1966
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1968
Normal file
BIN
.tmp.driveupload/1968
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1970
Normal file
BIN
.tmp.driveupload/1970
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1972
Normal file
BIN
.tmp.driveupload/1972
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1976
Normal file
BIN
.tmp.driveupload/1976
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1978
Normal file
BIN
.tmp.driveupload/1978
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1980
Normal file
BIN
.tmp.driveupload/1980
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1982
Normal file
BIN
.tmp.driveupload/1982
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1986
Normal file
BIN
.tmp.driveupload/1986
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1988
Normal file
BIN
.tmp.driveupload/1988
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1992
Normal file
BIN
.tmp.driveupload/1992
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1994
Normal file
BIN
.tmp.driveupload/1994
Normal file
Binary file not shown.
BIN
.tmp.driveupload/1998
Normal file
BIN
.tmp.driveupload/1998
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2000
Normal file
BIN
.tmp.driveupload/2000
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2002
Normal file
BIN
.tmp.driveupload/2002
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2006
Normal file
BIN
.tmp.driveupload/2006
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2008
Normal file
BIN
.tmp.driveupload/2008
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2010
Normal file
BIN
.tmp.driveupload/2010
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2012
Normal file
BIN
.tmp.driveupload/2012
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2014
Normal file
BIN
.tmp.driveupload/2014
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2016
Normal file
BIN
.tmp.driveupload/2016
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2020
Normal file
BIN
.tmp.driveupload/2020
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2022
Normal file
BIN
.tmp.driveupload/2022
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2026
Normal file
BIN
.tmp.driveupload/2026
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2028
Normal file
BIN
.tmp.driveupload/2028
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2030
Normal file
BIN
.tmp.driveupload/2030
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2032
Normal file
BIN
.tmp.driveupload/2032
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2036
Normal file
BIN
.tmp.driveupload/2036
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2038
Normal file
BIN
.tmp.driveupload/2038
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2042
Normal file
BIN
.tmp.driveupload/2042
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2044
Normal file
BIN
.tmp.driveupload/2044
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2048
Normal file
BIN
.tmp.driveupload/2048
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2050
Normal file
BIN
.tmp.driveupload/2050
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2054
Normal file
BIN
.tmp.driveupload/2054
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2056
Normal file
BIN
.tmp.driveupload/2056
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2058
Normal file
BIN
.tmp.driveupload/2058
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2060
Normal file
BIN
.tmp.driveupload/2060
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2062
Normal file
BIN
.tmp.driveupload/2062
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2066
Normal file
BIN
.tmp.driveupload/2066
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2068
Normal file
BIN
.tmp.driveupload/2068
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2070
Normal file
BIN
.tmp.driveupload/2070
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2072
Normal file
BIN
.tmp.driveupload/2072
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2074
Normal file
BIN
.tmp.driveupload/2074
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2078
Normal file
BIN
.tmp.driveupload/2078
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2080
Normal file
BIN
.tmp.driveupload/2080
Normal file
Binary file not shown.
BIN
.tmp.driveupload/2084
Normal file
BIN
.tmp.driveupload/2084
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user