diff --git a/.env b/.env index 2e929a6..42ade84 100644 --- a/.env +++ b/.env @@ -1,20 +1,20 @@ # === Super Sunday PROD Environment === NODE_ENV=production -PORT=8080 +PORT=4000 # Database POSTGRES_DB=supersunday POSTGRES_USER=supersunday -POSTGRES_PASSWORD=Sup3rSund@y2025! +POSTGRES_PASSWORD=postgres DATABASE_URL=postgres://supersunday:Sup3rSund@y2025!@db:5432/supersunday # API / Auth JWT_SECRET=Sup3rSundayUltraSecretKey_2025 -CORS_ORIGIN=http://localhost:8080 +CORS_ORIGIN=http://localhost # Admin credentials ADMIN_EMAIL=admin@supersunday.app -ADMIN_PASSWORD=ChangeMeNow!42 +ADMIN_PASSWORD=4575SataUMGF2026+-PROD # Branding APP_NAME="Super Sunday Padel Championship" diff --git a/.env. b/.env. deleted file mode 100644 index 93c8acf..0000000 --- a/.env. +++ /dev/null @@ -1,21 +0,0 @@ -# === Super Sunday PROD Environment === -NODE_ENV=production -PORT=8080 - -# Database -POSTGRES_DB=supersunday -POSTGRES_USER=supersunday -POSTGRES_PASSWORD=Sup3rSund@y2025! -DATABASE_URL=postgres://supersunday:Sup3rSund@y2025!@db:5432/supersunday - -# API / Auth -JWT_SECRET=Sup3rSundayUltraSecretKey_2025 -CORS_ORIGIN=http://localhost - -# Admin credentials -ADMIN_EMAIL=admin@padel24play.com -ADMIN_PASSWORD=4575SataMGF+- - -# Branding -APP_NAME="Super Sunday Padel Championship" -CLUB_NAME="Les Églantiers, Woluwe-Saint-Pierre" \ No newline at end of file diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..78e16ae --- /dev/null +++ b/.env.example @@ -0,0 +1,14 @@ +# Backend +PORT=4000 +JWT_SECRET=change_me_supersecret + +# Admin (simple login) +ADMIN_EMAIL=admin@supersunday.local +ADMIN_PASSWORD=admin1234 + +# Postgres +PGHOST=db +PGPORT=5432 +PGDATABASE=supersunday +PGUSER=supersunday +PGPASSWORD=supersunday diff --git a/.env.prod b/.env.prod index 63870b6..335ce53 100644 --- a/.env.prod +++ b/.env.prod @@ -1,6 +1,6 @@ # === Super Sunday PROD Environment === NODE_ENV=production -PORT=8080 +PORT=4000 # Database POSTGRES_DB=supersunday diff --git a/README_HTML_PATCH.txt b/README_HTML_PATCH.txt deleted file mode 100644 index f0626e5..0000000 --- a/README_HTML_PATCH.txt +++ /dev/null @@ -1,8 +0,0 @@ -Patch HTML (header/menu unifié + onglet actif + liens CSS v=4) -- frontend/public/index.html -- frontend/public/tournament/index.html -- frontend/public/admin/index.html - -Installation: - unzip -o supersunday_frontend_html_header_patch.zip -d . - docker compose build web && docker compose up -d diff --git a/README_PATCH.txt b/README_PATCH.txt deleted file mode 100644 index c39474f..0000000 --- a/README_PATCH.txt +++ /dev/null @@ -1,12 +0,0 @@ -Patch: Typography + titles facelift (hero titles, section titles, kicker labels). -Files: -- frontend/public/assets/style.titles.patch.css - -Usage: - 1. Copy style.titles.patch.css into frontend/public/assets/ - 2. In your HTML , include: - - 3. Apply classes .hero-title, .section-title, .kicker, .btn-outline in your HTML. - -Rebuild web: - docker compose build web && docker compose up -d diff --git a/backend/.env b/backend/.env new file mode 100644 index 0000000..e116cda --- /dev/null +++ b/backend/.env @@ -0,0 +1,14 @@ +# --- Backend API --- +PORT=4000 + +# --- Postgres --- +PGHOST=db +PGUSER=postgres +PGPASSWORD=postgres +PGDATABASE=supersunday +PGPORT=5432 + +# --- Admin auth --- +ADMIN_EMAIL=admin@supersunday.local +ADMIN_PASSWORD=changeme +JWT_SECRET=supersecret diff --git a/backend/Dockerfile b/backend/Dockerfile index b509b8e..7e6d664 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,12 +1,14 @@ -FROM node:20-alpine AS deps -WORKDIR /app -COPY package.json package-lock.json* .npmrc* ./ -RUN npm ci --omit=dev - FROM node:20-alpine WORKDIR /app -ENV NODE_ENV=production -COPY --from=deps /app/node_modules ./node_modules + +COPY package*.json ./ +RUN npm ci --omit=dev || npm install --production COPY . . -EXPOSE 8080 -CMD ["node", "server.js"] \ No newline at end of file + +RUN apk add --no-cache curl + +EXPOSE 4000 + +HEALTHCHECK --interval=10s --timeout=3s --retries=12 --start-period=30s CMD curl -fsS http://localhost:4000/api/health || exit 1 + +CMD ["node","src/index.js"] diff --git a/backend/README_BACKEND_CRUD_PATCH.txt b/backend/README_BACKEND_CRUD_PATCH.txt new file mode 100644 index 0000000..5f62cee --- /dev/null +++ b/backend/README_BACKEND_CRUD_PATCH.txt @@ -0,0 +1,45 @@ +Supersunday — Backend CRUD patch (final) + +Adds: +- src/middleware/auth.js (JWT guard) +- src/routes/auth.js (POST /api/auth/login) +- src/routes/tournaments.js (GET list/one/related, POST create, POST add participant) +- src/routes/matches.js (POST /api/matches/:id/score) +- src/db.js (pg connection) +- src/index.js (mount routes + /api/health) +- sql/schema.sql (tables + indexes) + +Install: +1) Unzip into ./backend + unzip -o supersunday_backend_crud_patch.zip -d backend + +2) Ensure backend/.env has: + PORT=4000 + PGHOST=db + PGUSER=postgres + PGPASSWORD=postgres + PGDATABASE=supersunday + PGPORT=5432 + ADMIN_EMAIL=admin@supersunday.local + ADMIN_PASSWORD=changeme + JWT_SECRET=supersecret + +3) Apply schema: + docker compose cp backend/sql/schema.sql db:/tmp/schema.sql + docker compose exec db psql -U postgres -d supersunday -f /tmp/schema.sql + +4) Rebuild API: + docker compose up -d --build api + +Quick test: +- Login: + curl -s http://localhost:4000/api/auth/login -H 'Content-Type: application/json' -d '{"email":"admin@supersunday.local","password":"changeme"}' + +- Create tournament: + TOKEN=...; curl -s http://localhost:4000/api/tournaments -H "Authorization: Bearer $TOKEN" -H 'Content-Type: application/json' -d '{"name":"Super Sunday #2","location":"PC","start_date":"2025-10-05"}' + +- Add participant: + curl -s http://localhost:4000/api/tournaments/1/participants -H "Authorization: Bearer $TOKEN" -H 'Content-Type: application/json' -d '{"full_name":"Nouvel Joueur"}' + +- Score match: + curl -s http://localhost:4000/api/matches/1/score -H "Authorization: Bearer $TOKEN" -H 'Content-Type: application/json' -d '{"score_a":6,"score_b":4,"done":true}' diff --git a/backend/package.json b/backend/package.json index 2702227..ed2d3a8 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,18 +1,18 @@ { - "name": "supersunday-api", - "version": "1.1.0", + "name": "supersunday-backend", + "version": "1.0.0", "type": "module", - "private": true, + "main": "src/index.js", "scripts": { - "start": "node server.js" + "start": "node src/index.js", + "dev": "node --watch src/index.js" }, "dependencies": { "cors": "^2.8.5", - "dotenv": "^16.4.5", - "express": "^4.19.2", - "helmet": "^7.1.0", + "dotenv": "^16.6.1", + "express": "^4.21.2", + "helmet": "^7.2.0", "jsonwebtoken": "^9.0.2", - "morgan": "^1.10.0", "pg": "^8.11.5" } -} \ No newline at end of file +} diff --git a/backend/sql/schema.sql b/backend/sql/schema.sql new file mode 100644 index 0000000..2d49429 --- /dev/null +++ b/backend/sql/schema.sql @@ -0,0 +1,28 @@ +create table if not exists tournaments( + id serial primary key, + name text not null, + location text, + start_date date, + end_date date, + created_at timestamp default now() +); +create table if not exists participants( + id serial primary key, + tournament_id int not null references tournaments(id) on delete cascade, + full_name text not null, + created_at timestamp default now() +); +create index if not exists idx_participants_t on participants(tournament_id); +create table if not exists matches( + id serial primary key, + tournament_id int not null references tournaments(id) on delete cascade, + court text, + starts_at timestamp, + team_a text, + team_b text, + score_a int default 0, + score_b int default 0, + done boolean default false, + created_at timestamp default now() +); +create index if not exists idx_matches_t on matches(tournament_id); diff --git a/backend/src/db.js b/backend/src/db.js new file mode 100644 index 0000000..a310092 --- /dev/null +++ b/backend/src/db.js @@ -0,0 +1,11 @@ +import pg from 'pg'; +const { Pool } = pg; + +const pool = new Pool({ + host: process.env.PGHOST || 'db', + port: Number(process.env.PGPORT || 5432), + user: process.env.PGUSER || 'postgres', + password: process.env.PGPASSWORD || 'postgres', + database: process.env.PGDATABASE || 'supersunday', +}); +export default pool; diff --git a/backend/src/index.js b/backend/src/index.js new file mode 100644 index 0000000..8bf9a35 --- /dev/null +++ b/backend/src/index.js @@ -0,0 +1,24 @@ +import 'dotenv/config'; +import express from 'express'; +import helmet from 'helmet'; +import cors from 'cors'; + +import authRoutes from './routes/auth.js'; +import tournamentsRoutes from './routes/tournaments.js'; +import matchesRoutes from './routes/matches.js'; +import standingsRoutes from './routes/standings.js'; + +const app = express(); +app.use(helmet()); +app.use(cors()); +app.use(express.json()); + +app.get('/api/health', (req,res)=>res.json({ ok:true, ts: Date.now() })); + +app.use('/api/auth', authRoutes); +app.use('/api/tournaments', tournamentsRoutes); +app.use('/api/matches', matchesRoutes); +app.use('/api/tournaments', standingsRoutes); + +const PORT = process.env.PORT || 4000; +app.listen(PORT, () => console.log(`API listening on :${PORT}`)); diff --git a/backend/src/middleware/auth.js b/backend/src/middleware/auth.js new file mode 100644 index 0000000..b8d0666 --- /dev/null +++ b/backend/src/middleware/auth.js @@ -0,0 +1,14 @@ +import jwt from 'jsonwebtoken'; + +export function requireAuth(req, res, next) { + try { + const h = req.headers.authorization || ''; + const token = h.startsWith('Bearer ') ? h.slice(7) : ''; + if (!token) return res.status(401).json({ error: 'missing_token' }); + const decoded = jwt.verify(token, process.env.JWT_SECRET || 'supersecret'); + req.user = decoded; + next(); + } catch (e) { + res.status(401).json({ error: 'invalid_token' }); + } +} diff --git a/backend/src/routes/auth.js b/backend/src/routes/auth.js new file mode 100644 index 0000000..f625d06 --- /dev/null +++ b/backend/src/routes/auth.js @@ -0,0 +1,17 @@ +import { Router } from 'express'; +import jwt from 'jsonwebtoken'; + +const router = Router(); + +router.post('/login', async (req, res) => { + const { email, password } = req.body || {}; + const ADMIN_EMAIL = process.env.ADMIN_EMAIL || 'admin@supersunday.local'; + const ADMIN_PASSWORD = process.env.ADMIN_PASSWORD || 'changeme'; + if (email === ADMIN_EMAIL && password === ADMIN_PASSWORD) { + const token = jwt.sign({ sub: email, role: 'admin' }, process.env.JWT_SECRET || 'supersecret', { expiresIn: '12h' }); + return res.json({ token }); + } + return res.status(401).json({ error: 'bad_credentials' }); +}); + +export default router; diff --git a/backend/src/routes/matches.js b/backend/src/routes/matches.js new file mode 100644 index 0000000..599db23 --- /dev/null +++ b/backend/src/routes/matches.js @@ -0,0 +1,20 @@ +import { Router } from 'express'; +import pool from '../db.js'; +import { requireAuth } from '../middleware/auth.js'; + +const router = Router(); + +// Score a match (admin) +router.post('/:id/score', requireAuth, async (req,res)=>{ + const mid = Number(req.params.id); + const { score_a, score_b, done } = req.body || {}; + if (!mid) return res.status(400).json({ error:'bad_match_id' }); + const { rows } = await pool.query( + 'update matches set score_a=$2, score_b=$3, done=coalesce($4, done) where id=$1 returning *', + [mid, score_a ?? 0, score_b ?? 0, done] + ); + if (!rows[0]) return res.status(404).json({ error:'match_not_found' }); + res.json(rows[0]); +}); + +export default router; diff --git a/backend/src/routes/standings.js b/backend/src/routes/standings.js new file mode 100644 index 0000000..9d462a0 --- /dev/null +++ b/backend/src/routes/standings.js @@ -0,0 +1,78 @@ +import { Router } from 'express'; +import pool from '../db.js'; + +const router = Router(); + +// GET /api/tournaments/:id/standings +router.get('/:id/standings', async (req, res) => { + const tid = Number(req.params.id); + if (!tid) return res.status(400).json({ error: 'bad_tournament_id' }); + + const { rows: players } = await pool.query('select id, full_name from participants where tournament_id=$1', [tid]); + const { rows: matches } = await pool.query('select * from matches where tournament_id=$1 order by id', [tid]); + + const nameToId = new Map(players.map(p => [p.full_name, p.id])); + const stats = new Map(players.map(p => [p.id, { + player_id: p.id, name: p.full_name, + played: 0, wins: 0, draws: 0, losses: 0, + games_for: 0, games_against: 0, points: 0 + }])); + + const addStats = (pid, gf, ga, wdl) => { + const s = stats.get(pid); + s.played += 1; + s.games_for += gf; + s.games_against += ga; + if (wdl === 'W') s.wins += 1; + else if (wdl === 'D') s.draws += 1; + else if (wdl === 'L') s.losses += 1; + s.points += gf; // Americano style: points = games won + }; + + for (const m of matches) { + if (!m.team_a || !m.team_b) continue; + const aNames = m.team_a.split('&').map(s => s.trim()); + const bNames = m.team_b.split('&').map(s => s.trim()); + const aIds = aNames.map(n => nameToId.get(n)).filter(Boolean); + const bIds = bNames.map(n => nameToId.get(n)).filter(Boolean); + + const sa = Number(m.score_a || 0); + const sb = Number(m.score_b || 0); + const considered = m.done === true || sa > 0 || sb > 0; + if (!considered) continue; + + let outcomeA = 'D', outcomeB = 'D'; + if (sa > sb) { outcomeA = 'W'; outcomeB = 'L'; } + else if (sb > sa) { outcomeA = 'L'; outcomeB = 'W'; } + + for (const pid of aIds) addStats(pid, sa, sb, outcomeA); + for (const pid of bIds) addStats(pid, sb, sa, outcomeB); + } + + const table = Array.from(stats.values()).map(s => ({ + ...s, + diff: s.games_for - s.games_against, + rank_key: [-(s.points), -(s.diff), -(s.wins), s.name.toLowerCase()] + })); + + table.sort((x, y) => { + for (let i = 0; i < x.rank_key.length; i++) { + if (x.rank_key[i] < y.rank_key[i]) return -1; + if (x.rank_key[i] > y.rank_key[i]) return 1; + } + return 0; + }); + + let rank = 0, prevKey = null; + for (const row of table) { + const key = JSON.stringify(row.rank_key); + if (key !== prevKey) rank += 1; + row.rank = rank; + prevKey = key; + delete row.rank_key; + } + + res.json({ tournament_id: tid, standings: table }); +}); + +export default router; diff --git a/backend/src/routes/tournaments.js b/backend/src/routes/tournaments.js new file mode 100644 index 0000000..8d36902 --- /dev/null +++ b/backend/src/routes/tournaments.js @@ -0,0 +1,59 @@ +import { Router } from 'express'; +import pool from '../db.js'; +import { requireAuth } from '../middleware/auth.js'; + +const router = Router(); + +// List +router.get('/', async (req,res)=>{ + const { rows } = await pool.query('select * from tournaments order by start_date nulls last, id desc limit 200'); + res.json(rows); +}); + +// One +router.get('/:id', async (req,res)=>{ + const { rows } = await pool.query('select * from tournaments where id=$1', [req.params.id]); + if (!rows[0]) return res.status(404).json({ error:'not_found' }); + res.json(rows[0]); +}); + +// Participants +router.get('/:id/participants', async (req,res)=>{ + const { rows } = await pool.query('select * from participants where tournament_id=$1 order by id', [req.params.id]); + res.json(rows); +}); + +// Matches +router.get('/:id/matches', async (req,res)=>{ + const { rows } = await pool.query('select * from matches where tournament_id=$1 order by starts_at nulls last, id', [req.params.id]); + res.json(rows); +}); + +// Create tournament (admin) +router.post('/', requireAuth, async (req,res)=>{ + const { name, location, start_date, end_date } = req.body || {}; + if (!name) return res.status(400).json({ error:'name_required' }); + const { rows } = await pool.query( + 'insert into tournaments(name,location,start_date,end_date) values ($1,$2,$3,$4) returning *', + [name, location||null, start_date||null, end_date||null] + ); + res.status(201).json(rows[0]); +}); + +// Add participant (admin) +router.post('/:id/participants', requireAuth, async (req,res)=>{ + const { full_name } = req.body || {}; + const tid = Number(req.params.id); + if (!tid) return res.status(400).json({ error:'bad_tournament_id' }); + if (!full_name) return res.status(400).json({ error:'full_name_required' }); + // ensure tournament exists + const t = await pool.query('select id from tournaments where id=$1', [tid]); + if (!t.rows[0]) return res.status(404).json({ error:'tournament_not_found' }); + const { rows } = await pool.query( + 'insert into participants(tournament_id, full_name) values ($1,$2) returning *', + [tid, full_name] + ); + res.status(201).json(rows[0]); +}); + +export default router; diff --git a/data/db/PG_VERSION b/data/db/PG_VERSION new file mode 100644 index 0000000..b6a7d89 --- /dev/null +++ b/data/db/PG_VERSION @@ -0,0 +1 @@ +16 diff --git a/data/db/base/1/112 b/data/db/base/1/112 new file mode 100644 index 0000000..2bfc88c Binary files /dev/null and b/data/db/base/1/112 differ diff --git a/data/db/base/1/113 b/data/db/base/1/113 new file mode 100644 index 0000000..c36defa Binary files /dev/null and b/data/db/base/1/113 differ diff --git a/data/db/base/1/1247 b/data/db/base/1/1247 new file mode 100644 index 0000000..e306280 Binary files /dev/null and b/data/db/base/1/1247 differ diff --git a/data/db/base/1/1247_fsm b/data/db/base/1/1247_fsm new file mode 100644 index 0000000..013faac Binary files /dev/null and b/data/db/base/1/1247_fsm differ diff --git a/data/db/base/1/1247_vm b/data/db/base/1/1247_vm new file mode 100644 index 0000000..ebb7d13 Binary files /dev/null and b/data/db/base/1/1247_vm differ diff --git a/data/db/base/1/1249 b/data/db/base/1/1249 new file mode 100644 index 0000000..ace6a24 Binary files /dev/null and b/data/db/base/1/1249 differ diff --git a/data/db/base/1/1249_fsm b/data/db/base/1/1249_fsm new file mode 100644 index 0000000..a538ac8 Binary files /dev/null and b/data/db/base/1/1249_fsm differ diff --git a/data/db/base/1/1249_vm b/data/db/base/1/1249_vm new file mode 100644 index 0000000..640d077 Binary files /dev/null and b/data/db/base/1/1249_vm differ diff --git a/data/db/base/1/1255 b/data/db/base/1/1255 new file mode 100644 index 0000000..a3b1864 Binary files /dev/null and b/data/db/base/1/1255 differ diff --git a/data/db/base/1/1255_fsm b/data/db/base/1/1255_fsm new file mode 100644 index 0000000..69a5d8f Binary files /dev/null and b/data/db/base/1/1255_fsm differ diff --git a/data/db/base/1/1255_vm b/data/db/base/1/1255_vm new file mode 100644 index 0000000..3f97975 Binary files /dev/null and b/data/db/base/1/1255_vm differ diff --git a/data/db/base/1/1259 b/data/db/base/1/1259 new file mode 100644 index 0000000..9eaac1d Binary files /dev/null and b/data/db/base/1/1259 differ diff --git a/data/db/base/1/1259_fsm b/data/db/base/1/1259_fsm new file mode 100644 index 0000000..05d8c51 Binary files /dev/null and b/data/db/base/1/1259_fsm differ diff --git a/data/db/base/1/1259_vm b/data/db/base/1/1259_vm new file mode 100644 index 0000000..c144ccf Binary files /dev/null and b/data/db/base/1/1259_vm differ diff --git a/data/db/base/1/13460 b/data/db/base/1/13460 new file mode 100644 index 0000000..e45417c Binary files /dev/null and b/data/db/base/1/13460 differ diff --git a/data/db/base/1/13460_fsm b/data/db/base/1/13460_fsm new file mode 100644 index 0000000..2a80b9a Binary files /dev/null and b/data/db/base/1/13460_fsm differ diff --git a/data/db/base/1/13460_vm b/data/db/base/1/13460_vm new file mode 100644 index 0000000..81f667b Binary files /dev/null and b/data/db/base/1/13460_vm differ diff --git a/data/db/base/1/13463 b/data/db/base/1/13463 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/13464 b/data/db/base/1/13464 new file mode 100644 index 0000000..c1b4577 Binary files /dev/null and b/data/db/base/1/13464 differ diff --git a/data/db/base/1/13465 b/data/db/base/1/13465 new file mode 100644 index 0000000..445e4ba Binary files /dev/null and b/data/db/base/1/13465 differ diff --git a/data/db/base/1/13465_fsm b/data/db/base/1/13465_fsm new file mode 100644 index 0000000..ce7c26e Binary files /dev/null and b/data/db/base/1/13465_fsm differ diff --git a/data/db/base/1/13465_vm b/data/db/base/1/13465_vm new file mode 100644 index 0000000..7836a65 Binary files /dev/null and b/data/db/base/1/13465_vm differ diff --git a/data/db/base/1/13468 b/data/db/base/1/13468 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/13469 b/data/db/base/1/13469 new file mode 100644 index 0000000..f36c5b1 Binary files /dev/null and b/data/db/base/1/13469 differ diff --git a/data/db/base/1/13470 b/data/db/base/1/13470 new file mode 100644 index 0000000..7f3e90e Binary files /dev/null and b/data/db/base/1/13470 differ diff --git a/data/db/base/1/13470_fsm b/data/db/base/1/13470_fsm new file mode 100644 index 0000000..0673ada Binary files /dev/null and b/data/db/base/1/13470_fsm differ diff --git a/data/db/base/1/13470_vm b/data/db/base/1/13470_vm new file mode 100644 index 0000000..e85447f Binary files /dev/null and b/data/db/base/1/13470_vm differ diff --git a/data/db/base/1/13473 b/data/db/base/1/13473 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/13474 b/data/db/base/1/13474 new file mode 100644 index 0000000..c72eeb1 Binary files /dev/null and b/data/db/base/1/13474 differ diff --git a/data/db/base/1/13475 b/data/db/base/1/13475 new file mode 100644 index 0000000..a79a68d Binary files /dev/null and b/data/db/base/1/13475 differ diff --git a/data/db/base/1/13475_fsm b/data/db/base/1/13475_fsm new file mode 100644 index 0000000..a836ddf Binary files /dev/null and b/data/db/base/1/13475_fsm differ diff --git a/data/db/base/1/13475_vm b/data/db/base/1/13475_vm new file mode 100644 index 0000000..ecf21c5 Binary files /dev/null and b/data/db/base/1/13475_vm differ diff --git a/data/db/base/1/13478 b/data/db/base/1/13478 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/13479 b/data/db/base/1/13479 new file mode 100644 index 0000000..7142efc Binary files /dev/null and b/data/db/base/1/13479 differ diff --git a/data/db/base/1/1417 b/data/db/base/1/1417 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/1418 b/data/db/base/1/1418 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/174 b/data/db/base/1/174 new file mode 100644 index 0000000..fedcb88 Binary files /dev/null and b/data/db/base/1/174 differ diff --git a/data/db/base/1/175 b/data/db/base/1/175 new file mode 100644 index 0000000..7ee5b4a Binary files /dev/null and b/data/db/base/1/175 differ diff --git a/data/db/base/1/2187 b/data/db/base/1/2187 new file mode 100644 index 0000000..77d8c76 Binary files /dev/null and b/data/db/base/1/2187 differ diff --git a/data/db/base/1/2224 b/data/db/base/1/2224 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/2228 b/data/db/base/1/2228 new file mode 100644 index 0000000..738f259 Binary files /dev/null and b/data/db/base/1/2228 differ diff --git a/data/db/base/1/2328 b/data/db/base/1/2328 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/2336 b/data/db/base/1/2336 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/2337 b/data/db/base/1/2337 new file mode 100644 index 0000000..b706ef8 Binary files /dev/null and b/data/db/base/1/2337 differ diff --git a/data/db/base/1/2579 b/data/db/base/1/2579 new file mode 100644 index 0000000..48c7adb Binary files /dev/null and b/data/db/base/1/2579 differ diff --git a/data/db/base/1/2600 b/data/db/base/1/2600 new file mode 100644 index 0000000..d98ee62 Binary files /dev/null and b/data/db/base/1/2600 differ diff --git a/data/db/base/1/2600_fsm b/data/db/base/1/2600_fsm new file mode 100644 index 0000000..0938592 Binary files /dev/null and b/data/db/base/1/2600_fsm differ diff --git a/data/db/base/1/2600_vm b/data/db/base/1/2600_vm new file mode 100644 index 0000000..1cfb499 Binary files /dev/null and b/data/db/base/1/2600_vm differ diff --git a/data/db/base/1/2601 b/data/db/base/1/2601 new file mode 100644 index 0000000..d8001c8 Binary files /dev/null and b/data/db/base/1/2601 differ diff --git a/data/db/base/1/2601_fsm b/data/db/base/1/2601_fsm new file mode 100644 index 0000000..d388044 Binary files /dev/null and b/data/db/base/1/2601_fsm differ diff --git a/data/db/base/1/2601_vm b/data/db/base/1/2601_vm new file mode 100644 index 0000000..d164717 Binary files /dev/null and b/data/db/base/1/2601_vm differ diff --git a/data/db/base/1/2602 b/data/db/base/1/2602 new file mode 100644 index 0000000..4a27b0a Binary files /dev/null and b/data/db/base/1/2602 differ diff --git a/data/db/base/1/2602_fsm b/data/db/base/1/2602_fsm new file mode 100644 index 0000000..23170d8 Binary files /dev/null and b/data/db/base/1/2602_fsm differ diff --git a/data/db/base/1/2602_vm b/data/db/base/1/2602_vm new file mode 100644 index 0000000..26125f2 Binary files /dev/null and b/data/db/base/1/2602_vm differ diff --git a/data/db/base/1/2603 b/data/db/base/1/2603 new file mode 100644 index 0000000..d511af5 Binary files /dev/null and b/data/db/base/1/2603 differ diff --git a/data/db/base/1/2603_fsm b/data/db/base/1/2603_fsm new file mode 100644 index 0000000..949bd18 Binary files /dev/null and b/data/db/base/1/2603_fsm differ diff --git a/data/db/base/1/2603_vm b/data/db/base/1/2603_vm new file mode 100644 index 0000000..41d1283 Binary files /dev/null and b/data/db/base/1/2603_vm differ diff --git a/data/db/base/1/2604 b/data/db/base/1/2604 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/2605 b/data/db/base/1/2605 new file mode 100644 index 0000000..eeaa7ea Binary files /dev/null and b/data/db/base/1/2605 differ diff --git a/data/db/base/1/2605_fsm b/data/db/base/1/2605_fsm new file mode 100644 index 0000000..f3b92bf Binary files /dev/null and b/data/db/base/1/2605_fsm differ diff --git a/data/db/base/1/2605_vm b/data/db/base/1/2605_vm new file mode 100644 index 0000000..27c7a29 Binary files /dev/null and b/data/db/base/1/2605_vm differ diff --git a/data/db/base/1/2606 b/data/db/base/1/2606 new file mode 100644 index 0000000..e870d47 Binary files /dev/null and b/data/db/base/1/2606 differ diff --git a/data/db/base/1/2606_fsm b/data/db/base/1/2606_fsm new file mode 100644 index 0000000..267454e Binary files /dev/null and b/data/db/base/1/2606_fsm differ diff --git a/data/db/base/1/2606_vm b/data/db/base/1/2606_vm new file mode 100644 index 0000000..0114c0b Binary files /dev/null and b/data/db/base/1/2606_vm differ diff --git a/data/db/base/1/2607 b/data/db/base/1/2607 new file mode 100644 index 0000000..bfad49a Binary files /dev/null and b/data/db/base/1/2607 differ diff --git a/data/db/base/1/2607_fsm b/data/db/base/1/2607_fsm new file mode 100644 index 0000000..80ac8b1 Binary files /dev/null and b/data/db/base/1/2607_fsm differ diff --git a/data/db/base/1/2607_vm b/data/db/base/1/2607_vm new file mode 100644 index 0000000..1642dc7 Binary files /dev/null and b/data/db/base/1/2607_vm differ diff --git a/data/db/base/1/2608 b/data/db/base/1/2608 new file mode 100644 index 0000000..b8846d6 Binary files /dev/null and b/data/db/base/1/2608 differ diff --git a/data/db/base/1/2608_fsm b/data/db/base/1/2608_fsm new file mode 100644 index 0000000..95081cd Binary files /dev/null and b/data/db/base/1/2608_fsm differ diff --git a/data/db/base/1/2608_vm b/data/db/base/1/2608_vm new file mode 100644 index 0000000..de5b823 Binary files /dev/null and b/data/db/base/1/2608_vm differ diff --git a/data/db/base/1/2609 b/data/db/base/1/2609 new file mode 100644 index 0000000..6b611b9 Binary files /dev/null and b/data/db/base/1/2609 differ diff --git a/data/db/base/1/2609_fsm b/data/db/base/1/2609_fsm new file mode 100644 index 0000000..624979d Binary files /dev/null and b/data/db/base/1/2609_fsm differ diff --git a/data/db/base/1/2609_vm b/data/db/base/1/2609_vm new file mode 100644 index 0000000..94079b3 Binary files /dev/null and b/data/db/base/1/2609_vm differ diff --git a/data/db/base/1/2610 b/data/db/base/1/2610 new file mode 100644 index 0000000..b9c85e1 Binary files /dev/null and b/data/db/base/1/2610 differ diff --git a/data/db/base/1/2610_fsm b/data/db/base/1/2610_fsm new file mode 100644 index 0000000..ecbcb5f Binary files /dev/null and b/data/db/base/1/2610_fsm differ diff --git a/data/db/base/1/2610_vm b/data/db/base/1/2610_vm new file mode 100644 index 0000000..1f99737 Binary files /dev/null and b/data/db/base/1/2610_vm differ diff --git a/data/db/base/1/2611 b/data/db/base/1/2611 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/2612 b/data/db/base/1/2612 new file mode 100644 index 0000000..a0eaf2f Binary files /dev/null and b/data/db/base/1/2612 differ diff --git a/data/db/base/1/2612_fsm b/data/db/base/1/2612_fsm new file mode 100644 index 0000000..877976a Binary files /dev/null and b/data/db/base/1/2612_fsm differ diff --git a/data/db/base/1/2612_vm b/data/db/base/1/2612_vm new file mode 100644 index 0000000..f63723c Binary files /dev/null and b/data/db/base/1/2612_vm differ diff --git a/data/db/base/1/2613 b/data/db/base/1/2613 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/2615 b/data/db/base/1/2615 new file mode 100644 index 0000000..4fcf163 Binary files /dev/null and b/data/db/base/1/2615 differ diff --git a/data/db/base/1/2615_fsm b/data/db/base/1/2615_fsm new file mode 100644 index 0000000..d041693 Binary files /dev/null and b/data/db/base/1/2615_fsm differ diff --git a/data/db/base/1/2615_vm b/data/db/base/1/2615_vm new file mode 100644 index 0000000..52e94f1 Binary files /dev/null and b/data/db/base/1/2615_vm differ diff --git a/data/db/base/1/2616 b/data/db/base/1/2616 new file mode 100644 index 0000000..0d60d79 Binary files /dev/null and b/data/db/base/1/2616 differ diff --git a/data/db/base/1/2616_fsm b/data/db/base/1/2616_fsm new file mode 100644 index 0000000..cb924c9 Binary files /dev/null and b/data/db/base/1/2616_fsm differ diff --git a/data/db/base/1/2616_vm b/data/db/base/1/2616_vm new file mode 100644 index 0000000..17caf7b Binary files /dev/null and b/data/db/base/1/2616_vm differ diff --git a/data/db/base/1/2617 b/data/db/base/1/2617 new file mode 100644 index 0000000..bcdfc18 Binary files /dev/null and b/data/db/base/1/2617 differ diff --git a/data/db/base/1/2617_fsm b/data/db/base/1/2617_fsm new file mode 100644 index 0000000..29d6066 Binary files /dev/null and b/data/db/base/1/2617_fsm differ diff --git a/data/db/base/1/2617_vm b/data/db/base/1/2617_vm new file mode 100644 index 0000000..c784720 Binary files /dev/null and b/data/db/base/1/2617_vm differ diff --git a/data/db/base/1/2618 b/data/db/base/1/2618 new file mode 100644 index 0000000..7d2f38d Binary files /dev/null and b/data/db/base/1/2618 differ diff --git a/data/db/base/1/2618_fsm b/data/db/base/1/2618_fsm new file mode 100644 index 0000000..bcee926 Binary files /dev/null and b/data/db/base/1/2618_fsm differ diff --git a/data/db/base/1/2618_vm b/data/db/base/1/2618_vm new file mode 100644 index 0000000..4832d2f Binary files /dev/null and b/data/db/base/1/2618_vm differ diff --git a/data/db/base/1/2619 b/data/db/base/1/2619 new file mode 100644 index 0000000..0cc24f5 Binary files /dev/null and b/data/db/base/1/2619 differ diff --git a/data/db/base/1/2619_fsm b/data/db/base/1/2619_fsm new file mode 100644 index 0000000..3de9931 Binary files /dev/null and b/data/db/base/1/2619_fsm differ diff --git a/data/db/base/1/2619_vm b/data/db/base/1/2619_vm new file mode 100644 index 0000000..f67c5a3 Binary files /dev/null and b/data/db/base/1/2619_vm differ diff --git a/data/db/base/1/2620 b/data/db/base/1/2620 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/2650 b/data/db/base/1/2650 new file mode 100644 index 0000000..ef4f21b Binary files /dev/null and b/data/db/base/1/2650 differ diff --git a/data/db/base/1/2651 b/data/db/base/1/2651 new file mode 100644 index 0000000..9d21e32 Binary files /dev/null and b/data/db/base/1/2651 differ diff --git a/data/db/base/1/2652 b/data/db/base/1/2652 new file mode 100644 index 0000000..ab6e13e Binary files /dev/null and b/data/db/base/1/2652 differ diff --git a/data/db/base/1/2653 b/data/db/base/1/2653 new file mode 100644 index 0000000..4c032c8 Binary files /dev/null and b/data/db/base/1/2653 differ diff --git a/data/db/base/1/2654 b/data/db/base/1/2654 new file mode 100644 index 0000000..53aa6fc Binary files /dev/null and b/data/db/base/1/2654 differ diff --git a/data/db/base/1/2655 b/data/db/base/1/2655 new file mode 100644 index 0000000..0b22aae Binary files /dev/null and b/data/db/base/1/2655 differ diff --git a/data/db/base/1/2656 b/data/db/base/1/2656 new file mode 100644 index 0000000..0e2e0bc Binary files /dev/null and b/data/db/base/1/2656 differ diff --git a/data/db/base/1/2657 b/data/db/base/1/2657 new file mode 100644 index 0000000..a87fd85 Binary files /dev/null and b/data/db/base/1/2657 differ diff --git a/data/db/base/1/2658 b/data/db/base/1/2658 new file mode 100644 index 0000000..47ed9cd Binary files /dev/null and b/data/db/base/1/2658 differ diff --git a/data/db/base/1/2659 b/data/db/base/1/2659 new file mode 100644 index 0000000..540409d Binary files /dev/null and b/data/db/base/1/2659 differ diff --git a/data/db/base/1/2660 b/data/db/base/1/2660 new file mode 100644 index 0000000..3a7a1d2 Binary files /dev/null and b/data/db/base/1/2660 differ diff --git a/data/db/base/1/2661 b/data/db/base/1/2661 new file mode 100644 index 0000000..aa5178a Binary files /dev/null and b/data/db/base/1/2661 differ diff --git a/data/db/base/1/2662 b/data/db/base/1/2662 new file mode 100644 index 0000000..61049ce Binary files /dev/null and b/data/db/base/1/2662 differ diff --git a/data/db/base/1/2663 b/data/db/base/1/2663 new file mode 100644 index 0000000..ca3bb22 Binary files /dev/null and b/data/db/base/1/2663 differ diff --git a/data/db/base/1/2664 b/data/db/base/1/2664 new file mode 100644 index 0000000..6aa9639 Binary files /dev/null and b/data/db/base/1/2664 differ diff --git a/data/db/base/1/2665 b/data/db/base/1/2665 new file mode 100644 index 0000000..c659a87 Binary files /dev/null and b/data/db/base/1/2665 differ diff --git a/data/db/base/1/2666 b/data/db/base/1/2666 new file mode 100644 index 0000000..6597090 Binary files /dev/null and b/data/db/base/1/2666 differ diff --git a/data/db/base/1/2667 b/data/db/base/1/2667 new file mode 100644 index 0000000..ca81554 Binary files /dev/null and b/data/db/base/1/2667 differ diff --git a/data/db/base/1/2668 b/data/db/base/1/2668 new file mode 100644 index 0000000..c5baf1d Binary files /dev/null and b/data/db/base/1/2668 differ diff --git a/data/db/base/1/2669 b/data/db/base/1/2669 new file mode 100644 index 0000000..7379bc3 Binary files /dev/null and b/data/db/base/1/2669 differ diff --git a/data/db/base/1/2670 b/data/db/base/1/2670 new file mode 100644 index 0000000..5b35b4d Binary files /dev/null and b/data/db/base/1/2670 differ diff --git a/data/db/base/1/2673 b/data/db/base/1/2673 new file mode 100644 index 0000000..ebc9fb6 Binary files /dev/null and b/data/db/base/1/2673 differ diff --git a/data/db/base/1/2674 b/data/db/base/1/2674 new file mode 100644 index 0000000..1d0f39e Binary files /dev/null and b/data/db/base/1/2674 differ diff --git a/data/db/base/1/2675 b/data/db/base/1/2675 new file mode 100644 index 0000000..e86d993 Binary files /dev/null and b/data/db/base/1/2675 differ diff --git a/data/db/base/1/2678 b/data/db/base/1/2678 new file mode 100644 index 0000000..6fae80b Binary files /dev/null and b/data/db/base/1/2678 differ diff --git a/data/db/base/1/2679 b/data/db/base/1/2679 new file mode 100644 index 0000000..b5dab80 Binary files /dev/null and b/data/db/base/1/2679 differ diff --git a/data/db/base/1/2680 b/data/db/base/1/2680 new file mode 100644 index 0000000..e15ddb4 Binary files /dev/null and b/data/db/base/1/2680 differ diff --git a/data/db/base/1/2681 b/data/db/base/1/2681 new file mode 100644 index 0000000..df82b84 Binary files /dev/null and b/data/db/base/1/2681 differ diff --git a/data/db/base/1/2682 b/data/db/base/1/2682 new file mode 100644 index 0000000..69af478 Binary files /dev/null and b/data/db/base/1/2682 differ diff --git a/data/db/base/1/2683 b/data/db/base/1/2683 new file mode 100644 index 0000000..014cbee Binary files /dev/null and b/data/db/base/1/2683 differ diff --git a/data/db/base/1/2684 b/data/db/base/1/2684 new file mode 100644 index 0000000..8be7c08 Binary files /dev/null and b/data/db/base/1/2684 differ diff --git a/data/db/base/1/2685 b/data/db/base/1/2685 new file mode 100644 index 0000000..ce8da2e Binary files /dev/null and b/data/db/base/1/2685 differ diff --git a/data/db/base/1/2686 b/data/db/base/1/2686 new file mode 100644 index 0000000..51e4357 Binary files /dev/null and b/data/db/base/1/2686 differ diff --git a/data/db/base/1/2687 b/data/db/base/1/2687 new file mode 100644 index 0000000..8df59d1 Binary files /dev/null and b/data/db/base/1/2687 differ diff --git a/data/db/base/1/2688 b/data/db/base/1/2688 new file mode 100644 index 0000000..f5448dc Binary files /dev/null and b/data/db/base/1/2688 differ diff --git a/data/db/base/1/2689 b/data/db/base/1/2689 new file mode 100644 index 0000000..8f8223b Binary files /dev/null and b/data/db/base/1/2689 differ diff --git a/data/db/base/1/2690 b/data/db/base/1/2690 new file mode 100644 index 0000000..dac708a Binary files /dev/null and b/data/db/base/1/2690 differ diff --git a/data/db/base/1/2691 b/data/db/base/1/2691 new file mode 100644 index 0000000..ec9de86 Binary files /dev/null and b/data/db/base/1/2691 differ diff --git a/data/db/base/1/2692 b/data/db/base/1/2692 new file mode 100644 index 0000000..cce771d Binary files /dev/null and b/data/db/base/1/2692 differ diff --git a/data/db/base/1/2693 b/data/db/base/1/2693 new file mode 100644 index 0000000..84272cd Binary files /dev/null and b/data/db/base/1/2693 differ diff --git a/data/db/base/1/2696 b/data/db/base/1/2696 new file mode 100644 index 0000000..fbef8f3 Binary files /dev/null and b/data/db/base/1/2696 differ diff --git a/data/db/base/1/2699 b/data/db/base/1/2699 new file mode 100644 index 0000000..8417313 Binary files /dev/null and b/data/db/base/1/2699 differ diff --git a/data/db/base/1/2701 b/data/db/base/1/2701 new file mode 100644 index 0000000..8892de2 Binary files /dev/null and b/data/db/base/1/2701 differ diff --git a/data/db/base/1/2702 b/data/db/base/1/2702 new file mode 100644 index 0000000..c40e5aa Binary files /dev/null and b/data/db/base/1/2702 differ diff --git a/data/db/base/1/2703 b/data/db/base/1/2703 new file mode 100644 index 0000000..b2068a0 Binary files /dev/null and b/data/db/base/1/2703 differ diff --git a/data/db/base/1/2704 b/data/db/base/1/2704 new file mode 100644 index 0000000..3c9f0b7 Binary files /dev/null and b/data/db/base/1/2704 differ diff --git a/data/db/base/1/2753 b/data/db/base/1/2753 new file mode 100644 index 0000000..3c16dff Binary files /dev/null and b/data/db/base/1/2753 differ diff --git a/data/db/base/1/2753_fsm b/data/db/base/1/2753_fsm new file mode 100644 index 0000000..642bce3 Binary files /dev/null and b/data/db/base/1/2753_fsm differ diff --git a/data/db/base/1/2753_vm b/data/db/base/1/2753_vm new file mode 100644 index 0000000..7771455 Binary files /dev/null and b/data/db/base/1/2753_vm differ diff --git a/data/db/base/1/2754 b/data/db/base/1/2754 new file mode 100644 index 0000000..f3df39d Binary files /dev/null and b/data/db/base/1/2754 differ diff --git a/data/db/base/1/2755 b/data/db/base/1/2755 new file mode 100644 index 0000000..cc671dc Binary files /dev/null and b/data/db/base/1/2755 differ diff --git a/data/db/base/1/2756 b/data/db/base/1/2756 new file mode 100644 index 0000000..6a6c87e Binary files /dev/null and b/data/db/base/1/2756 differ diff --git a/data/db/base/1/2757 b/data/db/base/1/2757 new file mode 100644 index 0000000..57830cb Binary files /dev/null and b/data/db/base/1/2757 differ diff --git a/data/db/base/1/2830 b/data/db/base/1/2830 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/2831 b/data/db/base/1/2831 new file mode 100644 index 0000000..6c30e94 Binary files /dev/null and b/data/db/base/1/2831 differ diff --git a/data/db/base/1/2832 b/data/db/base/1/2832 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/2833 b/data/db/base/1/2833 new file mode 100644 index 0000000..e364449 Binary files /dev/null and b/data/db/base/1/2833 differ diff --git a/data/db/base/1/2834 b/data/db/base/1/2834 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/2835 b/data/db/base/1/2835 new file mode 100644 index 0000000..b028c65 Binary files /dev/null and b/data/db/base/1/2835 differ diff --git a/data/db/base/1/2836 b/data/db/base/1/2836 new file mode 100644 index 0000000..ff9b62f Binary files /dev/null and b/data/db/base/1/2836 differ diff --git a/data/db/base/1/2836_fsm b/data/db/base/1/2836_fsm new file mode 100644 index 0000000..06e1e26 Binary files /dev/null and b/data/db/base/1/2836_fsm differ diff --git a/data/db/base/1/2836_vm b/data/db/base/1/2836_vm new file mode 100644 index 0000000..3f8c31e Binary files /dev/null and b/data/db/base/1/2836_vm differ diff --git a/data/db/base/1/2837 b/data/db/base/1/2837 new file mode 100644 index 0000000..a6d62ac Binary files /dev/null and b/data/db/base/1/2837 differ diff --git a/data/db/base/1/2838 b/data/db/base/1/2838 new file mode 100644 index 0000000..99ece20 Binary files /dev/null and b/data/db/base/1/2838 differ diff --git a/data/db/base/1/2838_fsm b/data/db/base/1/2838_fsm new file mode 100644 index 0000000..08a4f77 Binary files /dev/null and b/data/db/base/1/2838_fsm differ diff --git a/data/db/base/1/2838_vm b/data/db/base/1/2838_vm new file mode 100644 index 0000000..0a0a05f Binary files /dev/null and b/data/db/base/1/2838_vm differ diff --git a/data/db/base/1/2839 b/data/db/base/1/2839 new file mode 100644 index 0000000..253bde3 Binary files /dev/null and b/data/db/base/1/2839 differ diff --git a/data/db/base/1/2840 b/data/db/base/1/2840 new file mode 100644 index 0000000..5a8ecdb Binary files /dev/null and b/data/db/base/1/2840 differ diff --git a/data/db/base/1/2840_fsm b/data/db/base/1/2840_fsm new file mode 100644 index 0000000..6a8cb34 Binary files /dev/null and b/data/db/base/1/2840_fsm differ diff --git a/data/db/base/1/2840_vm b/data/db/base/1/2840_vm new file mode 100644 index 0000000..4a66a47 Binary files /dev/null and b/data/db/base/1/2840_vm differ diff --git a/data/db/base/1/2841 b/data/db/base/1/2841 new file mode 100644 index 0000000..8835325 Binary files /dev/null and b/data/db/base/1/2841 differ diff --git a/data/db/base/1/2995 b/data/db/base/1/2995 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/2996 b/data/db/base/1/2996 new file mode 100644 index 0000000..9bd6faf Binary files /dev/null and b/data/db/base/1/2996 differ diff --git a/data/db/base/1/3079 b/data/db/base/1/3079 new file mode 100644 index 0000000..cba9a19 Binary files /dev/null and b/data/db/base/1/3079 differ diff --git a/data/db/base/1/3079_fsm b/data/db/base/1/3079_fsm new file mode 100644 index 0000000..7732d22 Binary files /dev/null and b/data/db/base/1/3079_fsm differ diff --git a/data/db/base/1/3079_vm b/data/db/base/1/3079_vm new file mode 100644 index 0000000..42e1a7f Binary files /dev/null and b/data/db/base/1/3079_vm differ diff --git a/data/db/base/1/3080 b/data/db/base/1/3080 new file mode 100644 index 0000000..797ce5a Binary files /dev/null and b/data/db/base/1/3080 differ diff --git a/data/db/base/1/3081 b/data/db/base/1/3081 new file mode 100644 index 0000000..460f144 Binary files /dev/null and b/data/db/base/1/3081 differ diff --git a/data/db/base/1/3085 b/data/db/base/1/3085 new file mode 100644 index 0000000..ddfa860 Binary files /dev/null and b/data/db/base/1/3085 differ diff --git a/data/db/base/1/3118 b/data/db/base/1/3118 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3119 b/data/db/base/1/3119 new file mode 100644 index 0000000..8524de7 Binary files /dev/null and b/data/db/base/1/3119 differ diff --git a/data/db/base/1/3164 b/data/db/base/1/3164 new file mode 100644 index 0000000..97cb333 Binary files /dev/null and b/data/db/base/1/3164 differ diff --git a/data/db/base/1/3256 b/data/db/base/1/3256 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3257 b/data/db/base/1/3257 new file mode 100644 index 0000000..6f325ab Binary files /dev/null and b/data/db/base/1/3257 differ diff --git a/data/db/base/1/3258 b/data/db/base/1/3258 new file mode 100644 index 0000000..10c3c94 Binary files /dev/null and b/data/db/base/1/3258 differ diff --git a/data/db/base/1/3350 b/data/db/base/1/3350 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3351 b/data/db/base/1/3351 new file mode 100644 index 0000000..2bfef7f Binary files /dev/null and b/data/db/base/1/3351 differ diff --git a/data/db/base/1/3379 b/data/db/base/1/3379 new file mode 100644 index 0000000..b41a45f Binary files /dev/null and b/data/db/base/1/3379 differ diff --git a/data/db/base/1/3380 b/data/db/base/1/3380 new file mode 100644 index 0000000..f9d290e Binary files /dev/null and b/data/db/base/1/3380 differ diff --git a/data/db/base/1/3381 b/data/db/base/1/3381 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3394 b/data/db/base/1/3394 new file mode 100644 index 0000000..a97eead Binary files /dev/null and b/data/db/base/1/3394 differ diff --git a/data/db/base/1/3394_fsm b/data/db/base/1/3394_fsm new file mode 100644 index 0000000..38ac5f8 Binary files /dev/null and b/data/db/base/1/3394_fsm differ diff --git a/data/db/base/1/3394_vm b/data/db/base/1/3394_vm new file mode 100644 index 0000000..d6cfe83 Binary files /dev/null and b/data/db/base/1/3394_vm differ diff --git a/data/db/base/1/3395 b/data/db/base/1/3395 new file mode 100644 index 0000000..cfadb5e Binary files /dev/null and b/data/db/base/1/3395 differ diff --git a/data/db/base/1/3429 b/data/db/base/1/3429 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3430 b/data/db/base/1/3430 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3431 b/data/db/base/1/3431 new file mode 100644 index 0000000..a890bbf Binary files /dev/null and b/data/db/base/1/3431 differ diff --git a/data/db/base/1/3433 b/data/db/base/1/3433 new file mode 100644 index 0000000..b9e444b Binary files /dev/null and b/data/db/base/1/3433 differ diff --git a/data/db/base/1/3439 b/data/db/base/1/3439 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3440 b/data/db/base/1/3440 new file mode 100644 index 0000000..5b55040 Binary files /dev/null and b/data/db/base/1/3440 differ diff --git a/data/db/base/1/3455 b/data/db/base/1/3455 new file mode 100644 index 0000000..3ed36de Binary files /dev/null and b/data/db/base/1/3455 differ diff --git a/data/db/base/1/3456 b/data/db/base/1/3456 new file mode 100644 index 0000000..edaea1b Binary files /dev/null and b/data/db/base/1/3456 differ diff --git a/data/db/base/1/3456_fsm b/data/db/base/1/3456_fsm new file mode 100644 index 0000000..d66e019 Binary files /dev/null and b/data/db/base/1/3456_fsm differ diff --git a/data/db/base/1/3456_vm b/data/db/base/1/3456_vm new file mode 100644 index 0000000..ba61a7a Binary files /dev/null and b/data/db/base/1/3456_vm differ diff --git a/data/db/base/1/3466 b/data/db/base/1/3466 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3467 b/data/db/base/1/3467 new file mode 100644 index 0000000..188a5e6 Binary files /dev/null and b/data/db/base/1/3467 differ diff --git a/data/db/base/1/3468 b/data/db/base/1/3468 new file mode 100644 index 0000000..00d26fe Binary files /dev/null and b/data/db/base/1/3468 differ diff --git a/data/db/base/1/3501 b/data/db/base/1/3501 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3502 b/data/db/base/1/3502 new file mode 100644 index 0000000..51e62aa Binary files /dev/null and b/data/db/base/1/3502 differ diff --git a/data/db/base/1/3503 b/data/db/base/1/3503 new file mode 100644 index 0000000..818ee9e Binary files /dev/null and b/data/db/base/1/3503 differ diff --git a/data/db/base/1/3534 b/data/db/base/1/3534 new file mode 100644 index 0000000..338d308 Binary files /dev/null and b/data/db/base/1/3534 differ diff --git a/data/db/base/1/3541 b/data/db/base/1/3541 new file mode 100644 index 0000000..40869ad Binary files /dev/null and b/data/db/base/1/3541 differ diff --git a/data/db/base/1/3541_fsm b/data/db/base/1/3541_fsm new file mode 100644 index 0000000..a3a2de4 Binary files /dev/null and b/data/db/base/1/3541_fsm differ diff --git a/data/db/base/1/3541_vm b/data/db/base/1/3541_vm new file mode 100644 index 0000000..5d23ec3 Binary files /dev/null and b/data/db/base/1/3541_vm differ diff --git a/data/db/base/1/3542 b/data/db/base/1/3542 new file mode 100644 index 0000000..ced0066 Binary files /dev/null and b/data/db/base/1/3542 differ diff --git a/data/db/base/1/3574 b/data/db/base/1/3574 new file mode 100644 index 0000000..b026df1 Binary files /dev/null and b/data/db/base/1/3574 differ diff --git a/data/db/base/1/3575 b/data/db/base/1/3575 new file mode 100644 index 0000000..bdec532 Binary files /dev/null and b/data/db/base/1/3575 differ diff --git a/data/db/base/1/3576 b/data/db/base/1/3576 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3596 b/data/db/base/1/3596 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3597 b/data/db/base/1/3597 new file mode 100644 index 0000000..6947306 Binary files /dev/null and b/data/db/base/1/3597 differ diff --git a/data/db/base/1/3598 b/data/db/base/1/3598 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/3599 b/data/db/base/1/3599 new file mode 100644 index 0000000..32bf577 Binary files /dev/null and b/data/db/base/1/3599 differ diff --git a/data/db/base/1/3600 b/data/db/base/1/3600 new file mode 100644 index 0000000..925baac Binary files /dev/null and b/data/db/base/1/3600 differ diff --git a/data/db/base/1/3600_fsm b/data/db/base/1/3600_fsm new file mode 100644 index 0000000..cebec19 Binary files /dev/null and b/data/db/base/1/3600_fsm differ diff --git a/data/db/base/1/3600_vm b/data/db/base/1/3600_vm new file mode 100644 index 0000000..9a4a4bf Binary files /dev/null and b/data/db/base/1/3600_vm differ diff --git a/data/db/base/1/3601 b/data/db/base/1/3601 new file mode 100644 index 0000000..04c846e Binary files /dev/null and b/data/db/base/1/3601 differ diff --git a/data/db/base/1/3601_fsm b/data/db/base/1/3601_fsm new file mode 100644 index 0000000..7732d22 Binary files /dev/null and b/data/db/base/1/3601_fsm differ diff --git a/data/db/base/1/3601_vm b/data/db/base/1/3601_vm new file mode 100644 index 0000000..3bac5ad Binary files /dev/null and b/data/db/base/1/3601_vm differ diff --git a/data/db/base/1/3602 b/data/db/base/1/3602 new file mode 100644 index 0000000..71e243f Binary files /dev/null and b/data/db/base/1/3602 differ diff --git a/data/db/base/1/3602_fsm b/data/db/base/1/3602_fsm new file mode 100644 index 0000000..d7897de Binary files /dev/null and b/data/db/base/1/3602_fsm differ diff --git a/data/db/base/1/3602_vm b/data/db/base/1/3602_vm new file mode 100644 index 0000000..d5fb3e5 Binary files /dev/null and b/data/db/base/1/3602_vm differ diff --git a/data/db/base/1/3603 b/data/db/base/1/3603 new file mode 100644 index 0000000..850a484 Binary files /dev/null and b/data/db/base/1/3603 differ diff --git a/data/db/base/1/3603_fsm b/data/db/base/1/3603_fsm new file mode 100644 index 0000000..c28dd4f Binary files /dev/null and b/data/db/base/1/3603_fsm differ diff --git a/data/db/base/1/3603_vm b/data/db/base/1/3603_vm new file mode 100644 index 0000000..5207c83 Binary files /dev/null and b/data/db/base/1/3603_vm differ diff --git a/data/db/base/1/3604 b/data/db/base/1/3604 new file mode 100644 index 0000000..99f1f36 Binary files /dev/null and b/data/db/base/1/3604 differ diff --git a/data/db/base/1/3605 b/data/db/base/1/3605 new file mode 100644 index 0000000..680237b Binary files /dev/null and b/data/db/base/1/3605 differ diff --git a/data/db/base/1/3606 b/data/db/base/1/3606 new file mode 100644 index 0000000..5d00237 Binary files /dev/null and b/data/db/base/1/3606 differ diff --git a/data/db/base/1/3607 b/data/db/base/1/3607 new file mode 100644 index 0000000..3a1af44 Binary files /dev/null and b/data/db/base/1/3607 differ diff --git a/data/db/base/1/3608 b/data/db/base/1/3608 new file mode 100644 index 0000000..504ad28 Binary files /dev/null and b/data/db/base/1/3608 differ diff --git a/data/db/base/1/3609 b/data/db/base/1/3609 new file mode 100644 index 0000000..980b082 Binary files /dev/null and b/data/db/base/1/3609 differ diff --git a/data/db/base/1/3712 b/data/db/base/1/3712 new file mode 100644 index 0000000..8c0b34b Binary files /dev/null and b/data/db/base/1/3712 differ diff --git a/data/db/base/1/3764 b/data/db/base/1/3764 new file mode 100644 index 0000000..e77d9d7 Binary files /dev/null and b/data/db/base/1/3764 differ diff --git a/data/db/base/1/3764_fsm b/data/db/base/1/3764_fsm new file mode 100644 index 0000000..f64db4d Binary files /dev/null and b/data/db/base/1/3764_fsm differ diff --git a/data/db/base/1/3764_vm b/data/db/base/1/3764_vm new file mode 100644 index 0000000..989c5e0 Binary files /dev/null and b/data/db/base/1/3764_vm differ diff --git a/data/db/base/1/3766 b/data/db/base/1/3766 new file mode 100644 index 0000000..5281a51 Binary files /dev/null and b/data/db/base/1/3766 differ diff --git a/data/db/base/1/3767 b/data/db/base/1/3767 new file mode 100644 index 0000000..e183846 Binary files /dev/null and b/data/db/base/1/3767 differ diff --git a/data/db/base/1/3997 b/data/db/base/1/3997 new file mode 100644 index 0000000..28b5b4b Binary files /dev/null and b/data/db/base/1/3997 differ diff --git a/data/db/base/1/4143 b/data/db/base/1/4143 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4144 b/data/db/base/1/4144 new file mode 100644 index 0000000..781f37a Binary files /dev/null and b/data/db/base/1/4144 differ diff --git a/data/db/base/1/4145 b/data/db/base/1/4145 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4146 b/data/db/base/1/4146 new file mode 100644 index 0000000..11ccf7e Binary files /dev/null and b/data/db/base/1/4146 differ diff --git a/data/db/base/1/4147 b/data/db/base/1/4147 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4148 b/data/db/base/1/4148 new file mode 100644 index 0000000..7fd05a8 Binary files /dev/null and b/data/db/base/1/4148 differ diff --git a/data/db/base/1/4149 b/data/db/base/1/4149 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4150 b/data/db/base/1/4150 new file mode 100644 index 0000000..10171f6 Binary files /dev/null and b/data/db/base/1/4150 differ diff --git a/data/db/base/1/4151 b/data/db/base/1/4151 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4152 b/data/db/base/1/4152 new file mode 100644 index 0000000..869a7f3 Binary files /dev/null and b/data/db/base/1/4152 differ diff --git a/data/db/base/1/4153 b/data/db/base/1/4153 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4154 b/data/db/base/1/4154 new file mode 100644 index 0000000..bb1dca3 Binary files /dev/null and b/data/db/base/1/4154 differ diff --git a/data/db/base/1/4155 b/data/db/base/1/4155 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4156 b/data/db/base/1/4156 new file mode 100644 index 0000000..839ab86 Binary files /dev/null and b/data/db/base/1/4156 differ diff --git a/data/db/base/1/4157 b/data/db/base/1/4157 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4158 b/data/db/base/1/4158 new file mode 100644 index 0000000..12e6868 Binary files /dev/null and b/data/db/base/1/4158 differ diff --git a/data/db/base/1/4159 b/data/db/base/1/4159 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4160 b/data/db/base/1/4160 new file mode 100644 index 0000000..8b80112 Binary files /dev/null and b/data/db/base/1/4160 differ diff --git a/data/db/base/1/4163 b/data/db/base/1/4163 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4164 b/data/db/base/1/4164 new file mode 100644 index 0000000..e86ba95 Binary files /dev/null and b/data/db/base/1/4164 differ diff --git a/data/db/base/1/4165 b/data/db/base/1/4165 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4166 b/data/db/base/1/4166 new file mode 100644 index 0000000..f5fc2b6 Binary files /dev/null and b/data/db/base/1/4166 differ diff --git a/data/db/base/1/4167 b/data/db/base/1/4167 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4168 b/data/db/base/1/4168 new file mode 100644 index 0000000..fdfe146 Binary files /dev/null and b/data/db/base/1/4168 differ diff --git a/data/db/base/1/4169 b/data/db/base/1/4169 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4170 b/data/db/base/1/4170 new file mode 100644 index 0000000..797418b Binary files /dev/null and b/data/db/base/1/4170 differ diff --git a/data/db/base/1/4171 b/data/db/base/1/4171 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4172 b/data/db/base/1/4172 new file mode 100644 index 0000000..969a191 Binary files /dev/null and b/data/db/base/1/4172 differ diff --git a/data/db/base/1/4173 b/data/db/base/1/4173 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/4174 b/data/db/base/1/4174 new file mode 100644 index 0000000..3c4beb7 Binary files /dev/null and b/data/db/base/1/4174 differ diff --git a/data/db/base/1/5002 b/data/db/base/1/5002 new file mode 100644 index 0000000..aefa40d Binary files /dev/null and b/data/db/base/1/5002 differ diff --git a/data/db/base/1/548 b/data/db/base/1/548 new file mode 100644 index 0000000..d6379eb Binary files /dev/null and b/data/db/base/1/548 differ diff --git a/data/db/base/1/549 b/data/db/base/1/549 new file mode 100644 index 0000000..a762ad9 Binary files /dev/null and b/data/db/base/1/549 differ diff --git a/data/db/base/1/6102 b/data/db/base/1/6102 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/6104 b/data/db/base/1/6104 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/6106 b/data/db/base/1/6106 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/6110 b/data/db/base/1/6110 new file mode 100644 index 0000000..42e1920 Binary files /dev/null and b/data/db/base/1/6110 differ diff --git a/data/db/base/1/6111 b/data/db/base/1/6111 new file mode 100644 index 0000000..d012727 Binary files /dev/null and b/data/db/base/1/6111 differ diff --git a/data/db/base/1/6112 b/data/db/base/1/6112 new file mode 100644 index 0000000..293367c Binary files /dev/null and b/data/db/base/1/6112 differ diff --git a/data/db/base/1/6113 b/data/db/base/1/6113 new file mode 100644 index 0000000..542f8fa Binary files /dev/null and b/data/db/base/1/6113 differ diff --git a/data/db/base/1/6116 b/data/db/base/1/6116 new file mode 100644 index 0000000..787d5d1 Binary files /dev/null and b/data/db/base/1/6116 differ diff --git a/data/db/base/1/6117 b/data/db/base/1/6117 new file mode 100644 index 0000000..2b5656b Binary files /dev/null and b/data/db/base/1/6117 differ diff --git a/data/db/base/1/6175 b/data/db/base/1/6175 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/6176 b/data/db/base/1/6176 new file mode 100644 index 0000000..34cba03 Binary files /dev/null and b/data/db/base/1/6176 differ diff --git a/data/db/base/1/6228 b/data/db/base/1/6228 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/6229 b/data/db/base/1/6229 new file mode 100644 index 0000000..4839713 Binary files /dev/null and b/data/db/base/1/6229 differ diff --git a/data/db/base/1/6237 b/data/db/base/1/6237 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/6238 b/data/db/base/1/6238 new file mode 100644 index 0000000..e7c0e8c Binary files /dev/null and b/data/db/base/1/6238 differ diff --git a/data/db/base/1/6239 b/data/db/base/1/6239 new file mode 100644 index 0000000..6c60b50 Binary files /dev/null and b/data/db/base/1/6239 differ diff --git a/data/db/base/1/826 b/data/db/base/1/826 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/1/827 b/data/db/base/1/827 new file mode 100644 index 0000000..bcaf0a1 Binary files /dev/null and b/data/db/base/1/827 differ diff --git a/data/db/base/1/828 b/data/db/base/1/828 new file mode 100644 index 0000000..7aba562 Binary files /dev/null and b/data/db/base/1/828 differ diff --git a/data/db/base/1/PG_VERSION b/data/db/base/1/PG_VERSION new file mode 100644 index 0000000..b6a7d89 --- /dev/null +++ b/data/db/base/1/PG_VERSION @@ -0,0 +1 @@ +16 diff --git a/data/db/base/1/pg_filenode.map b/data/db/base/1/pg_filenode.map new file mode 100644 index 0000000..4fc801a Binary files /dev/null and b/data/db/base/1/pg_filenode.map differ diff --git a/data/db/base/1/pg_internal.init b/data/db/base/1/pg_internal.init new file mode 100644 index 0000000..67661fc Binary files /dev/null and b/data/db/base/1/pg_internal.init differ diff --git a/data/db/base/16384/112 b/data/db/base/16384/112 new file mode 100644 index 0000000..0c809db Binary files /dev/null and b/data/db/base/16384/112 differ diff --git a/data/db/base/16384/113 b/data/db/base/16384/113 new file mode 100644 index 0000000..a2cf4bc Binary files /dev/null and b/data/db/base/16384/113 differ diff --git a/data/db/base/16384/1247 b/data/db/base/16384/1247 new file mode 100644 index 0000000..6047ed1 Binary files /dev/null and b/data/db/base/16384/1247 differ diff --git a/data/db/base/16384/1247_fsm b/data/db/base/16384/1247_fsm new file mode 100644 index 0000000..675892f Binary files /dev/null and b/data/db/base/16384/1247_fsm differ diff --git a/data/db/base/16384/1247_vm b/data/db/base/16384/1247_vm new file mode 100644 index 0000000..b83cb14 Binary files /dev/null and b/data/db/base/16384/1247_vm differ diff --git a/data/db/base/16384/1249 b/data/db/base/16384/1249 new file mode 100644 index 0000000..1959b52 Binary files /dev/null and b/data/db/base/16384/1249 differ diff --git a/data/db/base/16384/1249_fsm b/data/db/base/16384/1249_fsm new file mode 100644 index 0000000..fb2de62 Binary files /dev/null and b/data/db/base/16384/1249_fsm differ diff --git a/data/db/base/16384/1249_vm b/data/db/base/16384/1249_vm new file mode 100644 index 0000000..ccac260 Binary files /dev/null and b/data/db/base/16384/1249_vm differ diff --git a/data/db/base/16384/1255 b/data/db/base/16384/1255 new file mode 100644 index 0000000..b6a69c8 Binary files /dev/null and b/data/db/base/16384/1255 differ diff --git a/data/db/base/16384/1255_fsm b/data/db/base/16384/1255_fsm new file mode 100644 index 0000000..0f795ec Binary files /dev/null and b/data/db/base/16384/1255_fsm differ diff --git a/data/db/base/16384/1255_vm b/data/db/base/16384/1255_vm new file mode 100644 index 0000000..c25bc0c Binary files /dev/null and b/data/db/base/16384/1255_vm differ diff --git a/data/db/base/16384/1259 b/data/db/base/16384/1259 new file mode 100644 index 0000000..cb1bbfa Binary files /dev/null and b/data/db/base/16384/1259 differ diff --git a/data/db/base/16384/1259_fsm b/data/db/base/16384/1259_fsm new file mode 100644 index 0000000..ddb6776 Binary files /dev/null and b/data/db/base/16384/1259_fsm differ diff --git a/data/db/base/16384/1259_vm b/data/db/base/16384/1259_vm new file mode 100644 index 0000000..7e44e7a Binary files /dev/null and b/data/db/base/16384/1259_vm differ diff --git a/data/db/base/16384/13460 b/data/db/base/16384/13460 new file mode 100644 index 0000000..1d1573e Binary files /dev/null and b/data/db/base/16384/13460 differ diff --git a/data/db/base/16384/13460_fsm b/data/db/base/16384/13460_fsm new file mode 100644 index 0000000..2c88d81 Binary files /dev/null and b/data/db/base/16384/13460_fsm differ diff --git a/data/db/base/16384/13460_vm b/data/db/base/16384/13460_vm new file mode 100644 index 0000000..bf1c106 Binary files /dev/null and b/data/db/base/16384/13460_vm differ diff --git a/data/db/base/16384/13463 b/data/db/base/16384/13463 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/13464 b/data/db/base/16384/13464 new file mode 100644 index 0000000..d912c01 Binary files /dev/null and b/data/db/base/16384/13464 differ diff --git a/data/db/base/16384/13465 b/data/db/base/16384/13465 new file mode 100644 index 0000000..3809eaf Binary files /dev/null and b/data/db/base/16384/13465 differ diff --git a/data/db/base/16384/13465_fsm b/data/db/base/16384/13465_fsm new file mode 100644 index 0000000..a204080 Binary files /dev/null and b/data/db/base/16384/13465_fsm differ diff --git a/data/db/base/16384/13465_vm b/data/db/base/16384/13465_vm new file mode 100644 index 0000000..0f568e2 Binary files /dev/null and b/data/db/base/16384/13465_vm differ diff --git a/data/db/base/16384/13468 b/data/db/base/16384/13468 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/13469 b/data/db/base/16384/13469 new file mode 100644 index 0000000..05f5376 Binary files /dev/null and b/data/db/base/16384/13469 differ diff --git a/data/db/base/16384/13470 b/data/db/base/16384/13470 new file mode 100644 index 0000000..a1db08a Binary files /dev/null and b/data/db/base/16384/13470 differ diff --git a/data/db/base/16384/13470_fsm b/data/db/base/16384/13470_fsm new file mode 100644 index 0000000..14218b4 Binary files /dev/null and b/data/db/base/16384/13470_fsm differ diff --git a/data/db/base/16384/13470_vm b/data/db/base/16384/13470_vm new file mode 100644 index 0000000..9523ef6 Binary files /dev/null and b/data/db/base/16384/13470_vm differ diff --git a/data/db/base/16384/13473 b/data/db/base/16384/13473 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/13474 b/data/db/base/16384/13474 new file mode 100644 index 0000000..276c1e1 Binary files /dev/null and b/data/db/base/16384/13474 differ diff --git a/data/db/base/16384/13475 b/data/db/base/16384/13475 new file mode 100644 index 0000000..98b0f34 Binary files /dev/null and b/data/db/base/16384/13475 differ diff --git a/data/db/base/16384/13475_fsm b/data/db/base/16384/13475_fsm new file mode 100644 index 0000000..61fda79 Binary files /dev/null and b/data/db/base/16384/13475_fsm differ diff --git a/data/db/base/16384/13475_vm b/data/db/base/16384/13475_vm new file mode 100644 index 0000000..606eceb Binary files /dev/null and b/data/db/base/16384/13475_vm differ diff --git a/data/db/base/16384/13478 b/data/db/base/16384/13478 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/13479 b/data/db/base/16384/13479 new file mode 100644 index 0000000..405a209 Binary files /dev/null and b/data/db/base/16384/13479 differ diff --git a/data/db/base/16384/1417 b/data/db/base/16384/1417 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/1418 b/data/db/base/16384/1418 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/174 b/data/db/base/16384/174 new file mode 100644 index 0000000..56e9619 Binary files /dev/null and b/data/db/base/16384/174 differ diff --git a/data/db/base/16384/175 b/data/db/base/16384/175 new file mode 100644 index 0000000..a872d88 Binary files /dev/null and b/data/db/base/16384/175 differ diff --git a/data/db/base/16384/2187 b/data/db/base/16384/2187 new file mode 100644 index 0000000..911d706 Binary files /dev/null and b/data/db/base/16384/2187 differ diff --git a/data/db/base/16384/2224 b/data/db/base/16384/2224 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/2228 b/data/db/base/16384/2228 new file mode 100644 index 0000000..c71d4a5 Binary files /dev/null and b/data/db/base/16384/2228 differ diff --git a/data/db/base/16384/2328 b/data/db/base/16384/2328 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/2336 b/data/db/base/16384/2336 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/2337 b/data/db/base/16384/2337 new file mode 100644 index 0000000..7dde889 Binary files /dev/null and b/data/db/base/16384/2337 differ diff --git a/data/db/base/16384/2579 b/data/db/base/16384/2579 new file mode 100644 index 0000000..d29adc7 Binary files /dev/null and b/data/db/base/16384/2579 differ diff --git a/data/db/base/16384/2600 b/data/db/base/16384/2600 new file mode 100644 index 0000000..cdd9759 Binary files /dev/null and b/data/db/base/16384/2600 differ diff --git a/data/db/base/16384/2600_fsm b/data/db/base/16384/2600_fsm new file mode 100644 index 0000000..5328da6 Binary files /dev/null and b/data/db/base/16384/2600_fsm differ diff --git a/data/db/base/16384/2600_vm b/data/db/base/16384/2600_vm new file mode 100644 index 0000000..4a29c58 Binary files /dev/null and b/data/db/base/16384/2600_vm differ diff --git a/data/db/base/16384/2601 b/data/db/base/16384/2601 new file mode 100644 index 0000000..3788521 Binary files /dev/null and b/data/db/base/16384/2601 differ diff --git a/data/db/base/16384/2601_fsm b/data/db/base/16384/2601_fsm new file mode 100644 index 0000000..6616f5c Binary files /dev/null and b/data/db/base/16384/2601_fsm differ diff --git a/data/db/base/16384/2601_vm b/data/db/base/16384/2601_vm new file mode 100644 index 0000000..1f1ab42 Binary files /dev/null and b/data/db/base/16384/2601_vm differ diff --git a/data/db/base/16384/2602 b/data/db/base/16384/2602 new file mode 100644 index 0000000..3e6e91a Binary files /dev/null and b/data/db/base/16384/2602 differ diff --git a/data/db/base/16384/2602_fsm b/data/db/base/16384/2602_fsm new file mode 100644 index 0000000..0571d08 Binary files /dev/null and b/data/db/base/16384/2602_fsm differ diff --git a/data/db/base/16384/2602_vm b/data/db/base/16384/2602_vm new file mode 100644 index 0000000..44fbf6b Binary files /dev/null and b/data/db/base/16384/2602_vm differ diff --git a/data/db/base/16384/2603 b/data/db/base/16384/2603 new file mode 100644 index 0000000..0bd102a Binary files /dev/null and b/data/db/base/16384/2603 differ diff --git a/data/db/base/16384/2603_fsm b/data/db/base/16384/2603_fsm new file mode 100644 index 0000000..304670f Binary files /dev/null and b/data/db/base/16384/2603_fsm differ diff --git a/data/db/base/16384/2603_vm b/data/db/base/16384/2603_vm new file mode 100644 index 0000000..59ff7d3 Binary files /dev/null and b/data/db/base/16384/2603_vm differ diff --git a/data/db/base/16384/2604 b/data/db/base/16384/2604 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/2605 b/data/db/base/16384/2605 new file mode 100644 index 0000000..e259892 Binary files /dev/null and b/data/db/base/16384/2605 differ diff --git a/data/db/base/16384/2605_fsm b/data/db/base/16384/2605_fsm new file mode 100644 index 0000000..8751302 Binary files /dev/null and b/data/db/base/16384/2605_fsm differ diff --git a/data/db/base/16384/2605_vm b/data/db/base/16384/2605_vm new file mode 100644 index 0000000..f58cdd6 Binary files /dev/null and b/data/db/base/16384/2605_vm differ diff --git a/data/db/base/16384/2606 b/data/db/base/16384/2606 new file mode 100644 index 0000000..5a64f44 Binary files /dev/null and b/data/db/base/16384/2606 differ diff --git a/data/db/base/16384/2606_fsm b/data/db/base/16384/2606_fsm new file mode 100644 index 0000000..7b34ee1 Binary files /dev/null and b/data/db/base/16384/2606_fsm differ diff --git a/data/db/base/16384/2606_vm b/data/db/base/16384/2606_vm new file mode 100644 index 0000000..f4ad81f Binary files /dev/null and b/data/db/base/16384/2606_vm differ diff --git a/data/db/base/16384/2607 b/data/db/base/16384/2607 new file mode 100644 index 0000000..6862b80 Binary files /dev/null and b/data/db/base/16384/2607 differ diff --git a/data/db/base/16384/2607_fsm b/data/db/base/16384/2607_fsm new file mode 100644 index 0000000..f28540f Binary files /dev/null and b/data/db/base/16384/2607_fsm differ diff --git a/data/db/base/16384/2607_vm b/data/db/base/16384/2607_vm new file mode 100644 index 0000000..33d43dc Binary files /dev/null and b/data/db/base/16384/2607_vm differ diff --git a/data/db/base/16384/2608 b/data/db/base/16384/2608 new file mode 100644 index 0000000..5fa9667 Binary files /dev/null and b/data/db/base/16384/2608 differ diff --git a/data/db/base/16384/2608_fsm b/data/db/base/16384/2608_fsm new file mode 100644 index 0000000..405be32 Binary files /dev/null and b/data/db/base/16384/2608_fsm differ diff --git a/data/db/base/16384/2608_vm b/data/db/base/16384/2608_vm new file mode 100644 index 0000000..f5a2b79 Binary files /dev/null and b/data/db/base/16384/2608_vm differ diff --git a/data/db/base/16384/2609 b/data/db/base/16384/2609 new file mode 100644 index 0000000..61296df Binary files /dev/null and b/data/db/base/16384/2609 differ diff --git a/data/db/base/16384/2609_fsm b/data/db/base/16384/2609_fsm new file mode 100644 index 0000000..ba1f5d0 Binary files /dev/null and b/data/db/base/16384/2609_fsm differ diff --git a/data/db/base/16384/2609_vm b/data/db/base/16384/2609_vm new file mode 100644 index 0000000..4b22abd Binary files /dev/null and b/data/db/base/16384/2609_vm differ diff --git a/data/db/base/16384/2610 b/data/db/base/16384/2610 new file mode 100644 index 0000000..b4a7012 Binary files /dev/null and b/data/db/base/16384/2610 differ diff --git a/data/db/base/16384/2610_fsm b/data/db/base/16384/2610_fsm new file mode 100644 index 0000000..c4fe588 Binary files /dev/null and b/data/db/base/16384/2610_fsm differ diff --git a/data/db/base/16384/2610_vm b/data/db/base/16384/2610_vm new file mode 100644 index 0000000..21026ec Binary files /dev/null and b/data/db/base/16384/2610_vm differ diff --git a/data/db/base/16384/2611 b/data/db/base/16384/2611 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/2612 b/data/db/base/16384/2612 new file mode 100644 index 0000000..1a5d4e7 Binary files /dev/null and b/data/db/base/16384/2612 differ diff --git a/data/db/base/16384/2612_fsm b/data/db/base/16384/2612_fsm new file mode 100644 index 0000000..6183de3 Binary files /dev/null and b/data/db/base/16384/2612_fsm differ diff --git a/data/db/base/16384/2612_vm b/data/db/base/16384/2612_vm new file mode 100644 index 0000000..b8bdff6 Binary files /dev/null and b/data/db/base/16384/2612_vm differ diff --git a/data/db/base/16384/2613 b/data/db/base/16384/2613 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/2615 b/data/db/base/16384/2615 new file mode 100644 index 0000000..fb7617f Binary files /dev/null and b/data/db/base/16384/2615 differ diff --git a/data/db/base/16384/2615_fsm b/data/db/base/16384/2615_fsm new file mode 100644 index 0000000..638c345 Binary files /dev/null and b/data/db/base/16384/2615_fsm differ diff --git a/data/db/base/16384/2615_vm b/data/db/base/16384/2615_vm new file mode 100644 index 0000000..02e82ab Binary files /dev/null and b/data/db/base/16384/2615_vm differ diff --git a/data/db/base/16384/2616 b/data/db/base/16384/2616 new file mode 100644 index 0000000..b420838 Binary files /dev/null and b/data/db/base/16384/2616 differ diff --git a/data/db/base/16384/2616_fsm b/data/db/base/16384/2616_fsm new file mode 100644 index 0000000..b5ad210 Binary files /dev/null and b/data/db/base/16384/2616_fsm differ diff --git a/data/db/base/16384/2616_vm b/data/db/base/16384/2616_vm new file mode 100644 index 0000000..0e31025 Binary files /dev/null and b/data/db/base/16384/2616_vm differ diff --git a/data/db/base/16384/2617 b/data/db/base/16384/2617 new file mode 100644 index 0000000..de5148c Binary files /dev/null and b/data/db/base/16384/2617 differ diff --git a/data/db/base/16384/2617_fsm b/data/db/base/16384/2617_fsm new file mode 100644 index 0000000..57f9d26 Binary files /dev/null and b/data/db/base/16384/2617_fsm differ diff --git a/data/db/base/16384/2617_vm b/data/db/base/16384/2617_vm new file mode 100644 index 0000000..311df95 Binary files /dev/null and b/data/db/base/16384/2617_vm differ diff --git a/data/db/base/16384/2618 b/data/db/base/16384/2618 new file mode 100644 index 0000000..d1bdefe Binary files /dev/null and b/data/db/base/16384/2618 differ diff --git a/data/db/base/16384/2618_fsm b/data/db/base/16384/2618_fsm new file mode 100644 index 0000000..669f554 Binary files /dev/null and b/data/db/base/16384/2618_fsm differ diff --git a/data/db/base/16384/2618_vm b/data/db/base/16384/2618_vm new file mode 100644 index 0000000..a69e200 Binary files /dev/null and b/data/db/base/16384/2618_vm differ diff --git a/data/db/base/16384/2619 b/data/db/base/16384/2619 new file mode 100644 index 0000000..404b6f6 Binary files /dev/null and b/data/db/base/16384/2619 differ diff --git a/data/db/base/16384/2619_fsm b/data/db/base/16384/2619_fsm new file mode 100644 index 0000000..4c7220e Binary files /dev/null and b/data/db/base/16384/2619_fsm differ diff --git a/data/db/base/16384/2619_vm b/data/db/base/16384/2619_vm new file mode 100644 index 0000000..58ade1b Binary files /dev/null and b/data/db/base/16384/2619_vm differ diff --git a/data/db/base/16384/2620 b/data/db/base/16384/2620 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/2650 b/data/db/base/16384/2650 new file mode 100644 index 0000000..68daa4b Binary files /dev/null and b/data/db/base/16384/2650 differ diff --git a/data/db/base/16384/2651 b/data/db/base/16384/2651 new file mode 100644 index 0000000..27a5cd0 Binary files /dev/null and b/data/db/base/16384/2651 differ diff --git a/data/db/base/16384/2652 b/data/db/base/16384/2652 new file mode 100644 index 0000000..4598a99 Binary files /dev/null and b/data/db/base/16384/2652 differ diff --git a/data/db/base/16384/2653 b/data/db/base/16384/2653 new file mode 100644 index 0000000..8cf6202 Binary files /dev/null and b/data/db/base/16384/2653 differ diff --git a/data/db/base/16384/2654 b/data/db/base/16384/2654 new file mode 100644 index 0000000..74968ed Binary files /dev/null and b/data/db/base/16384/2654 differ diff --git a/data/db/base/16384/2655 b/data/db/base/16384/2655 new file mode 100644 index 0000000..c3ad63c Binary files /dev/null and b/data/db/base/16384/2655 differ diff --git a/data/db/base/16384/2656 b/data/db/base/16384/2656 new file mode 100644 index 0000000..1411847 Binary files /dev/null and b/data/db/base/16384/2656 differ diff --git a/data/db/base/16384/2657 b/data/db/base/16384/2657 new file mode 100644 index 0000000..eb51fe0 Binary files /dev/null and b/data/db/base/16384/2657 differ diff --git a/data/db/base/16384/2658 b/data/db/base/16384/2658 new file mode 100644 index 0000000..f938e9a Binary files /dev/null and b/data/db/base/16384/2658 differ diff --git a/data/db/base/16384/2659 b/data/db/base/16384/2659 new file mode 100644 index 0000000..62a0610 Binary files /dev/null and b/data/db/base/16384/2659 differ diff --git a/data/db/base/16384/2660 b/data/db/base/16384/2660 new file mode 100644 index 0000000..e813963 Binary files /dev/null and b/data/db/base/16384/2660 differ diff --git a/data/db/base/16384/2661 b/data/db/base/16384/2661 new file mode 100644 index 0000000..741b20c Binary files /dev/null and b/data/db/base/16384/2661 differ diff --git a/data/db/base/16384/2662 b/data/db/base/16384/2662 new file mode 100644 index 0000000..92abcb6 Binary files /dev/null and b/data/db/base/16384/2662 differ diff --git a/data/db/base/16384/2663 b/data/db/base/16384/2663 new file mode 100644 index 0000000..07e7e48 Binary files /dev/null and b/data/db/base/16384/2663 differ diff --git a/data/db/base/16384/2664 b/data/db/base/16384/2664 new file mode 100644 index 0000000..4b7bce5 Binary files /dev/null and b/data/db/base/16384/2664 differ diff --git a/data/db/base/16384/2665 b/data/db/base/16384/2665 new file mode 100644 index 0000000..92e38a2 Binary files /dev/null and b/data/db/base/16384/2665 differ diff --git a/data/db/base/16384/2666 b/data/db/base/16384/2666 new file mode 100644 index 0000000..136ccd6 Binary files /dev/null and b/data/db/base/16384/2666 differ diff --git a/data/db/base/16384/2667 b/data/db/base/16384/2667 new file mode 100644 index 0000000..532b4dc Binary files /dev/null and b/data/db/base/16384/2667 differ diff --git a/data/db/base/16384/2668 b/data/db/base/16384/2668 new file mode 100644 index 0000000..278afce Binary files /dev/null and b/data/db/base/16384/2668 differ diff --git a/data/db/base/16384/2669 b/data/db/base/16384/2669 new file mode 100644 index 0000000..25fb12c Binary files /dev/null and b/data/db/base/16384/2669 differ diff --git a/data/db/base/16384/2670 b/data/db/base/16384/2670 new file mode 100644 index 0000000..e99bc22 Binary files /dev/null and b/data/db/base/16384/2670 differ diff --git a/data/db/base/16384/2673 b/data/db/base/16384/2673 new file mode 100644 index 0000000..67953c9 Binary files /dev/null and b/data/db/base/16384/2673 differ diff --git a/data/db/base/16384/2674 b/data/db/base/16384/2674 new file mode 100644 index 0000000..d94b68a Binary files /dev/null and b/data/db/base/16384/2674 differ diff --git a/data/db/base/16384/2675 b/data/db/base/16384/2675 new file mode 100644 index 0000000..f4ba900 Binary files /dev/null and b/data/db/base/16384/2675 differ diff --git a/data/db/base/16384/2678 b/data/db/base/16384/2678 new file mode 100644 index 0000000..41a4e8d Binary files /dev/null and b/data/db/base/16384/2678 differ diff --git a/data/db/base/16384/2679 b/data/db/base/16384/2679 new file mode 100644 index 0000000..df7c29d Binary files /dev/null and b/data/db/base/16384/2679 differ diff --git a/data/db/base/16384/2680 b/data/db/base/16384/2680 new file mode 100644 index 0000000..c7f3ccd Binary files /dev/null and b/data/db/base/16384/2680 differ diff --git a/data/db/base/16384/2681 b/data/db/base/16384/2681 new file mode 100644 index 0000000..775cfdf Binary files /dev/null and b/data/db/base/16384/2681 differ diff --git a/data/db/base/16384/2682 b/data/db/base/16384/2682 new file mode 100644 index 0000000..75a744d Binary files /dev/null and b/data/db/base/16384/2682 differ diff --git a/data/db/base/16384/2683 b/data/db/base/16384/2683 new file mode 100644 index 0000000..fa091c7 Binary files /dev/null and b/data/db/base/16384/2683 differ diff --git a/data/db/base/16384/2684 b/data/db/base/16384/2684 new file mode 100644 index 0000000..5399caa Binary files /dev/null and b/data/db/base/16384/2684 differ diff --git a/data/db/base/16384/2685 b/data/db/base/16384/2685 new file mode 100644 index 0000000..24cb5e2 Binary files /dev/null and b/data/db/base/16384/2685 differ diff --git a/data/db/base/16384/2686 b/data/db/base/16384/2686 new file mode 100644 index 0000000..ae9f3cf Binary files /dev/null and b/data/db/base/16384/2686 differ diff --git a/data/db/base/16384/2687 b/data/db/base/16384/2687 new file mode 100644 index 0000000..7672472 Binary files /dev/null and b/data/db/base/16384/2687 differ diff --git a/data/db/base/16384/2688 b/data/db/base/16384/2688 new file mode 100644 index 0000000..a484536 Binary files /dev/null and b/data/db/base/16384/2688 differ diff --git a/data/db/base/16384/2689 b/data/db/base/16384/2689 new file mode 100644 index 0000000..3a542f3 Binary files /dev/null and b/data/db/base/16384/2689 differ diff --git a/data/db/base/16384/2690 b/data/db/base/16384/2690 new file mode 100644 index 0000000..91a6ea5 Binary files /dev/null and b/data/db/base/16384/2690 differ diff --git a/data/db/base/16384/2691 b/data/db/base/16384/2691 new file mode 100644 index 0000000..63b1bca Binary files /dev/null and b/data/db/base/16384/2691 differ diff --git a/data/db/base/16384/2692 b/data/db/base/16384/2692 new file mode 100644 index 0000000..f57f976 Binary files /dev/null and b/data/db/base/16384/2692 differ diff --git a/data/db/base/16384/2693 b/data/db/base/16384/2693 new file mode 100644 index 0000000..63c4fcd Binary files /dev/null and b/data/db/base/16384/2693 differ diff --git a/data/db/base/16384/2696 b/data/db/base/16384/2696 new file mode 100644 index 0000000..8ecf4ee Binary files /dev/null and b/data/db/base/16384/2696 differ diff --git a/data/db/base/16384/2699 b/data/db/base/16384/2699 new file mode 100644 index 0000000..9e65491 Binary files /dev/null and b/data/db/base/16384/2699 differ diff --git a/data/db/base/16384/2701 b/data/db/base/16384/2701 new file mode 100644 index 0000000..61487f9 Binary files /dev/null and b/data/db/base/16384/2701 differ diff --git a/data/db/base/16384/2702 b/data/db/base/16384/2702 new file mode 100644 index 0000000..63e71e5 Binary files /dev/null and b/data/db/base/16384/2702 differ diff --git a/data/db/base/16384/2703 b/data/db/base/16384/2703 new file mode 100644 index 0000000..c3c720f Binary files /dev/null and b/data/db/base/16384/2703 differ diff --git a/data/db/base/16384/2704 b/data/db/base/16384/2704 new file mode 100644 index 0000000..89a782c Binary files /dev/null and b/data/db/base/16384/2704 differ diff --git a/data/db/base/16384/2753 b/data/db/base/16384/2753 new file mode 100644 index 0000000..04d15f9 Binary files /dev/null and b/data/db/base/16384/2753 differ diff --git a/data/db/base/16384/2753_fsm b/data/db/base/16384/2753_fsm new file mode 100644 index 0000000..815a994 Binary files /dev/null and b/data/db/base/16384/2753_fsm differ diff --git a/data/db/base/16384/2753_vm b/data/db/base/16384/2753_vm new file mode 100644 index 0000000..afc371a Binary files /dev/null and b/data/db/base/16384/2753_vm differ diff --git a/data/db/base/16384/2754 b/data/db/base/16384/2754 new file mode 100644 index 0000000..cb034d6 Binary files /dev/null and b/data/db/base/16384/2754 differ diff --git a/data/db/base/16384/2755 b/data/db/base/16384/2755 new file mode 100644 index 0000000..caa85c9 Binary files /dev/null and b/data/db/base/16384/2755 differ diff --git a/data/db/base/16384/2756 b/data/db/base/16384/2756 new file mode 100644 index 0000000..e28cc69 Binary files /dev/null and b/data/db/base/16384/2756 differ diff --git a/data/db/base/16384/2757 b/data/db/base/16384/2757 new file mode 100644 index 0000000..3ee9397 Binary files /dev/null and b/data/db/base/16384/2757 differ diff --git a/data/db/base/16384/2830 b/data/db/base/16384/2830 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/2831 b/data/db/base/16384/2831 new file mode 100644 index 0000000..93ccfe5 Binary files /dev/null and b/data/db/base/16384/2831 differ diff --git a/data/db/base/16384/2832 b/data/db/base/16384/2832 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/2833 b/data/db/base/16384/2833 new file mode 100644 index 0000000..f42430e Binary files /dev/null and b/data/db/base/16384/2833 differ diff --git a/data/db/base/16384/2834 b/data/db/base/16384/2834 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/2835 b/data/db/base/16384/2835 new file mode 100644 index 0000000..e987df9 Binary files /dev/null and b/data/db/base/16384/2835 differ diff --git a/data/db/base/16384/2836 b/data/db/base/16384/2836 new file mode 100644 index 0000000..d0b64f1 Binary files /dev/null and b/data/db/base/16384/2836 differ diff --git a/data/db/base/16384/2836_fsm b/data/db/base/16384/2836_fsm new file mode 100644 index 0000000..09f9fba Binary files /dev/null and b/data/db/base/16384/2836_fsm differ diff --git a/data/db/base/16384/2836_vm b/data/db/base/16384/2836_vm new file mode 100644 index 0000000..e2c63f9 Binary files /dev/null and b/data/db/base/16384/2836_vm differ diff --git a/data/db/base/16384/2837 b/data/db/base/16384/2837 new file mode 100644 index 0000000..cc0005c Binary files /dev/null and b/data/db/base/16384/2837 differ diff --git a/data/db/base/16384/2838 b/data/db/base/16384/2838 new file mode 100644 index 0000000..66fb3ab Binary files /dev/null and b/data/db/base/16384/2838 differ diff --git a/data/db/base/16384/2838_fsm b/data/db/base/16384/2838_fsm new file mode 100644 index 0000000..33fa677 Binary files /dev/null and b/data/db/base/16384/2838_fsm differ diff --git a/data/db/base/16384/2838_vm b/data/db/base/16384/2838_vm new file mode 100644 index 0000000..9887b2a Binary files /dev/null and b/data/db/base/16384/2838_vm differ diff --git a/data/db/base/16384/2839 b/data/db/base/16384/2839 new file mode 100644 index 0000000..580832a Binary files /dev/null and b/data/db/base/16384/2839 differ diff --git a/data/db/base/16384/2840 b/data/db/base/16384/2840 new file mode 100644 index 0000000..9f9ae38 Binary files /dev/null and b/data/db/base/16384/2840 differ diff --git a/data/db/base/16384/2840_fsm b/data/db/base/16384/2840_fsm new file mode 100644 index 0000000..99baa16 Binary files /dev/null and b/data/db/base/16384/2840_fsm differ diff --git a/data/db/base/16384/2840_vm b/data/db/base/16384/2840_vm new file mode 100644 index 0000000..190c456 Binary files /dev/null and b/data/db/base/16384/2840_vm differ diff --git a/data/db/base/16384/2841 b/data/db/base/16384/2841 new file mode 100644 index 0000000..4ffbc04 Binary files /dev/null and b/data/db/base/16384/2841 differ diff --git a/data/db/base/16384/2995 b/data/db/base/16384/2995 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/2996 b/data/db/base/16384/2996 new file mode 100644 index 0000000..1b7dc69 Binary files /dev/null and b/data/db/base/16384/2996 differ diff --git a/data/db/base/16384/3079 b/data/db/base/16384/3079 new file mode 100644 index 0000000..f02bb55 Binary files /dev/null and b/data/db/base/16384/3079 differ diff --git a/data/db/base/16384/3079_fsm b/data/db/base/16384/3079_fsm new file mode 100644 index 0000000..731eeec Binary files /dev/null and b/data/db/base/16384/3079_fsm differ diff --git a/data/db/base/16384/3079_vm b/data/db/base/16384/3079_vm new file mode 100644 index 0000000..5d48620 Binary files /dev/null and b/data/db/base/16384/3079_vm differ diff --git a/data/db/base/16384/3080 b/data/db/base/16384/3080 new file mode 100644 index 0000000..14d57fb Binary files /dev/null and b/data/db/base/16384/3080 differ diff --git a/data/db/base/16384/3081 b/data/db/base/16384/3081 new file mode 100644 index 0000000..3636f3e Binary files /dev/null and b/data/db/base/16384/3081 differ diff --git a/data/db/base/16384/3085 b/data/db/base/16384/3085 new file mode 100644 index 0000000..ad0b103 Binary files /dev/null and b/data/db/base/16384/3085 differ diff --git a/data/db/base/16384/3118 b/data/db/base/16384/3118 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3119 b/data/db/base/16384/3119 new file mode 100644 index 0000000..5ab281b Binary files /dev/null and b/data/db/base/16384/3119 differ diff --git a/data/db/base/16384/3164 b/data/db/base/16384/3164 new file mode 100644 index 0000000..7204450 Binary files /dev/null and b/data/db/base/16384/3164 differ diff --git a/data/db/base/16384/3256 b/data/db/base/16384/3256 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3257 b/data/db/base/16384/3257 new file mode 100644 index 0000000..cb7a543 Binary files /dev/null and b/data/db/base/16384/3257 differ diff --git a/data/db/base/16384/3258 b/data/db/base/16384/3258 new file mode 100644 index 0000000..1d652ee Binary files /dev/null and b/data/db/base/16384/3258 differ diff --git a/data/db/base/16384/3350 b/data/db/base/16384/3350 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3351 b/data/db/base/16384/3351 new file mode 100644 index 0000000..a602e6a Binary files /dev/null and b/data/db/base/16384/3351 differ diff --git a/data/db/base/16384/3379 b/data/db/base/16384/3379 new file mode 100644 index 0000000..fee25d7 Binary files /dev/null and b/data/db/base/16384/3379 differ diff --git a/data/db/base/16384/3380 b/data/db/base/16384/3380 new file mode 100644 index 0000000..49b1f38 Binary files /dev/null and b/data/db/base/16384/3380 differ diff --git a/data/db/base/16384/3381 b/data/db/base/16384/3381 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3394 b/data/db/base/16384/3394 new file mode 100644 index 0000000..b503d43 Binary files /dev/null and b/data/db/base/16384/3394 differ diff --git a/data/db/base/16384/3394_fsm b/data/db/base/16384/3394_fsm new file mode 100644 index 0000000..1ce7975 Binary files /dev/null and b/data/db/base/16384/3394_fsm differ diff --git a/data/db/base/16384/3394_vm b/data/db/base/16384/3394_vm new file mode 100644 index 0000000..ad0d2a4 Binary files /dev/null and b/data/db/base/16384/3394_vm differ diff --git a/data/db/base/16384/3395 b/data/db/base/16384/3395 new file mode 100644 index 0000000..a6a0def Binary files /dev/null and b/data/db/base/16384/3395 differ diff --git a/data/db/base/16384/3429 b/data/db/base/16384/3429 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3430 b/data/db/base/16384/3430 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3431 b/data/db/base/16384/3431 new file mode 100644 index 0000000..f99c654 Binary files /dev/null and b/data/db/base/16384/3431 differ diff --git a/data/db/base/16384/3433 b/data/db/base/16384/3433 new file mode 100644 index 0000000..9674c94 Binary files /dev/null and b/data/db/base/16384/3433 differ diff --git a/data/db/base/16384/3439 b/data/db/base/16384/3439 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3440 b/data/db/base/16384/3440 new file mode 100644 index 0000000..da2f02e Binary files /dev/null and b/data/db/base/16384/3440 differ diff --git a/data/db/base/16384/3455 b/data/db/base/16384/3455 new file mode 100644 index 0000000..f48a9e2 Binary files /dev/null and b/data/db/base/16384/3455 differ diff --git a/data/db/base/16384/3456 b/data/db/base/16384/3456 new file mode 100644 index 0000000..441ca48 Binary files /dev/null and b/data/db/base/16384/3456 differ diff --git a/data/db/base/16384/3456_fsm b/data/db/base/16384/3456_fsm new file mode 100644 index 0000000..7dde1ef Binary files /dev/null and b/data/db/base/16384/3456_fsm differ diff --git a/data/db/base/16384/3456_vm b/data/db/base/16384/3456_vm new file mode 100644 index 0000000..5c3618a Binary files /dev/null and b/data/db/base/16384/3456_vm differ diff --git a/data/db/base/16384/3466 b/data/db/base/16384/3466 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3467 b/data/db/base/16384/3467 new file mode 100644 index 0000000..99ee550 Binary files /dev/null and b/data/db/base/16384/3467 differ diff --git a/data/db/base/16384/3468 b/data/db/base/16384/3468 new file mode 100644 index 0000000..a8dbe7d Binary files /dev/null and b/data/db/base/16384/3468 differ diff --git a/data/db/base/16384/3501 b/data/db/base/16384/3501 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3502 b/data/db/base/16384/3502 new file mode 100644 index 0000000..e7962ec Binary files /dev/null and b/data/db/base/16384/3502 differ diff --git a/data/db/base/16384/3503 b/data/db/base/16384/3503 new file mode 100644 index 0000000..d887129 Binary files /dev/null and b/data/db/base/16384/3503 differ diff --git a/data/db/base/16384/3534 b/data/db/base/16384/3534 new file mode 100644 index 0000000..6a65939 Binary files /dev/null and b/data/db/base/16384/3534 differ diff --git a/data/db/base/16384/3541 b/data/db/base/16384/3541 new file mode 100644 index 0000000..538c117 Binary files /dev/null and b/data/db/base/16384/3541 differ diff --git a/data/db/base/16384/3541_fsm b/data/db/base/16384/3541_fsm new file mode 100644 index 0000000..a2aa0f0 Binary files /dev/null and b/data/db/base/16384/3541_fsm differ diff --git a/data/db/base/16384/3541_vm b/data/db/base/16384/3541_vm new file mode 100644 index 0000000..7925df6 Binary files /dev/null and b/data/db/base/16384/3541_vm differ diff --git a/data/db/base/16384/3542 b/data/db/base/16384/3542 new file mode 100644 index 0000000..dfd953a Binary files /dev/null and b/data/db/base/16384/3542 differ diff --git a/data/db/base/16384/3574 b/data/db/base/16384/3574 new file mode 100644 index 0000000..10cc792 Binary files /dev/null and b/data/db/base/16384/3574 differ diff --git a/data/db/base/16384/3575 b/data/db/base/16384/3575 new file mode 100644 index 0000000..eca6fbd Binary files /dev/null and b/data/db/base/16384/3575 differ diff --git a/data/db/base/16384/3576 b/data/db/base/16384/3576 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3596 b/data/db/base/16384/3596 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3597 b/data/db/base/16384/3597 new file mode 100644 index 0000000..acb167f Binary files /dev/null and b/data/db/base/16384/3597 differ diff --git a/data/db/base/16384/3598 b/data/db/base/16384/3598 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/3599 b/data/db/base/16384/3599 new file mode 100644 index 0000000..e80644d Binary files /dev/null and b/data/db/base/16384/3599 differ diff --git a/data/db/base/16384/3600 b/data/db/base/16384/3600 new file mode 100644 index 0000000..25971b9 Binary files /dev/null and b/data/db/base/16384/3600 differ diff --git a/data/db/base/16384/3600_fsm b/data/db/base/16384/3600_fsm new file mode 100644 index 0000000..79a3ec8 Binary files /dev/null and b/data/db/base/16384/3600_fsm differ diff --git a/data/db/base/16384/3600_vm b/data/db/base/16384/3600_vm new file mode 100644 index 0000000..83d5a80 Binary files /dev/null and b/data/db/base/16384/3600_vm differ diff --git a/data/db/base/16384/3601 b/data/db/base/16384/3601 new file mode 100644 index 0000000..800917f Binary files /dev/null and b/data/db/base/16384/3601 differ diff --git a/data/db/base/16384/3601_fsm b/data/db/base/16384/3601_fsm new file mode 100644 index 0000000..074a0c4 Binary files /dev/null and b/data/db/base/16384/3601_fsm differ diff --git a/data/db/base/16384/3601_vm b/data/db/base/16384/3601_vm new file mode 100644 index 0000000..87c39a0 Binary files /dev/null and b/data/db/base/16384/3601_vm differ diff --git a/data/db/base/16384/3602 b/data/db/base/16384/3602 new file mode 100644 index 0000000..d9d740b Binary files /dev/null and b/data/db/base/16384/3602 differ diff --git a/data/db/base/16384/3602_fsm b/data/db/base/16384/3602_fsm new file mode 100644 index 0000000..ed955c7 Binary files /dev/null and b/data/db/base/16384/3602_fsm differ diff --git a/data/db/base/16384/3602_vm b/data/db/base/16384/3602_vm new file mode 100644 index 0000000..3ce5ddc Binary files /dev/null and b/data/db/base/16384/3602_vm differ diff --git a/data/db/base/16384/3603 b/data/db/base/16384/3603 new file mode 100644 index 0000000..d3dab55 Binary files /dev/null and b/data/db/base/16384/3603 differ diff --git a/data/db/base/16384/3603_fsm b/data/db/base/16384/3603_fsm new file mode 100644 index 0000000..90efeef Binary files /dev/null and b/data/db/base/16384/3603_fsm differ diff --git a/data/db/base/16384/3603_vm b/data/db/base/16384/3603_vm new file mode 100644 index 0000000..d9113a5 Binary files /dev/null and b/data/db/base/16384/3603_vm differ diff --git a/data/db/base/16384/3604 b/data/db/base/16384/3604 new file mode 100644 index 0000000..e9d1c75 Binary files /dev/null and b/data/db/base/16384/3604 differ diff --git a/data/db/base/16384/3605 b/data/db/base/16384/3605 new file mode 100644 index 0000000..68ccdb3 Binary files /dev/null and b/data/db/base/16384/3605 differ diff --git a/data/db/base/16384/3606 b/data/db/base/16384/3606 new file mode 100644 index 0000000..478c717 Binary files /dev/null and b/data/db/base/16384/3606 differ diff --git a/data/db/base/16384/3607 b/data/db/base/16384/3607 new file mode 100644 index 0000000..4858bbb Binary files /dev/null and b/data/db/base/16384/3607 differ diff --git a/data/db/base/16384/3608 b/data/db/base/16384/3608 new file mode 100644 index 0000000..65d3b59 Binary files /dev/null and b/data/db/base/16384/3608 differ diff --git a/data/db/base/16384/3609 b/data/db/base/16384/3609 new file mode 100644 index 0000000..407332c Binary files /dev/null and b/data/db/base/16384/3609 differ diff --git a/data/db/base/16384/3712 b/data/db/base/16384/3712 new file mode 100644 index 0000000..b3bde28 Binary files /dev/null and b/data/db/base/16384/3712 differ diff --git a/data/db/base/16384/3764 b/data/db/base/16384/3764 new file mode 100644 index 0000000..e0a8204 Binary files /dev/null and b/data/db/base/16384/3764 differ diff --git a/data/db/base/16384/3764_fsm b/data/db/base/16384/3764_fsm new file mode 100644 index 0000000..f529c4b Binary files /dev/null and b/data/db/base/16384/3764_fsm differ diff --git a/data/db/base/16384/3764_vm b/data/db/base/16384/3764_vm new file mode 100644 index 0000000..3bbad16 Binary files /dev/null and b/data/db/base/16384/3764_vm differ diff --git a/data/db/base/16384/3766 b/data/db/base/16384/3766 new file mode 100644 index 0000000..5edd2b6 Binary files /dev/null and b/data/db/base/16384/3766 differ diff --git a/data/db/base/16384/3767 b/data/db/base/16384/3767 new file mode 100644 index 0000000..47ce9c0 Binary files /dev/null and b/data/db/base/16384/3767 differ diff --git a/data/db/base/16384/3997 b/data/db/base/16384/3997 new file mode 100644 index 0000000..8ebab5f Binary files /dev/null and b/data/db/base/16384/3997 differ diff --git a/data/db/base/16384/4143 b/data/db/base/16384/4143 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4144 b/data/db/base/16384/4144 new file mode 100644 index 0000000..645bd54 Binary files /dev/null and b/data/db/base/16384/4144 differ diff --git a/data/db/base/16384/4145 b/data/db/base/16384/4145 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4146 b/data/db/base/16384/4146 new file mode 100644 index 0000000..5aa15e1 Binary files /dev/null and b/data/db/base/16384/4146 differ diff --git a/data/db/base/16384/4147 b/data/db/base/16384/4147 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4148 b/data/db/base/16384/4148 new file mode 100644 index 0000000..0492e53 Binary files /dev/null and b/data/db/base/16384/4148 differ diff --git a/data/db/base/16384/4149 b/data/db/base/16384/4149 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4150 b/data/db/base/16384/4150 new file mode 100644 index 0000000..aeb4123 Binary files /dev/null and b/data/db/base/16384/4150 differ diff --git a/data/db/base/16384/4151 b/data/db/base/16384/4151 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4152 b/data/db/base/16384/4152 new file mode 100644 index 0000000..5fac08b Binary files /dev/null and b/data/db/base/16384/4152 differ diff --git a/data/db/base/16384/4153 b/data/db/base/16384/4153 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4154 b/data/db/base/16384/4154 new file mode 100644 index 0000000..d4c5b69 Binary files /dev/null and b/data/db/base/16384/4154 differ diff --git a/data/db/base/16384/4155 b/data/db/base/16384/4155 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4156 b/data/db/base/16384/4156 new file mode 100644 index 0000000..7aefb4f Binary files /dev/null and b/data/db/base/16384/4156 differ diff --git a/data/db/base/16384/4157 b/data/db/base/16384/4157 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4158 b/data/db/base/16384/4158 new file mode 100644 index 0000000..406e46b Binary files /dev/null and b/data/db/base/16384/4158 differ diff --git a/data/db/base/16384/4159 b/data/db/base/16384/4159 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4160 b/data/db/base/16384/4160 new file mode 100644 index 0000000..dbbd1bb Binary files /dev/null and b/data/db/base/16384/4160 differ diff --git a/data/db/base/16384/4163 b/data/db/base/16384/4163 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4164 b/data/db/base/16384/4164 new file mode 100644 index 0000000..ee9f82c Binary files /dev/null and b/data/db/base/16384/4164 differ diff --git a/data/db/base/16384/4165 b/data/db/base/16384/4165 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4166 b/data/db/base/16384/4166 new file mode 100644 index 0000000..6c6b844 Binary files /dev/null and b/data/db/base/16384/4166 differ diff --git a/data/db/base/16384/4167 b/data/db/base/16384/4167 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4168 b/data/db/base/16384/4168 new file mode 100644 index 0000000..38b3432 Binary files /dev/null and b/data/db/base/16384/4168 differ diff --git a/data/db/base/16384/4169 b/data/db/base/16384/4169 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4170 b/data/db/base/16384/4170 new file mode 100644 index 0000000..a10da57 Binary files /dev/null and b/data/db/base/16384/4170 differ diff --git a/data/db/base/16384/4171 b/data/db/base/16384/4171 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4172 b/data/db/base/16384/4172 new file mode 100644 index 0000000..8738bd7 Binary files /dev/null and b/data/db/base/16384/4172 differ diff --git a/data/db/base/16384/4173 b/data/db/base/16384/4173 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/4174 b/data/db/base/16384/4174 new file mode 100644 index 0000000..79482a4 Binary files /dev/null and b/data/db/base/16384/4174 differ diff --git a/data/db/base/16384/5002 b/data/db/base/16384/5002 new file mode 100644 index 0000000..22588b2 Binary files /dev/null and b/data/db/base/16384/5002 differ diff --git a/data/db/base/16384/548 b/data/db/base/16384/548 new file mode 100644 index 0000000..01d33ad Binary files /dev/null and b/data/db/base/16384/548 differ diff --git a/data/db/base/16384/549 b/data/db/base/16384/549 new file mode 100644 index 0000000..58af66b Binary files /dev/null and b/data/db/base/16384/549 differ diff --git a/data/db/base/16384/6102 b/data/db/base/16384/6102 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/6104 b/data/db/base/16384/6104 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/6106 b/data/db/base/16384/6106 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/6110 b/data/db/base/16384/6110 new file mode 100644 index 0000000..46ad885 Binary files /dev/null and b/data/db/base/16384/6110 differ diff --git a/data/db/base/16384/6111 b/data/db/base/16384/6111 new file mode 100644 index 0000000..df70051 Binary files /dev/null and b/data/db/base/16384/6111 differ diff --git a/data/db/base/16384/6112 b/data/db/base/16384/6112 new file mode 100644 index 0000000..26aa9fe Binary files /dev/null and b/data/db/base/16384/6112 differ diff --git a/data/db/base/16384/6113 b/data/db/base/16384/6113 new file mode 100644 index 0000000..301f082 Binary files /dev/null and b/data/db/base/16384/6113 differ diff --git a/data/db/base/16384/6116 b/data/db/base/16384/6116 new file mode 100644 index 0000000..9d942e0 Binary files /dev/null and b/data/db/base/16384/6116 differ diff --git a/data/db/base/16384/6117 b/data/db/base/16384/6117 new file mode 100644 index 0000000..ac4bc23 Binary files /dev/null and b/data/db/base/16384/6117 differ diff --git a/data/db/base/16384/6175 b/data/db/base/16384/6175 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/6176 b/data/db/base/16384/6176 new file mode 100644 index 0000000..71c4b78 Binary files /dev/null and b/data/db/base/16384/6176 differ diff --git a/data/db/base/16384/6228 b/data/db/base/16384/6228 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/6229 b/data/db/base/16384/6229 new file mode 100644 index 0000000..239229f Binary files /dev/null and b/data/db/base/16384/6229 differ diff --git a/data/db/base/16384/6237 b/data/db/base/16384/6237 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/6238 b/data/db/base/16384/6238 new file mode 100644 index 0000000..7f57b9d Binary files /dev/null and b/data/db/base/16384/6238 differ diff --git a/data/db/base/16384/6239 b/data/db/base/16384/6239 new file mode 100644 index 0000000..3468394 Binary files /dev/null and b/data/db/base/16384/6239 differ diff --git a/data/db/base/16384/826 b/data/db/base/16384/826 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/16384/827 b/data/db/base/16384/827 new file mode 100644 index 0000000..0ed9e76 Binary files /dev/null and b/data/db/base/16384/827 differ diff --git a/data/db/base/16384/828 b/data/db/base/16384/828 new file mode 100644 index 0000000..653c0ae Binary files /dev/null and b/data/db/base/16384/828 differ diff --git a/data/db/base/16384/PG_VERSION b/data/db/base/16384/PG_VERSION new file mode 100644 index 0000000..b6a7d89 --- /dev/null +++ b/data/db/base/16384/PG_VERSION @@ -0,0 +1 @@ +16 diff --git a/data/db/base/16384/pg_filenode.map b/data/db/base/16384/pg_filenode.map new file mode 100644 index 0000000..4fc801a Binary files /dev/null and b/data/db/base/16384/pg_filenode.map differ diff --git a/data/db/base/16384/pg_internal.init b/data/db/base/16384/pg_internal.init new file mode 100644 index 0000000..62ba622 Binary files /dev/null and b/data/db/base/16384/pg_internal.init differ diff --git a/data/db/base/4/112 b/data/db/base/4/112 new file mode 100644 index 0000000..2bfc88c Binary files /dev/null and b/data/db/base/4/112 differ diff --git a/data/db/base/4/113 b/data/db/base/4/113 new file mode 100644 index 0000000..c36defa Binary files /dev/null and b/data/db/base/4/113 differ diff --git a/data/db/base/4/1247 b/data/db/base/4/1247 new file mode 100644 index 0000000..e306280 Binary files /dev/null and b/data/db/base/4/1247 differ diff --git a/data/db/base/4/1247_fsm b/data/db/base/4/1247_fsm new file mode 100644 index 0000000..013faac Binary files /dev/null and b/data/db/base/4/1247_fsm differ diff --git a/data/db/base/4/1247_vm b/data/db/base/4/1247_vm new file mode 100644 index 0000000..ebb7d13 Binary files /dev/null and b/data/db/base/4/1247_vm differ diff --git a/data/db/base/4/1249 b/data/db/base/4/1249 new file mode 100644 index 0000000..ace6a24 Binary files /dev/null and b/data/db/base/4/1249 differ diff --git a/data/db/base/4/1249_fsm b/data/db/base/4/1249_fsm new file mode 100644 index 0000000..a538ac8 Binary files /dev/null and b/data/db/base/4/1249_fsm differ diff --git a/data/db/base/4/1249_vm b/data/db/base/4/1249_vm new file mode 100644 index 0000000..640d077 Binary files /dev/null and b/data/db/base/4/1249_vm differ diff --git a/data/db/base/4/1255 b/data/db/base/4/1255 new file mode 100644 index 0000000..a3b1864 Binary files /dev/null and b/data/db/base/4/1255 differ diff --git a/data/db/base/4/1255_fsm b/data/db/base/4/1255_fsm new file mode 100644 index 0000000..69a5d8f Binary files /dev/null and b/data/db/base/4/1255_fsm differ diff --git a/data/db/base/4/1255_vm b/data/db/base/4/1255_vm new file mode 100644 index 0000000..3f97975 Binary files /dev/null and b/data/db/base/4/1255_vm differ diff --git a/data/db/base/4/1259 b/data/db/base/4/1259 new file mode 100644 index 0000000..e35fa94 Binary files /dev/null and b/data/db/base/4/1259 differ diff --git a/data/db/base/4/1259_fsm b/data/db/base/4/1259_fsm new file mode 100644 index 0000000..05d8c51 Binary files /dev/null and b/data/db/base/4/1259_fsm differ diff --git a/data/db/base/4/1259_vm b/data/db/base/4/1259_vm new file mode 100644 index 0000000..c144ccf Binary files /dev/null and b/data/db/base/4/1259_vm differ diff --git a/data/db/base/4/13460 b/data/db/base/4/13460 new file mode 100644 index 0000000..e45417c Binary files /dev/null and b/data/db/base/4/13460 differ diff --git a/data/db/base/4/13460_fsm b/data/db/base/4/13460_fsm new file mode 100644 index 0000000..2a80b9a Binary files /dev/null and b/data/db/base/4/13460_fsm differ diff --git a/data/db/base/4/13460_vm b/data/db/base/4/13460_vm new file mode 100644 index 0000000..81f667b Binary files /dev/null and b/data/db/base/4/13460_vm differ diff --git a/data/db/base/4/13463 b/data/db/base/4/13463 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/13464 b/data/db/base/4/13464 new file mode 100644 index 0000000..c1b4577 Binary files /dev/null and b/data/db/base/4/13464 differ diff --git a/data/db/base/4/13465 b/data/db/base/4/13465 new file mode 100644 index 0000000..445e4ba Binary files /dev/null and b/data/db/base/4/13465 differ diff --git a/data/db/base/4/13465_fsm b/data/db/base/4/13465_fsm new file mode 100644 index 0000000..ce7c26e Binary files /dev/null and b/data/db/base/4/13465_fsm differ diff --git a/data/db/base/4/13465_vm b/data/db/base/4/13465_vm new file mode 100644 index 0000000..7836a65 Binary files /dev/null and b/data/db/base/4/13465_vm differ diff --git a/data/db/base/4/13468 b/data/db/base/4/13468 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/13469 b/data/db/base/4/13469 new file mode 100644 index 0000000..f36c5b1 Binary files /dev/null and b/data/db/base/4/13469 differ diff --git a/data/db/base/4/13470 b/data/db/base/4/13470 new file mode 100644 index 0000000..7f3e90e Binary files /dev/null and b/data/db/base/4/13470 differ diff --git a/data/db/base/4/13470_fsm b/data/db/base/4/13470_fsm new file mode 100644 index 0000000..0673ada Binary files /dev/null and b/data/db/base/4/13470_fsm differ diff --git a/data/db/base/4/13470_vm b/data/db/base/4/13470_vm new file mode 100644 index 0000000..e85447f Binary files /dev/null and b/data/db/base/4/13470_vm differ diff --git a/data/db/base/4/13473 b/data/db/base/4/13473 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/13474 b/data/db/base/4/13474 new file mode 100644 index 0000000..c72eeb1 Binary files /dev/null and b/data/db/base/4/13474 differ diff --git a/data/db/base/4/13475 b/data/db/base/4/13475 new file mode 100644 index 0000000..a79a68d Binary files /dev/null and b/data/db/base/4/13475 differ diff --git a/data/db/base/4/13475_fsm b/data/db/base/4/13475_fsm new file mode 100644 index 0000000..a836ddf Binary files /dev/null and b/data/db/base/4/13475_fsm differ diff --git a/data/db/base/4/13475_vm b/data/db/base/4/13475_vm new file mode 100644 index 0000000..ecf21c5 Binary files /dev/null and b/data/db/base/4/13475_vm differ diff --git a/data/db/base/4/13478 b/data/db/base/4/13478 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/13479 b/data/db/base/4/13479 new file mode 100644 index 0000000..7142efc Binary files /dev/null and b/data/db/base/4/13479 differ diff --git a/data/db/base/4/1417 b/data/db/base/4/1417 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/1418 b/data/db/base/4/1418 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/174 b/data/db/base/4/174 new file mode 100644 index 0000000..fedcb88 Binary files /dev/null and b/data/db/base/4/174 differ diff --git a/data/db/base/4/175 b/data/db/base/4/175 new file mode 100644 index 0000000..7ee5b4a Binary files /dev/null and b/data/db/base/4/175 differ diff --git a/data/db/base/4/2187 b/data/db/base/4/2187 new file mode 100644 index 0000000..77d8c76 Binary files /dev/null and b/data/db/base/4/2187 differ diff --git a/data/db/base/4/2224 b/data/db/base/4/2224 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/2228 b/data/db/base/4/2228 new file mode 100644 index 0000000..738f259 Binary files /dev/null and b/data/db/base/4/2228 differ diff --git a/data/db/base/4/2328 b/data/db/base/4/2328 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/2336 b/data/db/base/4/2336 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/2337 b/data/db/base/4/2337 new file mode 100644 index 0000000..b706ef8 Binary files /dev/null and b/data/db/base/4/2337 differ diff --git a/data/db/base/4/2579 b/data/db/base/4/2579 new file mode 100644 index 0000000..48c7adb Binary files /dev/null and b/data/db/base/4/2579 differ diff --git a/data/db/base/4/2600 b/data/db/base/4/2600 new file mode 100644 index 0000000..d98ee62 Binary files /dev/null and b/data/db/base/4/2600 differ diff --git a/data/db/base/4/2600_fsm b/data/db/base/4/2600_fsm new file mode 100644 index 0000000..0938592 Binary files /dev/null and b/data/db/base/4/2600_fsm differ diff --git a/data/db/base/4/2600_vm b/data/db/base/4/2600_vm new file mode 100644 index 0000000..1cfb499 Binary files /dev/null and b/data/db/base/4/2600_vm differ diff --git a/data/db/base/4/2601 b/data/db/base/4/2601 new file mode 100644 index 0000000..d8001c8 Binary files /dev/null and b/data/db/base/4/2601 differ diff --git a/data/db/base/4/2601_fsm b/data/db/base/4/2601_fsm new file mode 100644 index 0000000..d388044 Binary files /dev/null and b/data/db/base/4/2601_fsm differ diff --git a/data/db/base/4/2601_vm b/data/db/base/4/2601_vm new file mode 100644 index 0000000..d164717 Binary files /dev/null and b/data/db/base/4/2601_vm differ diff --git a/data/db/base/4/2602 b/data/db/base/4/2602 new file mode 100644 index 0000000..4a27b0a Binary files /dev/null and b/data/db/base/4/2602 differ diff --git a/data/db/base/4/2602_fsm b/data/db/base/4/2602_fsm new file mode 100644 index 0000000..23170d8 Binary files /dev/null and b/data/db/base/4/2602_fsm differ diff --git a/data/db/base/4/2602_vm b/data/db/base/4/2602_vm new file mode 100644 index 0000000..26125f2 Binary files /dev/null and b/data/db/base/4/2602_vm differ diff --git a/data/db/base/4/2603 b/data/db/base/4/2603 new file mode 100644 index 0000000..d511af5 Binary files /dev/null and b/data/db/base/4/2603 differ diff --git a/data/db/base/4/2603_fsm b/data/db/base/4/2603_fsm new file mode 100644 index 0000000..949bd18 Binary files /dev/null and b/data/db/base/4/2603_fsm differ diff --git a/data/db/base/4/2603_vm b/data/db/base/4/2603_vm new file mode 100644 index 0000000..41d1283 Binary files /dev/null and b/data/db/base/4/2603_vm differ diff --git a/data/db/base/4/2604 b/data/db/base/4/2604 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/2605 b/data/db/base/4/2605 new file mode 100644 index 0000000..eeaa7ea Binary files /dev/null and b/data/db/base/4/2605 differ diff --git a/data/db/base/4/2605_fsm b/data/db/base/4/2605_fsm new file mode 100644 index 0000000..f3b92bf Binary files /dev/null and b/data/db/base/4/2605_fsm differ diff --git a/data/db/base/4/2605_vm b/data/db/base/4/2605_vm new file mode 100644 index 0000000..27c7a29 Binary files /dev/null and b/data/db/base/4/2605_vm differ diff --git a/data/db/base/4/2606 b/data/db/base/4/2606 new file mode 100644 index 0000000..e870d47 Binary files /dev/null and b/data/db/base/4/2606 differ diff --git a/data/db/base/4/2606_fsm b/data/db/base/4/2606_fsm new file mode 100644 index 0000000..267454e Binary files /dev/null and b/data/db/base/4/2606_fsm differ diff --git a/data/db/base/4/2606_vm b/data/db/base/4/2606_vm new file mode 100644 index 0000000..0114c0b Binary files /dev/null and b/data/db/base/4/2606_vm differ diff --git a/data/db/base/4/2607 b/data/db/base/4/2607 new file mode 100644 index 0000000..bfad49a Binary files /dev/null and b/data/db/base/4/2607 differ diff --git a/data/db/base/4/2607_fsm b/data/db/base/4/2607_fsm new file mode 100644 index 0000000..80ac8b1 Binary files /dev/null and b/data/db/base/4/2607_fsm differ diff --git a/data/db/base/4/2607_vm b/data/db/base/4/2607_vm new file mode 100644 index 0000000..1642dc7 Binary files /dev/null and b/data/db/base/4/2607_vm differ diff --git a/data/db/base/4/2608 b/data/db/base/4/2608 new file mode 100644 index 0000000..b8846d6 Binary files /dev/null and b/data/db/base/4/2608 differ diff --git a/data/db/base/4/2608_fsm b/data/db/base/4/2608_fsm new file mode 100644 index 0000000..95081cd Binary files /dev/null and b/data/db/base/4/2608_fsm differ diff --git a/data/db/base/4/2608_vm b/data/db/base/4/2608_vm new file mode 100644 index 0000000..de5b823 Binary files /dev/null and b/data/db/base/4/2608_vm differ diff --git a/data/db/base/4/2609 b/data/db/base/4/2609 new file mode 100644 index 0000000..6b611b9 Binary files /dev/null and b/data/db/base/4/2609 differ diff --git a/data/db/base/4/2609_fsm b/data/db/base/4/2609_fsm new file mode 100644 index 0000000..624979d Binary files /dev/null and b/data/db/base/4/2609_fsm differ diff --git a/data/db/base/4/2609_vm b/data/db/base/4/2609_vm new file mode 100644 index 0000000..94079b3 Binary files /dev/null and b/data/db/base/4/2609_vm differ diff --git a/data/db/base/4/2610 b/data/db/base/4/2610 new file mode 100644 index 0000000..b9c85e1 Binary files /dev/null and b/data/db/base/4/2610 differ diff --git a/data/db/base/4/2610_fsm b/data/db/base/4/2610_fsm new file mode 100644 index 0000000..ecbcb5f Binary files /dev/null and b/data/db/base/4/2610_fsm differ diff --git a/data/db/base/4/2610_vm b/data/db/base/4/2610_vm new file mode 100644 index 0000000..1f99737 Binary files /dev/null and b/data/db/base/4/2610_vm differ diff --git a/data/db/base/4/2611 b/data/db/base/4/2611 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/2612 b/data/db/base/4/2612 new file mode 100644 index 0000000..a0eaf2f Binary files /dev/null and b/data/db/base/4/2612 differ diff --git a/data/db/base/4/2612_fsm b/data/db/base/4/2612_fsm new file mode 100644 index 0000000..877976a Binary files /dev/null and b/data/db/base/4/2612_fsm differ diff --git a/data/db/base/4/2612_vm b/data/db/base/4/2612_vm new file mode 100644 index 0000000..f63723c Binary files /dev/null and b/data/db/base/4/2612_vm differ diff --git a/data/db/base/4/2613 b/data/db/base/4/2613 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/2615 b/data/db/base/4/2615 new file mode 100644 index 0000000..4fcf163 Binary files /dev/null and b/data/db/base/4/2615 differ diff --git a/data/db/base/4/2615_fsm b/data/db/base/4/2615_fsm new file mode 100644 index 0000000..d041693 Binary files /dev/null and b/data/db/base/4/2615_fsm differ diff --git a/data/db/base/4/2615_vm b/data/db/base/4/2615_vm new file mode 100644 index 0000000..52e94f1 Binary files /dev/null and b/data/db/base/4/2615_vm differ diff --git a/data/db/base/4/2616 b/data/db/base/4/2616 new file mode 100644 index 0000000..0d60d79 Binary files /dev/null and b/data/db/base/4/2616 differ diff --git a/data/db/base/4/2616_fsm b/data/db/base/4/2616_fsm new file mode 100644 index 0000000..cb924c9 Binary files /dev/null and b/data/db/base/4/2616_fsm differ diff --git a/data/db/base/4/2616_vm b/data/db/base/4/2616_vm new file mode 100644 index 0000000..17caf7b Binary files /dev/null and b/data/db/base/4/2616_vm differ diff --git a/data/db/base/4/2617 b/data/db/base/4/2617 new file mode 100644 index 0000000..bcdfc18 Binary files /dev/null and b/data/db/base/4/2617 differ diff --git a/data/db/base/4/2617_fsm b/data/db/base/4/2617_fsm new file mode 100644 index 0000000..29d6066 Binary files /dev/null and b/data/db/base/4/2617_fsm differ diff --git a/data/db/base/4/2617_vm b/data/db/base/4/2617_vm new file mode 100644 index 0000000..c784720 Binary files /dev/null and b/data/db/base/4/2617_vm differ diff --git a/data/db/base/4/2618 b/data/db/base/4/2618 new file mode 100644 index 0000000..7d2f38d Binary files /dev/null and b/data/db/base/4/2618 differ diff --git a/data/db/base/4/2618_fsm b/data/db/base/4/2618_fsm new file mode 100644 index 0000000..bcee926 Binary files /dev/null and b/data/db/base/4/2618_fsm differ diff --git a/data/db/base/4/2618_vm b/data/db/base/4/2618_vm new file mode 100644 index 0000000..4832d2f Binary files /dev/null and b/data/db/base/4/2618_vm differ diff --git a/data/db/base/4/2619 b/data/db/base/4/2619 new file mode 100644 index 0000000..e3f06ab Binary files /dev/null and b/data/db/base/4/2619 differ diff --git a/data/db/base/4/2619_fsm b/data/db/base/4/2619_fsm new file mode 100644 index 0000000..c40895b Binary files /dev/null and b/data/db/base/4/2619_fsm differ diff --git a/data/db/base/4/2619_vm b/data/db/base/4/2619_vm new file mode 100644 index 0000000..a649570 Binary files /dev/null and b/data/db/base/4/2619_vm differ diff --git a/data/db/base/4/2620 b/data/db/base/4/2620 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/2650 b/data/db/base/4/2650 new file mode 100644 index 0000000..ef4f21b Binary files /dev/null and b/data/db/base/4/2650 differ diff --git a/data/db/base/4/2651 b/data/db/base/4/2651 new file mode 100644 index 0000000..9d21e32 Binary files /dev/null and b/data/db/base/4/2651 differ diff --git a/data/db/base/4/2652 b/data/db/base/4/2652 new file mode 100644 index 0000000..ab6e13e Binary files /dev/null and b/data/db/base/4/2652 differ diff --git a/data/db/base/4/2653 b/data/db/base/4/2653 new file mode 100644 index 0000000..4c032c8 Binary files /dev/null and b/data/db/base/4/2653 differ diff --git a/data/db/base/4/2654 b/data/db/base/4/2654 new file mode 100644 index 0000000..53aa6fc Binary files /dev/null and b/data/db/base/4/2654 differ diff --git a/data/db/base/4/2655 b/data/db/base/4/2655 new file mode 100644 index 0000000..0b22aae Binary files /dev/null and b/data/db/base/4/2655 differ diff --git a/data/db/base/4/2656 b/data/db/base/4/2656 new file mode 100644 index 0000000..0e2e0bc Binary files /dev/null and b/data/db/base/4/2656 differ diff --git a/data/db/base/4/2657 b/data/db/base/4/2657 new file mode 100644 index 0000000..a87fd85 Binary files /dev/null and b/data/db/base/4/2657 differ diff --git a/data/db/base/4/2658 b/data/db/base/4/2658 new file mode 100644 index 0000000..47ed9cd Binary files /dev/null and b/data/db/base/4/2658 differ diff --git a/data/db/base/4/2659 b/data/db/base/4/2659 new file mode 100644 index 0000000..540409d Binary files /dev/null and b/data/db/base/4/2659 differ diff --git a/data/db/base/4/2660 b/data/db/base/4/2660 new file mode 100644 index 0000000..3a7a1d2 Binary files /dev/null and b/data/db/base/4/2660 differ diff --git a/data/db/base/4/2661 b/data/db/base/4/2661 new file mode 100644 index 0000000..aa5178a Binary files /dev/null and b/data/db/base/4/2661 differ diff --git a/data/db/base/4/2662 b/data/db/base/4/2662 new file mode 100644 index 0000000..61049ce Binary files /dev/null and b/data/db/base/4/2662 differ diff --git a/data/db/base/4/2663 b/data/db/base/4/2663 new file mode 100644 index 0000000..ca3bb22 Binary files /dev/null and b/data/db/base/4/2663 differ diff --git a/data/db/base/4/2664 b/data/db/base/4/2664 new file mode 100644 index 0000000..6aa9639 Binary files /dev/null and b/data/db/base/4/2664 differ diff --git a/data/db/base/4/2665 b/data/db/base/4/2665 new file mode 100644 index 0000000..c659a87 Binary files /dev/null and b/data/db/base/4/2665 differ diff --git a/data/db/base/4/2666 b/data/db/base/4/2666 new file mode 100644 index 0000000..6597090 Binary files /dev/null and b/data/db/base/4/2666 differ diff --git a/data/db/base/4/2667 b/data/db/base/4/2667 new file mode 100644 index 0000000..ca81554 Binary files /dev/null and b/data/db/base/4/2667 differ diff --git a/data/db/base/4/2668 b/data/db/base/4/2668 new file mode 100644 index 0000000..c5baf1d Binary files /dev/null and b/data/db/base/4/2668 differ diff --git a/data/db/base/4/2669 b/data/db/base/4/2669 new file mode 100644 index 0000000..7379bc3 Binary files /dev/null and b/data/db/base/4/2669 differ diff --git a/data/db/base/4/2670 b/data/db/base/4/2670 new file mode 100644 index 0000000..5b35b4d Binary files /dev/null and b/data/db/base/4/2670 differ diff --git a/data/db/base/4/2673 b/data/db/base/4/2673 new file mode 100644 index 0000000..ebc9fb6 Binary files /dev/null and b/data/db/base/4/2673 differ diff --git a/data/db/base/4/2674 b/data/db/base/4/2674 new file mode 100644 index 0000000..1d0f39e Binary files /dev/null and b/data/db/base/4/2674 differ diff --git a/data/db/base/4/2675 b/data/db/base/4/2675 new file mode 100644 index 0000000..e86d993 Binary files /dev/null and b/data/db/base/4/2675 differ diff --git a/data/db/base/4/2678 b/data/db/base/4/2678 new file mode 100644 index 0000000..6fae80b Binary files /dev/null and b/data/db/base/4/2678 differ diff --git a/data/db/base/4/2679 b/data/db/base/4/2679 new file mode 100644 index 0000000..b5dab80 Binary files /dev/null and b/data/db/base/4/2679 differ diff --git a/data/db/base/4/2680 b/data/db/base/4/2680 new file mode 100644 index 0000000..e15ddb4 Binary files /dev/null and b/data/db/base/4/2680 differ diff --git a/data/db/base/4/2681 b/data/db/base/4/2681 new file mode 100644 index 0000000..df82b84 Binary files /dev/null and b/data/db/base/4/2681 differ diff --git a/data/db/base/4/2682 b/data/db/base/4/2682 new file mode 100644 index 0000000..69af478 Binary files /dev/null and b/data/db/base/4/2682 differ diff --git a/data/db/base/4/2683 b/data/db/base/4/2683 new file mode 100644 index 0000000..014cbee Binary files /dev/null and b/data/db/base/4/2683 differ diff --git a/data/db/base/4/2684 b/data/db/base/4/2684 new file mode 100644 index 0000000..8be7c08 Binary files /dev/null and b/data/db/base/4/2684 differ diff --git a/data/db/base/4/2685 b/data/db/base/4/2685 new file mode 100644 index 0000000..ce8da2e Binary files /dev/null and b/data/db/base/4/2685 differ diff --git a/data/db/base/4/2686 b/data/db/base/4/2686 new file mode 100644 index 0000000..51e4357 Binary files /dev/null and b/data/db/base/4/2686 differ diff --git a/data/db/base/4/2687 b/data/db/base/4/2687 new file mode 100644 index 0000000..8df59d1 Binary files /dev/null and b/data/db/base/4/2687 differ diff --git a/data/db/base/4/2688 b/data/db/base/4/2688 new file mode 100644 index 0000000..f5448dc Binary files /dev/null and b/data/db/base/4/2688 differ diff --git a/data/db/base/4/2689 b/data/db/base/4/2689 new file mode 100644 index 0000000..8f8223b Binary files /dev/null and b/data/db/base/4/2689 differ diff --git a/data/db/base/4/2690 b/data/db/base/4/2690 new file mode 100644 index 0000000..dac708a Binary files /dev/null and b/data/db/base/4/2690 differ diff --git a/data/db/base/4/2691 b/data/db/base/4/2691 new file mode 100644 index 0000000..ec9de86 Binary files /dev/null and b/data/db/base/4/2691 differ diff --git a/data/db/base/4/2692 b/data/db/base/4/2692 new file mode 100644 index 0000000..cce771d Binary files /dev/null and b/data/db/base/4/2692 differ diff --git a/data/db/base/4/2693 b/data/db/base/4/2693 new file mode 100644 index 0000000..84272cd Binary files /dev/null and b/data/db/base/4/2693 differ diff --git a/data/db/base/4/2696 b/data/db/base/4/2696 new file mode 100644 index 0000000..d7d52a2 Binary files /dev/null and b/data/db/base/4/2696 differ diff --git a/data/db/base/4/2699 b/data/db/base/4/2699 new file mode 100644 index 0000000..8417313 Binary files /dev/null and b/data/db/base/4/2699 differ diff --git a/data/db/base/4/2701 b/data/db/base/4/2701 new file mode 100644 index 0000000..8892de2 Binary files /dev/null and b/data/db/base/4/2701 differ diff --git a/data/db/base/4/2702 b/data/db/base/4/2702 new file mode 100644 index 0000000..c40e5aa Binary files /dev/null and b/data/db/base/4/2702 differ diff --git a/data/db/base/4/2703 b/data/db/base/4/2703 new file mode 100644 index 0000000..b2068a0 Binary files /dev/null and b/data/db/base/4/2703 differ diff --git a/data/db/base/4/2704 b/data/db/base/4/2704 new file mode 100644 index 0000000..3c9f0b7 Binary files /dev/null and b/data/db/base/4/2704 differ diff --git a/data/db/base/4/2753 b/data/db/base/4/2753 new file mode 100644 index 0000000..3c16dff Binary files /dev/null and b/data/db/base/4/2753 differ diff --git a/data/db/base/4/2753_fsm b/data/db/base/4/2753_fsm new file mode 100644 index 0000000..642bce3 Binary files /dev/null and b/data/db/base/4/2753_fsm differ diff --git a/data/db/base/4/2753_vm b/data/db/base/4/2753_vm new file mode 100644 index 0000000..7771455 Binary files /dev/null and b/data/db/base/4/2753_vm differ diff --git a/data/db/base/4/2754 b/data/db/base/4/2754 new file mode 100644 index 0000000..f3df39d Binary files /dev/null and b/data/db/base/4/2754 differ diff --git a/data/db/base/4/2755 b/data/db/base/4/2755 new file mode 100644 index 0000000..cc671dc Binary files /dev/null and b/data/db/base/4/2755 differ diff --git a/data/db/base/4/2756 b/data/db/base/4/2756 new file mode 100644 index 0000000..6a6c87e Binary files /dev/null and b/data/db/base/4/2756 differ diff --git a/data/db/base/4/2757 b/data/db/base/4/2757 new file mode 100644 index 0000000..57830cb Binary files /dev/null and b/data/db/base/4/2757 differ diff --git a/data/db/base/4/2830 b/data/db/base/4/2830 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/2831 b/data/db/base/4/2831 new file mode 100644 index 0000000..6c30e94 Binary files /dev/null and b/data/db/base/4/2831 differ diff --git a/data/db/base/4/2832 b/data/db/base/4/2832 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/2833 b/data/db/base/4/2833 new file mode 100644 index 0000000..e364449 Binary files /dev/null and b/data/db/base/4/2833 differ diff --git a/data/db/base/4/2834 b/data/db/base/4/2834 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/2835 b/data/db/base/4/2835 new file mode 100644 index 0000000..b028c65 Binary files /dev/null and b/data/db/base/4/2835 differ diff --git a/data/db/base/4/2836 b/data/db/base/4/2836 new file mode 100644 index 0000000..ff9b62f Binary files /dev/null and b/data/db/base/4/2836 differ diff --git a/data/db/base/4/2836_fsm b/data/db/base/4/2836_fsm new file mode 100644 index 0000000..06e1e26 Binary files /dev/null and b/data/db/base/4/2836_fsm differ diff --git a/data/db/base/4/2836_vm b/data/db/base/4/2836_vm new file mode 100644 index 0000000..3f8c31e Binary files /dev/null and b/data/db/base/4/2836_vm differ diff --git a/data/db/base/4/2837 b/data/db/base/4/2837 new file mode 100644 index 0000000..a6d62ac Binary files /dev/null and b/data/db/base/4/2837 differ diff --git a/data/db/base/4/2838 b/data/db/base/4/2838 new file mode 100644 index 0000000..99ece20 Binary files /dev/null and b/data/db/base/4/2838 differ diff --git a/data/db/base/4/2838_fsm b/data/db/base/4/2838_fsm new file mode 100644 index 0000000..08a4f77 Binary files /dev/null and b/data/db/base/4/2838_fsm differ diff --git a/data/db/base/4/2838_vm b/data/db/base/4/2838_vm new file mode 100644 index 0000000..0a0a05f Binary files /dev/null and b/data/db/base/4/2838_vm differ diff --git a/data/db/base/4/2839 b/data/db/base/4/2839 new file mode 100644 index 0000000..253bde3 Binary files /dev/null and b/data/db/base/4/2839 differ diff --git a/data/db/base/4/2840 b/data/db/base/4/2840 new file mode 100644 index 0000000..4bb5369 Binary files /dev/null and b/data/db/base/4/2840 differ diff --git a/data/db/base/4/2840_fsm b/data/db/base/4/2840_fsm new file mode 100644 index 0000000..a454fb0 Binary files /dev/null and b/data/db/base/4/2840_fsm differ diff --git a/data/db/base/4/2840_vm b/data/db/base/4/2840_vm new file mode 100644 index 0000000..5412ff8 Binary files /dev/null and b/data/db/base/4/2840_vm differ diff --git a/data/db/base/4/2841 b/data/db/base/4/2841 new file mode 100644 index 0000000..caa0e87 Binary files /dev/null and b/data/db/base/4/2841 differ diff --git a/data/db/base/4/2995 b/data/db/base/4/2995 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/2996 b/data/db/base/4/2996 new file mode 100644 index 0000000..9bd6faf Binary files /dev/null and b/data/db/base/4/2996 differ diff --git a/data/db/base/4/3079 b/data/db/base/4/3079 new file mode 100644 index 0000000..cba9a19 Binary files /dev/null and b/data/db/base/4/3079 differ diff --git a/data/db/base/4/3079_fsm b/data/db/base/4/3079_fsm new file mode 100644 index 0000000..7732d22 Binary files /dev/null and b/data/db/base/4/3079_fsm differ diff --git a/data/db/base/4/3079_vm b/data/db/base/4/3079_vm new file mode 100644 index 0000000..42e1a7f Binary files /dev/null and b/data/db/base/4/3079_vm differ diff --git a/data/db/base/4/3080 b/data/db/base/4/3080 new file mode 100644 index 0000000..797ce5a Binary files /dev/null and b/data/db/base/4/3080 differ diff --git a/data/db/base/4/3081 b/data/db/base/4/3081 new file mode 100644 index 0000000..460f144 Binary files /dev/null and b/data/db/base/4/3081 differ diff --git a/data/db/base/4/3085 b/data/db/base/4/3085 new file mode 100644 index 0000000..ddfa860 Binary files /dev/null and b/data/db/base/4/3085 differ diff --git a/data/db/base/4/3118 b/data/db/base/4/3118 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3119 b/data/db/base/4/3119 new file mode 100644 index 0000000..8524de7 Binary files /dev/null and b/data/db/base/4/3119 differ diff --git a/data/db/base/4/3164 b/data/db/base/4/3164 new file mode 100644 index 0000000..97cb333 Binary files /dev/null and b/data/db/base/4/3164 differ diff --git a/data/db/base/4/3256 b/data/db/base/4/3256 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3257 b/data/db/base/4/3257 new file mode 100644 index 0000000..6f325ab Binary files /dev/null and b/data/db/base/4/3257 differ diff --git a/data/db/base/4/3258 b/data/db/base/4/3258 new file mode 100644 index 0000000..10c3c94 Binary files /dev/null and b/data/db/base/4/3258 differ diff --git a/data/db/base/4/3350 b/data/db/base/4/3350 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3351 b/data/db/base/4/3351 new file mode 100644 index 0000000..2bfef7f Binary files /dev/null and b/data/db/base/4/3351 differ diff --git a/data/db/base/4/3379 b/data/db/base/4/3379 new file mode 100644 index 0000000..b41a45f Binary files /dev/null and b/data/db/base/4/3379 differ diff --git a/data/db/base/4/3380 b/data/db/base/4/3380 new file mode 100644 index 0000000..f9d290e Binary files /dev/null and b/data/db/base/4/3380 differ diff --git a/data/db/base/4/3381 b/data/db/base/4/3381 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3394 b/data/db/base/4/3394 new file mode 100644 index 0000000..a97eead Binary files /dev/null and b/data/db/base/4/3394 differ diff --git a/data/db/base/4/3394_fsm b/data/db/base/4/3394_fsm new file mode 100644 index 0000000..38ac5f8 Binary files /dev/null and b/data/db/base/4/3394_fsm differ diff --git a/data/db/base/4/3394_vm b/data/db/base/4/3394_vm new file mode 100644 index 0000000..d6cfe83 Binary files /dev/null and b/data/db/base/4/3394_vm differ diff --git a/data/db/base/4/3395 b/data/db/base/4/3395 new file mode 100644 index 0000000..cfadb5e Binary files /dev/null and b/data/db/base/4/3395 differ diff --git a/data/db/base/4/3429 b/data/db/base/4/3429 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3430 b/data/db/base/4/3430 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3431 b/data/db/base/4/3431 new file mode 100644 index 0000000..a890bbf Binary files /dev/null and b/data/db/base/4/3431 differ diff --git a/data/db/base/4/3433 b/data/db/base/4/3433 new file mode 100644 index 0000000..b9e444b Binary files /dev/null and b/data/db/base/4/3433 differ diff --git a/data/db/base/4/3439 b/data/db/base/4/3439 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3440 b/data/db/base/4/3440 new file mode 100644 index 0000000..5b55040 Binary files /dev/null and b/data/db/base/4/3440 differ diff --git a/data/db/base/4/3455 b/data/db/base/4/3455 new file mode 100644 index 0000000..3ed36de Binary files /dev/null and b/data/db/base/4/3455 differ diff --git a/data/db/base/4/3456 b/data/db/base/4/3456 new file mode 100644 index 0000000..edaea1b Binary files /dev/null and b/data/db/base/4/3456 differ diff --git a/data/db/base/4/3456_fsm b/data/db/base/4/3456_fsm new file mode 100644 index 0000000..d66e019 Binary files /dev/null and b/data/db/base/4/3456_fsm differ diff --git a/data/db/base/4/3456_vm b/data/db/base/4/3456_vm new file mode 100644 index 0000000..ba61a7a Binary files /dev/null and b/data/db/base/4/3456_vm differ diff --git a/data/db/base/4/3466 b/data/db/base/4/3466 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3467 b/data/db/base/4/3467 new file mode 100644 index 0000000..188a5e6 Binary files /dev/null and b/data/db/base/4/3467 differ diff --git a/data/db/base/4/3468 b/data/db/base/4/3468 new file mode 100644 index 0000000..00d26fe Binary files /dev/null and b/data/db/base/4/3468 differ diff --git a/data/db/base/4/3501 b/data/db/base/4/3501 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3502 b/data/db/base/4/3502 new file mode 100644 index 0000000..51e62aa Binary files /dev/null and b/data/db/base/4/3502 differ diff --git a/data/db/base/4/3503 b/data/db/base/4/3503 new file mode 100644 index 0000000..818ee9e Binary files /dev/null and b/data/db/base/4/3503 differ diff --git a/data/db/base/4/3534 b/data/db/base/4/3534 new file mode 100644 index 0000000..338d308 Binary files /dev/null and b/data/db/base/4/3534 differ diff --git a/data/db/base/4/3541 b/data/db/base/4/3541 new file mode 100644 index 0000000..40869ad Binary files /dev/null and b/data/db/base/4/3541 differ diff --git a/data/db/base/4/3541_fsm b/data/db/base/4/3541_fsm new file mode 100644 index 0000000..a3a2de4 Binary files /dev/null and b/data/db/base/4/3541_fsm differ diff --git a/data/db/base/4/3541_vm b/data/db/base/4/3541_vm new file mode 100644 index 0000000..5d23ec3 Binary files /dev/null and b/data/db/base/4/3541_vm differ diff --git a/data/db/base/4/3542 b/data/db/base/4/3542 new file mode 100644 index 0000000..ced0066 Binary files /dev/null and b/data/db/base/4/3542 differ diff --git a/data/db/base/4/3574 b/data/db/base/4/3574 new file mode 100644 index 0000000..b026df1 Binary files /dev/null and b/data/db/base/4/3574 differ diff --git a/data/db/base/4/3575 b/data/db/base/4/3575 new file mode 100644 index 0000000..bdec532 Binary files /dev/null and b/data/db/base/4/3575 differ diff --git a/data/db/base/4/3576 b/data/db/base/4/3576 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3596 b/data/db/base/4/3596 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3597 b/data/db/base/4/3597 new file mode 100644 index 0000000..6947306 Binary files /dev/null and b/data/db/base/4/3597 differ diff --git a/data/db/base/4/3598 b/data/db/base/4/3598 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/3599 b/data/db/base/4/3599 new file mode 100644 index 0000000..32bf577 Binary files /dev/null and b/data/db/base/4/3599 differ diff --git a/data/db/base/4/3600 b/data/db/base/4/3600 new file mode 100644 index 0000000..925baac Binary files /dev/null and b/data/db/base/4/3600 differ diff --git a/data/db/base/4/3600_fsm b/data/db/base/4/3600_fsm new file mode 100644 index 0000000..cebec19 Binary files /dev/null and b/data/db/base/4/3600_fsm differ diff --git a/data/db/base/4/3600_vm b/data/db/base/4/3600_vm new file mode 100644 index 0000000..9a4a4bf Binary files /dev/null and b/data/db/base/4/3600_vm differ diff --git a/data/db/base/4/3601 b/data/db/base/4/3601 new file mode 100644 index 0000000..04c846e Binary files /dev/null and b/data/db/base/4/3601 differ diff --git a/data/db/base/4/3601_fsm b/data/db/base/4/3601_fsm new file mode 100644 index 0000000..7732d22 Binary files /dev/null and b/data/db/base/4/3601_fsm differ diff --git a/data/db/base/4/3601_vm b/data/db/base/4/3601_vm new file mode 100644 index 0000000..3bac5ad Binary files /dev/null and b/data/db/base/4/3601_vm differ diff --git a/data/db/base/4/3602 b/data/db/base/4/3602 new file mode 100644 index 0000000..71e243f Binary files /dev/null and b/data/db/base/4/3602 differ diff --git a/data/db/base/4/3602_fsm b/data/db/base/4/3602_fsm new file mode 100644 index 0000000..d7897de Binary files /dev/null and b/data/db/base/4/3602_fsm differ diff --git a/data/db/base/4/3602_vm b/data/db/base/4/3602_vm new file mode 100644 index 0000000..d5fb3e5 Binary files /dev/null and b/data/db/base/4/3602_vm differ diff --git a/data/db/base/4/3603 b/data/db/base/4/3603 new file mode 100644 index 0000000..850a484 Binary files /dev/null and b/data/db/base/4/3603 differ diff --git a/data/db/base/4/3603_fsm b/data/db/base/4/3603_fsm new file mode 100644 index 0000000..c28dd4f Binary files /dev/null and b/data/db/base/4/3603_fsm differ diff --git a/data/db/base/4/3603_vm b/data/db/base/4/3603_vm new file mode 100644 index 0000000..5207c83 Binary files /dev/null and b/data/db/base/4/3603_vm differ diff --git a/data/db/base/4/3604 b/data/db/base/4/3604 new file mode 100644 index 0000000..99f1f36 Binary files /dev/null and b/data/db/base/4/3604 differ diff --git a/data/db/base/4/3605 b/data/db/base/4/3605 new file mode 100644 index 0000000..680237b Binary files /dev/null and b/data/db/base/4/3605 differ diff --git a/data/db/base/4/3606 b/data/db/base/4/3606 new file mode 100644 index 0000000..5d00237 Binary files /dev/null and b/data/db/base/4/3606 differ diff --git a/data/db/base/4/3607 b/data/db/base/4/3607 new file mode 100644 index 0000000..3a1af44 Binary files /dev/null and b/data/db/base/4/3607 differ diff --git a/data/db/base/4/3608 b/data/db/base/4/3608 new file mode 100644 index 0000000..504ad28 Binary files /dev/null and b/data/db/base/4/3608 differ diff --git a/data/db/base/4/3609 b/data/db/base/4/3609 new file mode 100644 index 0000000..980b082 Binary files /dev/null and b/data/db/base/4/3609 differ diff --git a/data/db/base/4/3712 b/data/db/base/4/3712 new file mode 100644 index 0000000..8c0b34b Binary files /dev/null and b/data/db/base/4/3712 differ diff --git a/data/db/base/4/3764 b/data/db/base/4/3764 new file mode 100644 index 0000000..e77d9d7 Binary files /dev/null and b/data/db/base/4/3764 differ diff --git a/data/db/base/4/3764_fsm b/data/db/base/4/3764_fsm new file mode 100644 index 0000000..f64db4d Binary files /dev/null and b/data/db/base/4/3764_fsm differ diff --git a/data/db/base/4/3764_vm b/data/db/base/4/3764_vm new file mode 100644 index 0000000..989c5e0 Binary files /dev/null and b/data/db/base/4/3764_vm differ diff --git a/data/db/base/4/3766 b/data/db/base/4/3766 new file mode 100644 index 0000000..5281a51 Binary files /dev/null and b/data/db/base/4/3766 differ diff --git a/data/db/base/4/3767 b/data/db/base/4/3767 new file mode 100644 index 0000000..e183846 Binary files /dev/null and b/data/db/base/4/3767 differ diff --git a/data/db/base/4/3997 b/data/db/base/4/3997 new file mode 100644 index 0000000..28b5b4b Binary files /dev/null and b/data/db/base/4/3997 differ diff --git a/data/db/base/4/4143 b/data/db/base/4/4143 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4144 b/data/db/base/4/4144 new file mode 100644 index 0000000..781f37a Binary files /dev/null and b/data/db/base/4/4144 differ diff --git a/data/db/base/4/4145 b/data/db/base/4/4145 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4146 b/data/db/base/4/4146 new file mode 100644 index 0000000..11ccf7e Binary files /dev/null and b/data/db/base/4/4146 differ diff --git a/data/db/base/4/4147 b/data/db/base/4/4147 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4148 b/data/db/base/4/4148 new file mode 100644 index 0000000..7fd05a8 Binary files /dev/null and b/data/db/base/4/4148 differ diff --git a/data/db/base/4/4149 b/data/db/base/4/4149 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4150 b/data/db/base/4/4150 new file mode 100644 index 0000000..10171f6 Binary files /dev/null and b/data/db/base/4/4150 differ diff --git a/data/db/base/4/4151 b/data/db/base/4/4151 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4152 b/data/db/base/4/4152 new file mode 100644 index 0000000..869a7f3 Binary files /dev/null and b/data/db/base/4/4152 differ diff --git a/data/db/base/4/4153 b/data/db/base/4/4153 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4154 b/data/db/base/4/4154 new file mode 100644 index 0000000..bb1dca3 Binary files /dev/null and b/data/db/base/4/4154 differ diff --git a/data/db/base/4/4155 b/data/db/base/4/4155 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4156 b/data/db/base/4/4156 new file mode 100644 index 0000000..839ab86 Binary files /dev/null and b/data/db/base/4/4156 differ diff --git a/data/db/base/4/4157 b/data/db/base/4/4157 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4158 b/data/db/base/4/4158 new file mode 100644 index 0000000..12e6868 Binary files /dev/null and b/data/db/base/4/4158 differ diff --git a/data/db/base/4/4159 b/data/db/base/4/4159 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4160 b/data/db/base/4/4160 new file mode 100644 index 0000000..8b80112 Binary files /dev/null and b/data/db/base/4/4160 differ diff --git a/data/db/base/4/4163 b/data/db/base/4/4163 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4164 b/data/db/base/4/4164 new file mode 100644 index 0000000..e86ba95 Binary files /dev/null and b/data/db/base/4/4164 differ diff --git a/data/db/base/4/4165 b/data/db/base/4/4165 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4166 b/data/db/base/4/4166 new file mode 100644 index 0000000..f5fc2b6 Binary files /dev/null and b/data/db/base/4/4166 differ diff --git a/data/db/base/4/4167 b/data/db/base/4/4167 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4168 b/data/db/base/4/4168 new file mode 100644 index 0000000..fdfe146 Binary files /dev/null and b/data/db/base/4/4168 differ diff --git a/data/db/base/4/4169 b/data/db/base/4/4169 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4170 b/data/db/base/4/4170 new file mode 100644 index 0000000..797418b Binary files /dev/null and b/data/db/base/4/4170 differ diff --git a/data/db/base/4/4171 b/data/db/base/4/4171 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4172 b/data/db/base/4/4172 new file mode 100644 index 0000000..969a191 Binary files /dev/null and b/data/db/base/4/4172 differ diff --git a/data/db/base/4/4173 b/data/db/base/4/4173 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/4174 b/data/db/base/4/4174 new file mode 100644 index 0000000..3c4beb7 Binary files /dev/null and b/data/db/base/4/4174 differ diff --git a/data/db/base/4/5002 b/data/db/base/4/5002 new file mode 100644 index 0000000..aefa40d Binary files /dev/null and b/data/db/base/4/5002 differ diff --git a/data/db/base/4/548 b/data/db/base/4/548 new file mode 100644 index 0000000..d6379eb Binary files /dev/null and b/data/db/base/4/548 differ diff --git a/data/db/base/4/549 b/data/db/base/4/549 new file mode 100644 index 0000000..a762ad9 Binary files /dev/null and b/data/db/base/4/549 differ diff --git a/data/db/base/4/6102 b/data/db/base/4/6102 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/6104 b/data/db/base/4/6104 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/6106 b/data/db/base/4/6106 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/6110 b/data/db/base/4/6110 new file mode 100644 index 0000000..42e1920 Binary files /dev/null and b/data/db/base/4/6110 differ diff --git a/data/db/base/4/6111 b/data/db/base/4/6111 new file mode 100644 index 0000000..d012727 Binary files /dev/null and b/data/db/base/4/6111 differ diff --git a/data/db/base/4/6112 b/data/db/base/4/6112 new file mode 100644 index 0000000..293367c Binary files /dev/null and b/data/db/base/4/6112 differ diff --git a/data/db/base/4/6113 b/data/db/base/4/6113 new file mode 100644 index 0000000..542f8fa Binary files /dev/null and b/data/db/base/4/6113 differ diff --git a/data/db/base/4/6116 b/data/db/base/4/6116 new file mode 100644 index 0000000..787d5d1 Binary files /dev/null and b/data/db/base/4/6116 differ diff --git a/data/db/base/4/6117 b/data/db/base/4/6117 new file mode 100644 index 0000000..2b5656b Binary files /dev/null and b/data/db/base/4/6117 differ diff --git a/data/db/base/4/6175 b/data/db/base/4/6175 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/6176 b/data/db/base/4/6176 new file mode 100644 index 0000000..34cba03 Binary files /dev/null and b/data/db/base/4/6176 differ diff --git a/data/db/base/4/6228 b/data/db/base/4/6228 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/6229 b/data/db/base/4/6229 new file mode 100644 index 0000000..4839713 Binary files /dev/null and b/data/db/base/4/6229 differ diff --git a/data/db/base/4/6237 b/data/db/base/4/6237 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/6238 b/data/db/base/4/6238 new file mode 100644 index 0000000..e7c0e8c Binary files /dev/null and b/data/db/base/4/6238 differ diff --git a/data/db/base/4/6239 b/data/db/base/4/6239 new file mode 100644 index 0000000..6c60b50 Binary files /dev/null and b/data/db/base/4/6239 differ diff --git a/data/db/base/4/826 b/data/db/base/4/826 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/4/827 b/data/db/base/4/827 new file mode 100644 index 0000000..bcaf0a1 Binary files /dev/null and b/data/db/base/4/827 differ diff --git a/data/db/base/4/828 b/data/db/base/4/828 new file mode 100644 index 0000000..7aba562 Binary files /dev/null and b/data/db/base/4/828 differ diff --git a/data/db/base/4/PG_VERSION b/data/db/base/4/PG_VERSION new file mode 100644 index 0000000..b6a7d89 --- /dev/null +++ b/data/db/base/4/PG_VERSION @@ -0,0 +1 @@ +16 diff --git a/data/db/base/4/pg_filenode.map b/data/db/base/4/pg_filenode.map new file mode 100644 index 0000000..4fc801a Binary files /dev/null and b/data/db/base/4/pg_filenode.map differ diff --git a/data/db/base/5/112 b/data/db/base/5/112 new file mode 100644 index 0000000..2bfc88c Binary files /dev/null and b/data/db/base/5/112 differ diff --git a/data/db/base/5/113 b/data/db/base/5/113 new file mode 100644 index 0000000..c36defa Binary files /dev/null and b/data/db/base/5/113 differ diff --git a/data/db/base/5/1247 b/data/db/base/5/1247 new file mode 100644 index 0000000..e306280 Binary files /dev/null and b/data/db/base/5/1247 differ diff --git a/data/db/base/5/1247_fsm b/data/db/base/5/1247_fsm new file mode 100644 index 0000000..013faac Binary files /dev/null and b/data/db/base/5/1247_fsm differ diff --git a/data/db/base/5/1247_vm b/data/db/base/5/1247_vm new file mode 100644 index 0000000..ebb7d13 Binary files /dev/null and b/data/db/base/5/1247_vm differ diff --git a/data/db/base/5/1249 b/data/db/base/5/1249 new file mode 100644 index 0000000..ace6a24 Binary files /dev/null and b/data/db/base/5/1249 differ diff --git a/data/db/base/5/1249_fsm b/data/db/base/5/1249_fsm new file mode 100644 index 0000000..a538ac8 Binary files /dev/null and b/data/db/base/5/1249_fsm differ diff --git a/data/db/base/5/1249_vm b/data/db/base/5/1249_vm new file mode 100644 index 0000000..640d077 Binary files /dev/null and b/data/db/base/5/1249_vm differ diff --git a/data/db/base/5/1255 b/data/db/base/5/1255 new file mode 100644 index 0000000..a3b1864 Binary files /dev/null and b/data/db/base/5/1255 differ diff --git a/data/db/base/5/1255_fsm b/data/db/base/5/1255_fsm new file mode 100644 index 0000000..69a5d8f Binary files /dev/null and b/data/db/base/5/1255_fsm differ diff --git a/data/db/base/5/1255_vm b/data/db/base/5/1255_vm new file mode 100644 index 0000000..3f97975 Binary files /dev/null and b/data/db/base/5/1255_vm differ diff --git a/data/db/base/5/1259 b/data/db/base/5/1259 new file mode 100644 index 0000000..9814d63 Binary files /dev/null and b/data/db/base/5/1259 differ diff --git a/data/db/base/5/1259_fsm b/data/db/base/5/1259_fsm new file mode 100644 index 0000000..05d8c51 Binary files /dev/null and b/data/db/base/5/1259_fsm differ diff --git a/data/db/base/5/1259_vm b/data/db/base/5/1259_vm new file mode 100644 index 0000000..c144ccf Binary files /dev/null and b/data/db/base/5/1259_vm differ diff --git a/data/db/base/5/13460 b/data/db/base/5/13460 new file mode 100644 index 0000000..e45417c Binary files /dev/null and b/data/db/base/5/13460 differ diff --git a/data/db/base/5/13460_fsm b/data/db/base/5/13460_fsm new file mode 100644 index 0000000..2a80b9a Binary files /dev/null and b/data/db/base/5/13460_fsm differ diff --git a/data/db/base/5/13460_vm b/data/db/base/5/13460_vm new file mode 100644 index 0000000..81f667b Binary files /dev/null and b/data/db/base/5/13460_vm differ diff --git a/data/db/base/5/13463 b/data/db/base/5/13463 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/13464 b/data/db/base/5/13464 new file mode 100644 index 0000000..c1b4577 Binary files /dev/null and b/data/db/base/5/13464 differ diff --git a/data/db/base/5/13465 b/data/db/base/5/13465 new file mode 100644 index 0000000..445e4ba Binary files /dev/null and b/data/db/base/5/13465 differ diff --git a/data/db/base/5/13465_fsm b/data/db/base/5/13465_fsm new file mode 100644 index 0000000..ce7c26e Binary files /dev/null and b/data/db/base/5/13465_fsm differ diff --git a/data/db/base/5/13465_vm b/data/db/base/5/13465_vm new file mode 100644 index 0000000..7836a65 Binary files /dev/null and b/data/db/base/5/13465_vm differ diff --git a/data/db/base/5/13468 b/data/db/base/5/13468 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/13469 b/data/db/base/5/13469 new file mode 100644 index 0000000..f36c5b1 Binary files /dev/null and b/data/db/base/5/13469 differ diff --git a/data/db/base/5/13470 b/data/db/base/5/13470 new file mode 100644 index 0000000..7f3e90e Binary files /dev/null and b/data/db/base/5/13470 differ diff --git a/data/db/base/5/13470_fsm b/data/db/base/5/13470_fsm new file mode 100644 index 0000000..0673ada Binary files /dev/null and b/data/db/base/5/13470_fsm differ diff --git a/data/db/base/5/13470_vm b/data/db/base/5/13470_vm new file mode 100644 index 0000000..e85447f Binary files /dev/null and b/data/db/base/5/13470_vm differ diff --git a/data/db/base/5/13473 b/data/db/base/5/13473 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/13474 b/data/db/base/5/13474 new file mode 100644 index 0000000..c72eeb1 Binary files /dev/null and b/data/db/base/5/13474 differ diff --git a/data/db/base/5/13475 b/data/db/base/5/13475 new file mode 100644 index 0000000..a79a68d Binary files /dev/null and b/data/db/base/5/13475 differ diff --git a/data/db/base/5/13475_fsm b/data/db/base/5/13475_fsm new file mode 100644 index 0000000..a836ddf Binary files /dev/null and b/data/db/base/5/13475_fsm differ diff --git a/data/db/base/5/13475_vm b/data/db/base/5/13475_vm new file mode 100644 index 0000000..ecf21c5 Binary files /dev/null and b/data/db/base/5/13475_vm differ diff --git a/data/db/base/5/13478 b/data/db/base/5/13478 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/13479 b/data/db/base/5/13479 new file mode 100644 index 0000000..7142efc Binary files /dev/null and b/data/db/base/5/13479 differ diff --git a/data/db/base/5/1417 b/data/db/base/5/1417 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/1418 b/data/db/base/5/1418 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/174 b/data/db/base/5/174 new file mode 100644 index 0000000..fedcb88 Binary files /dev/null and b/data/db/base/5/174 differ diff --git a/data/db/base/5/175 b/data/db/base/5/175 new file mode 100644 index 0000000..7ee5b4a Binary files /dev/null and b/data/db/base/5/175 differ diff --git a/data/db/base/5/2187 b/data/db/base/5/2187 new file mode 100644 index 0000000..77d8c76 Binary files /dev/null and b/data/db/base/5/2187 differ diff --git a/data/db/base/5/2224 b/data/db/base/5/2224 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/2228 b/data/db/base/5/2228 new file mode 100644 index 0000000..738f259 Binary files /dev/null and b/data/db/base/5/2228 differ diff --git a/data/db/base/5/2328 b/data/db/base/5/2328 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/2336 b/data/db/base/5/2336 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/2337 b/data/db/base/5/2337 new file mode 100644 index 0000000..b706ef8 Binary files /dev/null and b/data/db/base/5/2337 differ diff --git a/data/db/base/5/2579 b/data/db/base/5/2579 new file mode 100644 index 0000000..48c7adb Binary files /dev/null and b/data/db/base/5/2579 differ diff --git a/data/db/base/5/2600 b/data/db/base/5/2600 new file mode 100644 index 0000000..d98ee62 Binary files /dev/null and b/data/db/base/5/2600 differ diff --git a/data/db/base/5/2600_fsm b/data/db/base/5/2600_fsm new file mode 100644 index 0000000..0938592 Binary files /dev/null and b/data/db/base/5/2600_fsm differ diff --git a/data/db/base/5/2600_vm b/data/db/base/5/2600_vm new file mode 100644 index 0000000..1cfb499 Binary files /dev/null and b/data/db/base/5/2600_vm differ diff --git a/data/db/base/5/2601 b/data/db/base/5/2601 new file mode 100644 index 0000000..d8001c8 Binary files /dev/null and b/data/db/base/5/2601 differ diff --git a/data/db/base/5/2601_fsm b/data/db/base/5/2601_fsm new file mode 100644 index 0000000..d388044 Binary files /dev/null and b/data/db/base/5/2601_fsm differ diff --git a/data/db/base/5/2601_vm b/data/db/base/5/2601_vm new file mode 100644 index 0000000..d164717 Binary files /dev/null and b/data/db/base/5/2601_vm differ diff --git a/data/db/base/5/2602 b/data/db/base/5/2602 new file mode 100644 index 0000000..4a27b0a Binary files /dev/null and b/data/db/base/5/2602 differ diff --git a/data/db/base/5/2602_fsm b/data/db/base/5/2602_fsm new file mode 100644 index 0000000..23170d8 Binary files /dev/null and b/data/db/base/5/2602_fsm differ diff --git a/data/db/base/5/2602_vm b/data/db/base/5/2602_vm new file mode 100644 index 0000000..26125f2 Binary files /dev/null and b/data/db/base/5/2602_vm differ diff --git a/data/db/base/5/2603 b/data/db/base/5/2603 new file mode 100644 index 0000000..d511af5 Binary files /dev/null and b/data/db/base/5/2603 differ diff --git a/data/db/base/5/2603_fsm b/data/db/base/5/2603_fsm new file mode 100644 index 0000000..949bd18 Binary files /dev/null and b/data/db/base/5/2603_fsm differ diff --git a/data/db/base/5/2603_vm b/data/db/base/5/2603_vm new file mode 100644 index 0000000..41d1283 Binary files /dev/null and b/data/db/base/5/2603_vm differ diff --git a/data/db/base/5/2604 b/data/db/base/5/2604 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/2605 b/data/db/base/5/2605 new file mode 100644 index 0000000..eeaa7ea Binary files /dev/null and b/data/db/base/5/2605 differ diff --git a/data/db/base/5/2605_fsm b/data/db/base/5/2605_fsm new file mode 100644 index 0000000..f3b92bf Binary files /dev/null and b/data/db/base/5/2605_fsm differ diff --git a/data/db/base/5/2605_vm b/data/db/base/5/2605_vm new file mode 100644 index 0000000..27c7a29 Binary files /dev/null and b/data/db/base/5/2605_vm differ diff --git a/data/db/base/5/2606 b/data/db/base/5/2606 new file mode 100644 index 0000000..e870d47 Binary files /dev/null and b/data/db/base/5/2606 differ diff --git a/data/db/base/5/2606_fsm b/data/db/base/5/2606_fsm new file mode 100644 index 0000000..267454e Binary files /dev/null and b/data/db/base/5/2606_fsm differ diff --git a/data/db/base/5/2606_vm b/data/db/base/5/2606_vm new file mode 100644 index 0000000..0114c0b Binary files /dev/null and b/data/db/base/5/2606_vm differ diff --git a/data/db/base/5/2607 b/data/db/base/5/2607 new file mode 100644 index 0000000..bfad49a Binary files /dev/null and b/data/db/base/5/2607 differ diff --git a/data/db/base/5/2607_fsm b/data/db/base/5/2607_fsm new file mode 100644 index 0000000..80ac8b1 Binary files /dev/null and b/data/db/base/5/2607_fsm differ diff --git a/data/db/base/5/2607_vm b/data/db/base/5/2607_vm new file mode 100644 index 0000000..1642dc7 Binary files /dev/null and b/data/db/base/5/2607_vm differ diff --git a/data/db/base/5/2608 b/data/db/base/5/2608 new file mode 100644 index 0000000..b8846d6 Binary files /dev/null and b/data/db/base/5/2608 differ diff --git a/data/db/base/5/2608_fsm b/data/db/base/5/2608_fsm new file mode 100644 index 0000000..95081cd Binary files /dev/null and b/data/db/base/5/2608_fsm differ diff --git a/data/db/base/5/2608_vm b/data/db/base/5/2608_vm new file mode 100644 index 0000000..de5b823 Binary files /dev/null and b/data/db/base/5/2608_vm differ diff --git a/data/db/base/5/2609 b/data/db/base/5/2609 new file mode 100644 index 0000000..6b611b9 Binary files /dev/null and b/data/db/base/5/2609 differ diff --git a/data/db/base/5/2609_fsm b/data/db/base/5/2609_fsm new file mode 100644 index 0000000..624979d Binary files /dev/null and b/data/db/base/5/2609_fsm differ diff --git a/data/db/base/5/2609_vm b/data/db/base/5/2609_vm new file mode 100644 index 0000000..94079b3 Binary files /dev/null and b/data/db/base/5/2609_vm differ diff --git a/data/db/base/5/2610 b/data/db/base/5/2610 new file mode 100644 index 0000000..b9c85e1 Binary files /dev/null and b/data/db/base/5/2610 differ diff --git a/data/db/base/5/2610_fsm b/data/db/base/5/2610_fsm new file mode 100644 index 0000000..ecbcb5f Binary files /dev/null and b/data/db/base/5/2610_fsm differ diff --git a/data/db/base/5/2610_vm b/data/db/base/5/2610_vm new file mode 100644 index 0000000..1f99737 Binary files /dev/null and b/data/db/base/5/2610_vm differ diff --git a/data/db/base/5/2611 b/data/db/base/5/2611 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/2612 b/data/db/base/5/2612 new file mode 100644 index 0000000..a0eaf2f Binary files /dev/null and b/data/db/base/5/2612 differ diff --git a/data/db/base/5/2612_fsm b/data/db/base/5/2612_fsm new file mode 100644 index 0000000..877976a Binary files /dev/null and b/data/db/base/5/2612_fsm differ diff --git a/data/db/base/5/2612_vm b/data/db/base/5/2612_vm new file mode 100644 index 0000000..f63723c Binary files /dev/null and b/data/db/base/5/2612_vm differ diff --git a/data/db/base/5/2613 b/data/db/base/5/2613 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/2615 b/data/db/base/5/2615 new file mode 100644 index 0000000..4fcf163 Binary files /dev/null and b/data/db/base/5/2615 differ diff --git a/data/db/base/5/2615_fsm b/data/db/base/5/2615_fsm new file mode 100644 index 0000000..d041693 Binary files /dev/null and b/data/db/base/5/2615_fsm differ diff --git a/data/db/base/5/2615_vm b/data/db/base/5/2615_vm new file mode 100644 index 0000000..52e94f1 Binary files /dev/null and b/data/db/base/5/2615_vm differ diff --git a/data/db/base/5/2616 b/data/db/base/5/2616 new file mode 100644 index 0000000..0d60d79 Binary files /dev/null and b/data/db/base/5/2616 differ diff --git a/data/db/base/5/2616_fsm b/data/db/base/5/2616_fsm new file mode 100644 index 0000000..cb924c9 Binary files /dev/null and b/data/db/base/5/2616_fsm differ diff --git a/data/db/base/5/2616_vm b/data/db/base/5/2616_vm new file mode 100644 index 0000000..17caf7b Binary files /dev/null and b/data/db/base/5/2616_vm differ diff --git a/data/db/base/5/2617 b/data/db/base/5/2617 new file mode 100644 index 0000000..bcdfc18 Binary files /dev/null and b/data/db/base/5/2617 differ diff --git a/data/db/base/5/2617_fsm b/data/db/base/5/2617_fsm new file mode 100644 index 0000000..29d6066 Binary files /dev/null and b/data/db/base/5/2617_fsm differ diff --git a/data/db/base/5/2617_vm b/data/db/base/5/2617_vm new file mode 100644 index 0000000..c784720 Binary files /dev/null and b/data/db/base/5/2617_vm differ diff --git a/data/db/base/5/2618 b/data/db/base/5/2618 new file mode 100644 index 0000000..7d2f38d Binary files /dev/null and b/data/db/base/5/2618 differ diff --git a/data/db/base/5/2618_fsm b/data/db/base/5/2618_fsm new file mode 100644 index 0000000..bcee926 Binary files /dev/null and b/data/db/base/5/2618_fsm differ diff --git a/data/db/base/5/2618_vm b/data/db/base/5/2618_vm new file mode 100644 index 0000000..4832d2f Binary files /dev/null and b/data/db/base/5/2618_vm differ diff --git a/data/db/base/5/2619 b/data/db/base/5/2619 new file mode 100644 index 0000000..e3f06ab Binary files /dev/null and b/data/db/base/5/2619 differ diff --git a/data/db/base/5/2619_fsm b/data/db/base/5/2619_fsm new file mode 100644 index 0000000..c40895b Binary files /dev/null and b/data/db/base/5/2619_fsm differ diff --git a/data/db/base/5/2619_vm b/data/db/base/5/2619_vm new file mode 100644 index 0000000..a649570 Binary files /dev/null and b/data/db/base/5/2619_vm differ diff --git a/data/db/base/5/2620 b/data/db/base/5/2620 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/2650 b/data/db/base/5/2650 new file mode 100644 index 0000000..ef4f21b Binary files /dev/null and b/data/db/base/5/2650 differ diff --git a/data/db/base/5/2651 b/data/db/base/5/2651 new file mode 100644 index 0000000..9d21e32 Binary files /dev/null and b/data/db/base/5/2651 differ diff --git a/data/db/base/5/2652 b/data/db/base/5/2652 new file mode 100644 index 0000000..ab6e13e Binary files /dev/null and b/data/db/base/5/2652 differ diff --git a/data/db/base/5/2653 b/data/db/base/5/2653 new file mode 100644 index 0000000..4c032c8 Binary files /dev/null and b/data/db/base/5/2653 differ diff --git a/data/db/base/5/2654 b/data/db/base/5/2654 new file mode 100644 index 0000000..53aa6fc Binary files /dev/null and b/data/db/base/5/2654 differ diff --git a/data/db/base/5/2655 b/data/db/base/5/2655 new file mode 100644 index 0000000..0b22aae Binary files /dev/null and b/data/db/base/5/2655 differ diff --git a/data/db/base/5/2656 b/data/db/base/5/2656 new file mode 100644 index 0000000..0e2e0bc Binary files /dev/null and b/data/db/base/5/2656 differ diff --git a/data/db/base/5/2657 b/data/db/base/5/2657 new file mode 100644 index 0000000..a87fd85 Binary files /dev/null and b/data/db/base/5/2657 differ diff --git a/data/db/base/5/2658 b/data/db/base/5/2658 new file mode 100644 index 0000000..47ed9cd Binary files /dev/null and b/data/db/base/5/2658 differ diff --git a/data/db/base/5/2659 b/data/db/base/5/2659 new file mode 100644 index 0000000..540409d Binary files /dev/null and b/data/db/base/5/2659 differ diff --git a/data/db/base/5/2660 b/data/db/base/5/2660 new file mode 100644 index 0000000..3a7a1d2 Binary files /dev/null and b/data/db/base/5/2660 differ diff --git a/data/db/base/5/2661 b/data/db/base/5/2661 new file mode 100644 index 0000000..aa5178a Binary files /dev/null and b/data/db/base/5/2661 differ diff --git a/data/db/base/5/2662 b/data/db/base/5/2662 new file mode 100644 index 0000000..61049ce Binary files /dev/null and b/data/db/base/5/2662 differ diff --git a/data/db/base/5/2663 b/data/db/base/5/2663 new file mode 100644 index 0000000..ca3bb22 Binary files /dev/null and b/data/db/base/5/2663 differ diff --git a/data/db/base/5/2664 b/data/db/base/5/2664 new file mode 100644 index 0000000..6aa9639 Binary files /dev/null and b/data/db/base/5/2664 differ diff --git a/data/db/base/5/2665 b/data/db/base/5/2665 new file mode 100644 index 0000000..c659a87 Binary files /dev/null and b/data/db/base/5/2665 differ diff --git a/data/db/base/5/2666 b/data/db/base/5/2666 new file mode 100644 index 0000000..6597090 Binary files /dev/null and b/data/db/base/5/2666 differ diff --git a/data/db/base/5/2667 b/data/db/base/5/2667 new file mode 100644 index 0000000..ca81554 Binary files /dev/null and b/data/db/base/5/2667 differ diff --git a/data/db/base/5/2668 b/data/db/base/5/2668 new file mode 100644 index 0000000..c5baf1d Binary files /dev/null and b/data/db/base/5/2668 differ diff --git a/data/db/base/5/2669 b/data/db/base/5/2669 new file mode 100644 index 0000000..7379bc3 Binary files /dev/null and b/data/db/base/5/2669 differ diff --git a/data/db/base/5/2670 b/data/db/base/5/2670 new file mode 100644 index 0000000..5b35b4d Binary files /dev/null and b/data/db/base/5/2670 differ diff --git a/data/db/base/5/2673 b/data/db/base/5/2673 new file mode 100644 index 0000000..ebc9fb6 Binary files /dev/null and b/data/db/base/5/2673 differ diff --git a/data/db/base/5/2674 b/data/db/base/5/2674 new file mode 100644 index 0000000..1d0f39e Binary files /dev/null and b/data/db/base/5/2674 differ diff --git a/data/db/base/5/2675 b/data/db/base/5/2675 new file mode 100644 index 0000000..e86d993 Binary files /dev/null and b/data/db/base/5/2675 differ diff --git a/data/db/base/5/2678 b/data/db/base/5/2678 new file mode 100644 index 0000000..6fae80b Binary files /dev/null and b/data/db/base/5/2678 differ diff --git a/data/db/base/5/2679 b/data/db/base/5/2679 new file mode 100644 index 0000000..b5dab80 Binary files /dev/null and b/data/db/base/5/2679 differ diff --git a/data/db/base/5/2680 b/data/db/base/5/2680 new file mode 100644 index 0000000..e15ddb4 Binary files /dev/null and b/data/db/base/5/2680 differ diff --git a/data/db/base/5/2681 b/data/db/base/5/2681 new file mode 100644 index 0000000..df82b84 Binary files /dev/null and b/data/db/base/5/2681 differ diff --git a/data/db/base/5/2682 b/data/db/base/5/2682 new file mode 100644 index 0000000..69af478 Binary files /dev/null and b/data/db/base/5/2682 differ diff --git a/data/db/base/5/2683 b/data/db/base/5/2683 new file mode 100644 index 0000000..014cbee Binary files /dev/null and b/data/db/base/5/2683 differ diff --git a/data/db/base/5/2684 b/data/db/base/5/2684 new file mode 100644 index 0000000..8be7c08 Binary files /dev/null and b/data/db/base/5/2684 differ diff --git a/data/db/base/5/2685 b/data/db/base/5/2685 new file mode 100644 index 0000000..ce8da2e Binary files /dev/null and b/data/db/base/5/2685 differ diff --git a/data/db/base/5/2686 b/data/db/base/5/2686 new file mode 100644 index 0000000..51e4357 Binary files /dev/null and b/data/db/base/5/2686 differ diff --git a/data/db/base/5/2687 b/data/db/base/5/2687 new file mode 100644 index 0000000..8df59d1 Binary files /dev/null and b/data/db/base/5/2687 differ diff --git a/data/db/base/5/2688 b/data/db/base/5/2688 new file mode 100644 index 0000000..f5448dc Binary files /dev/null and b/data/db/base/5/2688 differ diff --git a/data/db/base/5/2689 b/data/db/base/5/2689 new file mode 100644 index 0000000..8f8223b Binary files /dev/null and b/data/db/base/5/2689 differ diff --git a/data/db/base/5/2690 b/data/db/base/5/2690 new file mode 100644 index 0000000..dac708a Binary files /dev/null and b/data/db/base/5/2690 differ diff --git a/data/db/base/5/2691 b/data/db/base/5/2691 new file mode 100644 index 0000000..ec9de86 Binary files /dev/null and b/data/db/base/5/2691 differ diff --git a/data/db/base/5/2692 b/data/db/base/5/2692 new file mode 100644 index 0000000..cce771d Binary files /dev/null and b/data/db/base/5/2692 differ diff --git a/data/db/base/5/2693 b/data/db/base/5/2693 new file mode 100644 index 0000000..84272cd Binary files /dev/null and b/data/db/base/5/2693 differ diff --git a/data/db/base/5/2696 b/data/db/base/5/2696 new file mode 100644 index 0000000..d7d52a2 Binary files /dev/null and b/data/db/base/5/2696 differ diff --git a/data/db/base/5/2699 b/data/db/base/5/2699 new file mode 100644 index 0000000..8417313 Binary files /dev/null and b/data/db/base/5/2699 differ diff --git a/data/db/base/5/2701 b/data/db/base/5/2701 new file mode 100644 index 0000000..8892de2 Binary files /dev/null and b/data/db/base/5/2701 differ diff --git a/data/db/base/5/2702 b/data/db/base/5/2702 new file mode 100644 index 0000000..c40e5aa Binary files /dev/null and b/data/db/base/5/2702 differ diff --git a/data/db/base/5/2703 b/data/db/base/5/2703 new file mode 100644 index 0000000..b2068a0 Binary files /dev/null and b/data/db/base/5/2703 differ diff --git a/data/db/base/5/2704 b/data/db/base/5/2704 new file mode 100644 index 0000000..3c9f0b7 Binary files /dev/null and b/data/db/base/5/2704 differ diff --git a/data/db/base/5/2753 b/data/db/base/5/2753 new file mode 100644 index 0000000..3c16dff Binary files /dev/null and b/data/db/base/5/2753 differ diff --git a/data/db/base/5/2753_fsm b/data/db/base/5/2753_fsm new file mode 100644 index 0000000..642bce3 Binary files /dev/null and b/data/db/base/5/2753_fsm differ diff --git a/data/db/base/5/2753_vm b/data/db/base/5/2753_vm new file mode 100644 index 0000000..7771455 Binary files /dev/null and b/data/db/base/5/2753_vm differ diff --git a/data/db/base/5/2754 b/data/db/base/5/2754 new file mode 100644 index 0000000..f3df39d Binary files /dev/null and b/data/db/base/5/2754 differ diff --git a/data/db/base/5/2755 b/data/db/base/5/2755 new file mode 100644 index 0000000..cc671dc Binary files /dev/null and b/data/db/base/5/2755 differ diff --git a/data/db/base/5/2756 b/data/db/base/5/2756 new file mode 100644 index 0000000..6a6c87e Binary files /dev/null and b/data/db/base/5/2756 differ diff --git a/data/db/base/5/2757 b/data/db/base/5/2757 new file mode 100644 index 0000000..57830cb Binary files /dev/null and b/data/db/base/5/2757 differ diff --git a/data/db/base/5/2830 b/data/db/base/5/2830 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/2831 b/data/db/base/5/2831 new file mode 100644 index 0000000..6c30e94 Binary files /dev/null and b/data/db/base/5/2831 differ diff --git a/data/db/base/5/2832 b/data/db/base/5/2832 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/2833 b/data/db/base/5/2833 new file mode 100644 index 0000000..e364449 Binary files /dev/null and b/data/db/base/5/2833 differ diff --git a/data/db/base/5/2834 b/data/db/base/5/2834 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/2835 b/data/db/base/5/2835 new file mode 100644 index 0000000..b028c65 Binary files /dev/null and b/data/db/base/5/2835 differ diff --git a/data/db/base/5/2836 b/data/db/base/5/2836 new file mode 100644 index 0000000..ff9b62f Binary files /dev/null and b/data/db/base/5/2836 differ diff --git a/data/db/base/5/2836_fsm b/data/db/base/5/2836_fsm new file mode 100644 index 0000000..06e1e26 Binary files /dev/null and b/data/db/base/5/2836_fsm differ diff --git a/data/db/base/5/2836_vm b/data/db/base/5/2836_vm new file mode 100644 index 0000000..3f8c31e Binary files /dev/null and b/data/db/base/5/2836_vm differ diff --git a/data/db/base/5/2837 b/data/db/base/5/2837 new file mode 100644 index 0000000..a6d62ac Binary files /dev/null and b/data/db/base/5/2837 differ diff --git a/data/db/base/5/2838 b/data/db/base/5/2838 new file mode 100644 index 0000000..99ece20 Binary files /dev/null and b/data/db/base/5/2838 differ diff --git a/data/db/base/5/2838_fsm b/data/db/base/5/2838_fsm new file mode 100644 index 0000000..08a4f77 Binary files /dev/null and b/data/db/base/5/2838_fsm differ diff --git a/data/db/base/5/2838_vm b/data/db/base/5/2838_vm new file mode 100644 index 0000000..0a0a05f Binary files /dev/null and b/data/db/base/5/2838_vm differ diff --git a/data/db/base/5/2839 b/data/db/base/5/2839 new file mode 100644 index 0000000..253bde3 Binary files /dev/null and b/data/db/base/5/2839 differ diff --git a/data/db/base/5/2840 b/data/db/base/5/2840 new file mode 100644 index 0000000..4bb5369 Binary files /dev/null and b/data/db/base/5/2840 differ diff --git a/data/db/base/5/2840_fsm b/data/db/base/5/2840_fsm new file mode 100644 index 0000000..a454fb0 Binary files /dev/null and b/data/db/base/5/2840_fsm differ diff --git a/data/db/base/5/2840_vm b/data/db/base/5/2840_vm new file mode 100644 index 0000000..5412ff8 Binary files /dev/null and b/data/db/base/5/2840_vm differ diff --git a/data/db/base/5/2841 b/data/db/base/5/2841 new file mode 100644 index 0000000..caa0e87 Binary files /dev/null and b/data/db/base/5/2841 differ diff --git a/data/db/base/5/2995 b/data/db/base/5/2995 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/2996 b/data/db/base/5/2996 new file mode 100644 index 0000000..9bd6faf Binary files /dev/null and b/data/db/base/5/2996 differ diff --git a/data/db/base/5/3079 b/data/db/base/5/3079 new file mode 100644 index 0000000..cba9a19 Binary files /dev/null and b/data/db/base/5/3079 differ diff --git a/data/db/base/5/3079_fsm b/data/db/base/5/3079_fsm new file mode 100644 index 0000000..7732d22 Binary files /dev/null and b/data/db/base/5/3079_fsm differ diff --git a/data/db/base/5/3079_vm b/data/db/base/5/3079_vm new file mode 100644 index 0000000..42e1a7f Binary files /dev/null and b/data/db/base/5/3079_vm differ diff --git a/data/db/base/5/3080 b/data/db/base/5/3080 new file mode 100644 index 0000000..797ce5a Binary files /dev/null and b/data/db/base/5/3080 differ diff --git a/data/db/base/5/3081 b/data/db/base/5/3081 new file mode 100644 index 0000000..460f144 Binary files /dev/null and b/data/db/base/5/3081 differ diff --git a/data/db/base/5/3085 b/data/db/base/5/3085 new file mode 100644 index 0000000..ddfa860 Binary files /dev/null and b/data/db/base/5/3085 differ diff --git a/data/db/base/5/3118 b/data/db/base/5/3118 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3119 b/data/db/base/5/3119 new file mode 100644 index 0000000..8524de7 Binary files /dev/null and b/data/db/base/5/3119 differ diff --git a/data/db/base/5/3164 b/data/db/base/5/3164 new file mode 100644 index 0000000..97cb333 Binary files /dev/null and b/data/db/base/5/3164 differ diff --git a/data/db/base/5/3256 b/data/db/base/5/3256 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3257 b/data/db/base/5/3257 new file mode 100644 index 0000000..6f325ab Binary files /dev/null and b/data/db/base/5/3257 differ diff --git a/data/db/base/5/3258 b/data/db/base/5/3258 new file mode 100644 index 0000000..10c3c94 Binary files /dev/null and b/data/db/base/5/3258 differ diff --git a/data/db/base/5/3350 b/data/db/base/5/3350 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3351 b/data/db/base/5/3351 new file mode 100644 index 0000000..2bfef7f Binary files /dev/null and b/data/db/base/5/3351 differ diff --git a/data/db/base/5/3379 b/data/db/base/5/3379 new file mode 100644 index 0000000..b41a45f Binary files /dev/null and b/data/db/base/5/3379 differ diff --git a/data/db/base/5/3380 b/data/db/base/5/3380 new file mode 100644 index 0000000..f9d290e Binary files /dev/null and b/data/db/base/5/3380 differ diff --git a/data/db/base/5/3381 b/data/db/base/5/3381 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3394 b/data/db/base/5/3394 new file mode 100644 index 0000000..a97eead Binary files /dev/null and b/data/db/base/5/3394 differ diff --git a/data/db/base/5/3394_fsm b/data/db/base/5/3394_fsm new file mode 100644 index 0000000..38ac5f8 Binary files /dev/null and b/data/db/base/5/3394_fsm differ diff --git a/data/db/base/5/3394_vm b/data/db/base/5/3394_vm new file mode 100644 index 0000000..d6cfe83 Binary files /dev/null and b/data/db/base/5/3394_vm differ diff --git a/data/db/base/5/3395 b/data/db/base/5/3395 new file mode 100644 index 0000000..cfadb5e Binary files /dev/null and b/data/db/base/5/3395 differ diff --git a/data/db/base/5/3429 b/data/db/base/5/3429 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3430 b/data/db/base/5/3430 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3431 b/data/db/base/5/3431 new file mode 100644 index 0000000..a890bbf Binary files /dev/null and b/data/db/base/5/3431 differ diff --git a/data/db/base/5/3433 b/data/db/base/5/3433 new file mode 100644 index 0000000..b9e444b Binary files /dev/null and b/data/db/base/5/3433 differ diff --git a/data/db/base/5/3439 b/data/db/base/5/3439 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3440 b/data/db/base/5/3440 new file mode 100644 index 0000000..5b55040 Binary files /dev/null and b/data/db/base/5/3440 differ diff --git a/data/db/base/5/3455 b/data/db/base/5/3455 new file mode 100644 index 0000000..3ed36de Binary files /dev/null and b/data/db/base/5/3455 differ diff --git a/data/db/base/5/3456 b/data/db/base/5/3456 new file mode 100644 index 0000000..edaea1b Binary files /dev/null and b/data/db/base/5/3456 differ diff --git a/data/db/base/5/3456_fsm b/data/db/base/5/3456_fsm new file mode 100644 index 0000000..d66e019 Binary files /dev/null and b/data/db/base/5/3456_fsm differ diff --git a/data/db/base/5/3456_vm b/data/db/base/5/3456_vm new file mode 100644 index 0000000..ba61a7a Binary files /dev/null and b/data/db/base/5/3456_vm differ diff --git a/data/db/base/5/3466 b/data/db/base/5/3466 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3467 b/data/db/base/5/3467 new file mode 100644 index 0000000..188a5e6 Binary files /dev/null and b/data/db/base/5/3467 differ diff --git a/data/db/base/5/3468 b/data/db/base/5/3468 new file mode 100644 index 0000000..00d26fe Binary files /dev/null and b/data/db/base/5/3468 differ diff --git a/data/db/base/5/3501 b/data/db/base/5/3501 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3502 b/data/db/base/5/3502 new file mode 100644 index 0000000..51e62aa Binary files /dev/null and b/data/db/base/5/3502 differ diff --git a/data/db/base/5/3503 b/data/db/base/5/3503 new file mode 100644 index 0000000..818ee9e Binary files /dev/null and b/data/db/base/5/3503 differ diff --git a/data/db/base/5/3534 b/data/db/base/5/3534 new file mode 100644 index 0000000..338d308 Binary files /dev/null and b/data/db/base/5/3534 differ diff --git a/data/db/base/5/3541 b/data/db/base/5/3541 new file mode 100644 index 0000000..40869ad Binary files /dev/null and b/data/db/base/5/3541 differ diff --git a/data/db/base/5/3541_fsm b/data/db/base/5/3541_fsm new file mode 100644 index 0000000..a3a2de4 Binary files /dev/null and b/data/db/base/5/3541_fsm differ diff --git a/data/db/base/5/3541_vm b/data/db/base/5/3541_vm new file mode 100644 index 0000000..5d23ec3 Binary files /dev/null and b/data/db/base/5/3541_vm differ diff --git a/data/db/base/5/3542 b/data/db/base/5/3542 new file mode 100644 index 0000000..ced0066 Binary files /dev/null and b/data/db/base/5/3542 differ diff --git a/data/db/base/5/3574 b/data/db/base/5/3574 new file mode 100644 index 0000000..b026df1 Binary files /dev/null and b/data/db/base/5/3574 differ diff --git a/data/db/base/5/3575 b/data/db/base/5/3575 new file mode 100644 index 0000000..bdec532 Binary files /dev/null and b/data/db/base/5/3575 differ diff --git a/data/db/base/5/3576 b/data/db/base/5/3576 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3596 b/data/db/base/5/3596 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3597 b/data/db/base/5/3597 new file mode 100644 index 0000000..6947306 Binary files /dev/null and b/data/db/base/5/3597 differ diff --git a/data/db/base/5/3598 b/data/db/base/5/3598 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/3599 b/data/db/base/5/3599 new file mode 100644 index 0000000..32bf577 Binary files /dev/null and b/data/db/base/5/3599 differ diff --git a/data/db/base/5/3600 b/data/db/base/5/3600 new file mode 100644 index 0000000..925baac Binary files /dev/null and b/data/db/base/5/3600 differ diff --git a/data/db/base/5/3600_fsm b/data/db/base/5/3600_fsm new file mode 100644 index 0000000..cebec19 Binary files /dev/null and b/data/db/base/5/3600_fsm differ diff --git a/data/db/base/5/3600_vm b/data/db/base/5/3600_vm new file mode 100644 index 0000000..9a4a4bf Binary files /dev/null and b/data/db/base/5/3600_vm differ diff --git a/data/db/base/5/3601 b/data/db/base/5/3601 new file mode 100644 index 0000000..04c846e Binary files /dev/null and b/data/db/base/5/3601 differ diff --git a/data/db/base/5/3601_fsm b/data/db/base/5/3601_fsm new file mode 100644 index 0000000..7732d22 Binary files /dev/null and b/data/db/base/5/3601_fsm differ diff --git a/data/db/base/5/3601_vm b/data/db/base/5/3601_vm new file mode 100644 index 0000000..3bac5ad Binary files /dev/null and b/data/db/base/5/3601_vm differ diff --git a/data/db/base/5/3602 b/data/db/base/5/3602 new file mode 100644 index 0000000..71e243f Binary files /dev/null and b/data/db/base/5/3602 differ diff --git a/data/db/base/5/3602_fsm b/data/db/base/5/3602_fsm new file mode 100644 index 0000000..d7897de Binary files /dev/null and b/data/db/base/5/3602_fsm differ diff --git a/data/db/base/5/3602_vm b/data/db/base/5/3602_vm new file mode 100644 index 0000000..d5fb3e5 Binary files /dev/null and b/data/db/base/5/3602_vm differ diff --git a/data/db/base/5/3603 b/data/db/base/5/3603 new file mode 100644 index 0000000..850a484 Binary files /dev/null and b/data/db/base/5/3603 differ diff --git a/data/db/base/5/3603_fsm b/data/db/base/5/3603_fsm new file mode 100644 index 0000000..c28dd4f Binary files /dev/null and b/data/db/base/5/3603_fsm differ diff --git a/data/db/base/5/3603_vm b/data/db/base/5/3603_vm new file mode 100644 index 0000000..5207c83 Binary files /dev/null and b/data/db/base/5/3603_vm differ diff --git a/data/db/base/5/3604 b/data/db/base/5/3604 new file mode 100644 index 0000000..99f1f36 Binary files /dev/null and b/data/db/base/5/3604 differ diff --git a/data/db/base/5/3605 b/data/db/base/5/3605 new file mode 100644 index 0000000..680237b Binary files /dev/null and b/data/db/base/5/3605 differ diff --git a/data/db/base/5/3606 b/data/db/base/5/3606 new file mode 100644 index 0000000..5d00237 Binary files /dev/null and b/data/db/base/5/3606 differ diff --git a/data/db/base/5/3607 b/data/db/base/5/3607 new file mode 100644 index 0000000..3a1af44 Binary files /dev/null and b/data/db/base/5/3607 differ diff --git a/data/db/base/5/3608 b/data/db/base/5/3608 new file mode 100644 index 0000000..504ad28 Binary files /dev/null and b/data/db/base/5/3608 differ diff --git a/data/db/base/5/3609 b/data/db/base/5/3609 new file mode 100644 index 0000000..980b082 Binary files /dev/null and b/data/db/base/5/3609 differ diff --git a/data/db/base/5/3712 b/data/db/base/5/3712 new file mode 100644 index 0000000..8c0b34b Binary files /dev/null and b/data/db/base/5/3712 differ diff --git a/data/db/base/5/3764 b/data/db/base/5/3764 new file mode 100644 index 0000000..e77d9d7 Binary files /dev/null and b/data/db/base/5/3764 differ diff --git a/data/db/base/5/3764_fsm b/data/db/base/5/3764_fsm new file mode 100644 index 0000000..f64db4d Binary files /dev/null and b/data/db/base/5/3764_fsm differ diff --git a/data/db/base/5/3764_vm b/data/db/base/5/3764_vm new file mode 100644 index 0000000..989c5e0 Binary files /dev/null and b/data/db/base/5/3764_vm differ diff --git a/data/db/base/5/3766 b/data/db/base/5/3766 new file mode 100644 index 0000000..5281a51 Binary files /dev/null and b/data/db/base/5/3766 differ diff --git a/data/db/base/5/3767 b/data/db/base/5/3767 new file mode 100644 index 0000000..e183846 Binary files /dev/null and b/data/db/base/5/3767 differ diff --git a/data/db/base/5/3997 b/data/db/base/5/3997 new file mode 100644 index 0000000..28b5b4b Binary files /dev/null and b/data/db/base/5/3997 differ diff --git a/data/db/base/5/4143 b/data/db/base/5/4143 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4144 b/data/db/base/5/4144 new file mode 100644 index 0000000..781f37a Binary files /dev/null and b/data/db/base/5/4144 differ diff --git a/data/db/base/5/4145 b/data/db/base/5/4145 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4146 b/data/db/base/5/4146 new file mode 100644 index 0000000..11ccf7e Binary files /dev/null and b/data/db/base/5/4146 differ diff --git a/data/db/base/5/4147 b/data/db/base/5/4147 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4148 b/data/db/base/5/4148 new file mode 100644 index 0000000..7fd05a8 Binary files /dev/null and b/data/db/base/5/4148 differ diff --git a/data/db/base/5/4149 b/data/db/base/5/4149 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4150 b/data/db/base/5/4150 new file mode 100644 index 0000000..10171f6 Binary files /dev/null and b/data/db/base/5/4150 differ diff --git a/data/db/base/5/4151 b/data/db/base/5/4151 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4152 b/data/db/base/5/4152 new file mode 100644 index 0000000..869a7f3 Binary files /dev/null and b/data/db/base/5/4152 differ diff --git a/data/db/base/5/4153 b/data/db/base/5/4153 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4154 b/data/db/base/5/4154 new file mode 100644 index 0000000..bb1dca3 Binary files /dev/null and b/data/db/base/5/4154 differ diff --git a/data/db/base/5/4155 b/data/db/base/5/4155 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4156 b/data/db/base/5/4156 new file mode 100644 index 0000000..839ab86 Binary files /dev/null and b/data/db/base/5/4156 differ diff --git a/data/db/base/5/4157 b/data/db/base/5/4157 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4158 b/data/db/base/5/4158 new file mode 100644 index 0000000..12e6868 Binary files /dev/null and b/data/db/base/5/4158 differ diff --git a/data/db/base/5/4159 b/data/db/base/5/4159 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4160 b/data/db/base/5/4160 new file mode 100644 index 0000000..8b80112 Binary files /dev/null and b/data/db/base/5/4160 differ diff --git a/data/db/base/5/4163 b/data/db/base/5/4163 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4164 b/data/db/base/5/4164 new file mode 100644 index 0000000..e86ba95 Binary files /dev/null and b/data/db/base/5/4164 differ diff --git a/data/db/base/5/4165 b/data/db/base/5/4165 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4166 b/data/db/base/5/4166 new file mode 100644 index 0000000..f5fc2b6 Binary files /dev/null and b/data/db/base/5/4166 differ diff --git a/data/db/base/5/4167 b/data/db/base/5/4167 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4168 b/data/db/base/5/4168 new file mode 100644 index 0000000..fdfe146 Binary files /dev/null and b/data/db/base/5/4168 differ diff --git a/data/db/base/5/4169 b/data/db/base/5/4169 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4170 b/data/db/base/5/4170 new file mode 100644 index 0000000..797418b Binary files /dev/null and b/data/db/base/5/4170 differ diff --git a/data/db/base/5/4171 b/data/db/base/5/4171 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4172 b/data/db/base/5/4172 new file mode 100644 index 0000000..969a191 Binary files /dev/null and b/data/db/base/5/4172 differ diff --git a/data/db/base/5/4173 b/data/db/base/5/4173 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/4174 b/data/db/base/5/4174 new file mode 100644 index 0000000..3c4beb7 Binary files /dev/null and b/data/db/base/5/4174 differ diff --git a/data/db/base/5/5002 b/data/db/base/5/5002 new file mode 100644 index 0000000..aefa40d Binary files /dev/null and b/data/db/base/5/5002 differ diff --git a/data/db/base/5/548 b/data/db/base/5/548 new file mode 100644 index 0000000..d6379eb Binary files /dev/null and b/data/db/base/5/548 differ diff --git a/data/db/base/5/549 b/data/db/base/5/549 new file mode 100644 index 0000000..a762ad9 Binary files /dev/null and b/data/db/base/5/549 differ diff --git a/data/db/base/5/6102 b/data/db/base/5/6102 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/6104 b/data/db/base/5/6104 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/6106 b/data/db/base/5/6106 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/6110 b/data/db/base/5/6110 new file mode 100644 index 0000000..42e1920 Binary files /dev/null and b/data/db/base/5/6110 differ diff --git a/data/db/base/5/6111 b/data/db/base/5/6111 new file mode 100644 index 0000000..d012727 Binary files /dev/null and b/data/db/base/5/6111 differ diff --git a/data/db/base/5/6112 b/data/db/base/5/6112 new file mode 100644 index 0000000..293367c Binary files /dev/null and b/data/db/base/5/6112 differ diff --git a/data/db/base/5/6113 b/data/db/base/5/6113 new file mode 100644 index 0000000..542f8fa Binary files /dev/null and b/data/db/base/5/6113 differ diff --git a/data/db/base/5/6116 b/data/db/base/5/6116 new file mode 100644 index 0000000..787d5d1 Binary files /dev/null and b/data/db/base/5/6116 differ diff --git a/data/db/base/5/6117 b/data/db/base/5/6117 new file mode 100644 index 0000000..2b5656b Binary files /dev/null and b/data/db/base/5/6117 differ diff --git a/data/db/base/5/6175 b/data/db/base/5/6175 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/6176 b/data/db/base/5/6176 new file mode 100644 index 0000000..34cba03 Binary files /dev/null and b/data/db/base/5/6176 differ diff --git a/data/db/base/5/6228 b/data/db/base/5/6228 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/6229 b/data/db/base/5/6229 new file mode 100644 index 0000000..4839713 Binary files /dev/null and b/data/db/base/5/6229 differ diff --git a/data/db/base/5/6237 b/data/db/base/5/6237 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/6238 b/data/db/base/5/6238 new file mode 100644 index 0000000..e7c0e8c Binary files /dev/null and b/data/db/base/5/6238 differ diff --git a/data/db/base/5/6239 b/data/db/base/5/6239 new file mode 100644 index 0000000..6c60b50 Binary files /dev/null and b/data/db/base/5/6239 differ diff --git a/data/db/base/5/826 b/data/db/base/5/826 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/base/5/827 b/data/db/base/5/827 new file mode 100644 index 0000000..bcaf0a1 Binary files /dev/null and b/data/db/base/5/827 differ diff --git a/data/db/base/5/828 b/data/db/base/5/828 new file mode 100644 index 0000000..7aba562 Binary files /dev/null and b/data/db/base/5/828 differ diff --git a/data/db/base/5/PG_VERSION b/data/db/base/5/PG_VERSION new file mode 100644 index 0000000..b6a7d89 --- /dev/null +++ b/data/db/base/5/PG_VERSION @@ -0,0 +1 @@ +16 diff --git a/data/db/base/5/pg_filenode.map b/data/db/base/5/pg_filenode.map new file mode 100644 index 0000000..4fc801a Binary files /dev/null and b/data/db/base/5/pg_filenode.map differ diff --git a/data/db/base/5/pg_internal.init b/data/db/base/5/pg_internal.init new file mode 100644 index 0000000..6c6a39a Binary files /dev/null and b/data/db/base/5/pg_internal.init differ diff --git a/data/db/global/1213 b/data/db/global/1213 new file mode 100644 index 0000000..eec8dc3 Binary files /dev/null and b/data/db/global/1213 differ diff --git a/data/db/global/1213_fsm b/data/db/global/1213_fsm new file mode 100644 index 0000000..86074be Binary files /dev/null and b/data/db/global/1213_fsm differ diff --git a/data/db/global/1213_vm b/data/db/global/1213_vm new file mode 100644 index 0000000..b56c1b5 Binary files /dev/null and b/data/db/global/1213_vm differ diff --git a/data/db/global/1214 b/data/db/global/1214 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/1232 b/data/db/global/1232 new file mode 100644 index 0000000..3820150 Binary files /dev/null and b/data/db/global/1232 differ diff --git a/data/db/global/1233 b/data/db/global/1233 new file mode 100644 index 0000000..4643651 Binary files /dev/null and b/data/db/global/1233 differ diff --git a/data/db/global/1260 b/data/db/global/1260 new file mode 100644 index 0000000..dc5b1ae Binary files /dev/null and b/data/db/global/1260 differ diff --git a/data/db/global/1260_fsm b/data/db/global/1260_fsm new file mode 100644 index 0000000..8bbe958 Binary files /dev/null and b/data/db/global/1260_fsm differ diff --git a/data/db/global/1260_vm b/data/db/global/1260_vm new file mode 100644 index 0000000..7dd1959 Binary files /dev/null and b/data/db/global/1260_vm differ diff --git a/data/db/global/1261 b/data/db/global/1261 new file mode 100644 index 0000000..8ad6534 Binary files /dev/null and b/data/db/global/1261 differ diff --git a/data/db/global/1261_fsm b/data/db/global/1261_fsm new file mode 100644 index 0000000..f32c23e Binary files /dev/null and b/data/db/global/1261_fsm differ diff --git a/data/db/global/1261_vm b/data/db/global/1261_vm new file mode 100644 index 0000000..6971dcd Binary files /dev/null and b/data/db/global/1261_vm differ diff --git a/data/db/global/1262 b/data/db/global/1262 new file mode 100644 index 0000000..92c8bd5 Binary files /dev/null and b/data/db/global/1262 differ diff --git a/data/db/global/1262_fsm b/data/db/global/1262_fsm new file mode 100644 index 0000000..479fd94 Binary files /dev/null and b/data/db/global/1262_fsm differ diff --git a/data/db/global/1262_vm b/data/db/global/1262_vm new file mode 100644 index 0000000..8becb85 Binary files /dev/null and b/data/db/global/1262_vm differ diff --git a/data/db/global/2396 b/data/db/global/2396 new file mode 100644 index 0000000..643392d Binary files /dev/null and b/data/db/global/2396 differ diff --git a/data/db/global/2396_fsm b/data/db/global/2396_fsm new file mode 100644 index 0000000..7a4f24f Binary files /dev/null and b/data/db/global/2396_fsm differ diff --git a/data/db/global/2396_vm b/data/db/global/2396_vm new file mode 100644 index 0000000..e0979f8 Binary files /dev/null and b/data/db/global/2396_vm differ diff --git a/data/db/global/2397 b/data/db/global/2397 new file mode 100644 index 0000000..5f0898e Binary files /dev/null and b/data/db/global/2397 differ diff --git a/data/db/global/2671 b/data/db/global/2671 new file mode 100644 index 0000000..8b13137 Binary files /dev/null and b/data/db/global/2671 differ diff --git a/data/db/global/2672 b/data/db/global/2672 new file mode 100644 index 0000000..ee51c51 Binary files /dev/null and b/data/db/global/2672 differ diff --git a/data/db/global/2676 b/data/db/global/2676 new file mode 100644 index 0000000..120e0dd Binary files /dev/null and b/data/db/global/2676 differ diff --git a/data/db/global/2677 b/data/db/global/2677 new file mode 100644 index 0000000..4487e7b Binary files /dev/null and b/data/db/global/2677 differ diff --git a/data/db/global/2694 b/data/db/global/2694 new file mode 100644 index 0000000..7e09dea Binary files /dev/null and b/data/db/global/2694 differ diff --git a/data/db/global/2695 b/data/db/global/2695 new file mode 100644 index 0000000..6ade19a Binary files /dev/null and b/data/db/global/2695 differ diff --git a/data/db/global/2697 b/data/db/global/2697 new file mode 100644 index 0000000..e4da1ca Binary files /dev/null and b/data/db/global/2697 differ diff --git a/data/db/global/2698 b/data/db/global/2698 new file mode 100644 index 0000000..261136e Binary files /dev/null and b/data/db/global/2698 differ diff --git a/data/db/global/2846 b/data/db/global/2846 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/2847 b/data/db/global/2847 new file mode 100644 index 0000000..f5a198a Binary files /dev/null and b/data/db/global/2847 differ diff --git a/data/db/global/2964 b/data/db/global/2964 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/2965 b/data/db/global/2965 new file mode 100644 index 0000000..b4ab3b0 Binary files /dev/null and b/data/db/global/2965 differ diff --git a/data/db/global/2966 b/data/db/global/2966 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/2967 b/data/db/global/2967 new file mode 100644 index 0000000..9c45455 Binary files /dev/null and b/data/db/global/2967 differ diff --git a/data/db/global/3592 b/data/db/global/3592 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/3593 b/data/db/global/3593 new file mode 100644 index 0000000..2dac047 Binary files /dev/null and b/data/db/global/3593 differ diff --git a/data/db/global/4060 b/data/db/global/4060 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/4061 b/data/db/global/4061 new file mode 100644 index 0000000..e03f6d8 Binary files /dev/null and b/data/db/global/4061 differ diff --git a/data/db/global/4175 b/data/db/global/4175 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/4176 b/data/db/global/4176 new file mode 100644 index 0000000..b2e78fd Binary files /dev/null and b/data/db/global/4176 differ diff --git a/data/db/global/4177 b/data/db/global/4177 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/4178 b/data/db/global/4178 new file mode 100644 index 0000000..006ca56 Binary files /dev/null and b/data/db/global/4178 differ diff --git a/data/db/global/4181 b/data/db/global/4181 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/4182 b/data/db/global/4182 new file mode 100644 index 0000000..ffe2eb2 Binary files /dev/null and b/data/db/global/4182 differ diff --git a/data/db/global/4183 b/data/db/global/4183 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/4184 b/data/db/global/4184 new file mode 100644 index 0000000..29e8df2 Binary files /dev/null and b/data/db/global/4184 differ diff --git a/data/db/global/4185 b/data/db/global/4185 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/4186 b/data/db/global/4186 new file mode 100644 index 0000000..03df8cc Binary files /dev/null and b/data/db/global/4186 differ diff --git a/data/db/global/6000 b/data/db/global/6000 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/6001 b/data/db/global/6001 new file mode 100644 index 0000000..6a41ce4 Binary files /dev/null and b/data/db/global/6001 differ diff --git a/data/db/global/6002 b/data/db/global/6002 new file mode 100644 index 0000000..32ea595 Binary files /dev/null and b/data/db/global/6002 differ diff --git a/data/db/global/6100 b/data/db/global/6100 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/6114 b/data/db/global/6114 new file mode 100644 index 0000000..bf887fa Binary files /dev/null and b/data/db/global/6114 differ diff --git a/data/db/global/6115 b/data/db/global/6115 new file mode 100644 index 0000000..afafca8 Binary files /dev/null and b/data/db/global/6115 differ diff --git a/data/db/global/6243 b/data/db/global/6243 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/6244 b/data/db/global/6244 new file mode 100644 index 0000000..e69de29 diff --git a/data/db/global/6245 b/data/db/global/6245 new file mode 100644 index 0000000..6a99292 Binary files /dev/null and b/data/db/global/6245 differ diff --git a/data/db/global/6246 b/data/db/global/6246 new file mode 100644 index 0000000..084bf17 Binary files /dev/null and b/data/db/global/6246 differ diff --git a/data/db/global/6247 b/data/db/global/6247 new file mode 100644 index 0000000..514ffb0 Binary files /dev/null and b/data/db/global/6247 differ diff --git a/data/db/global/6302 b/data/db/global/6302 new file mode 100644 index 0000000..b855d4e Binary files /dev/null and b/data/db/global/6302 differ diff --git a/data/db/global/6303 b/data/db/global/6303 new file mode 100644 index 0000000..abb950e Binary files /dev/null and b/data/db/global/6303 differ diff --git a/data/db/global/pg_control b/data/db/global/pg_control new file mode 100644 index 0000000..d67f81f Binary files /dev/null and b/data/db/global/pg_control differ diff --git a/data/db/global/pg_filenode.map b/data/db/global/pg_filenode.map new file mode 100644 index 0000000..97c07a6 Binary files /dev/null and b/data/db/global/pg_filenode.map differ diff --git a/data/db/global/pg_internal.init b/data/db/global/pg_internal.init new file mode 100644 index 0000000..80b2230 Binary files /dev/null and b/data/db/global/pg_internal.init differ diff --git a/data/db/pg_hba.conf b/data/db/pg_hba.conf new file mode 100644 index 0000000..7f379db --- /dev/null +++ b/data/db/pg_hba.conf @@ -0,0 +1,128 @@ +# PostgreSQL Client Authentication Configuration File +# =================================================== +# +# Refer to the "Client Authentication" section in the PostgreSQL +# documentation for a complete description of this file. A short +# synopsis follows. +# +# ---------------------- +# Authentication Records +# ---------------------- +# +# This file controls: which hosts are allowed to connect, how clients +# are authenticated, which PostgreSQL user names they can use, which +# databases they can access. Records take one of these forms: +# +# local DATABASE USER METHOD [OPTIONS] +# host DATABASE USER ADDRESS METHOD [OPTIONS] +# hostssl DATABASE USER ADDRESS METHOD [OPTIONS] +# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS] +# hostgssenc DATABASE USER ADDRESS METHOD [OPTIONS] +# hostnogssenc DATABASE USER ADDRESS METHOD [OPTIONS] +# +# (The uppercase items must be replaced by actual values.) +# +# The first field is the connection type: +# - "local" is a Unix-domain socket +# - "host" is a TCP/IP socket (encrypted or not) +# - "hostssl" is a TCP/IP socket that is SSL-encrypted +# - "hostnossl" is a TCP/IP socket that is not SSL-encrypted +# - "hostgssenc" is a TCP/IP socket that is GSSAPI-encrypted +# - "hostnogssenc" is a TCP/IP socket that is not GSSAPI-encrypted +# +# DATABASE can be "all", "sameuser", "samerole", "replication", a +# database name, a regular expression (if it starts with a slash (/)) +# or a comma-separated list thereof. The "all" keyword does not match +# "replication". Access to replication must be enabled in a separate +# record (see example below). +# +# USER can be "all", a user name, a group name prefixed with "+", a +# regular expression (if it starts with a slash (/)) or a comma-separated +# list thereof. In both the DATABASE and USER fields you can also write +# a file name prefixed with "@" to include names from a separate file. +# +# ADDRESS specifies the set of hosts the record matches. It can be a +# host name, or it is made up of an IP address and a CIDR mask that is +# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that +# specifies the number of significant bits in the mask. A host name +# that starts with a dot (.) matches a suffix of the actual host name. +# Alternatively, you can write an IP address and netmask in separate +# columns to specify the set of hosts. Instead of a CIDR-address, you +# can write "samehost" to match any of the server's own IP addresses, +# or "samenet" to match any address in any subnet that the server is +# directly connected to. +# +# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256", +# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert". +# Note that "password" sends passwords in clear text; "md5" or +# "scram-sha-256" are preferred since they send encrypted passwords. +# +# OPTIONS are a set of options for the authentication in the format +# NAME=VALUE. The available options depend on the different +# authentication methods -- refer to the "Client Authentication" +# section in the documentation for a list of which options are +# available for which authentication methods. +# +# Database and user names containing spaces, commas, quotes and other +# special characters must be quoted. Quoting one of the keywords +# "all", "sameuser", "samerole" or "replication" makes the name lose +# its special character, and just match a database or username with +# that name. +# +# --------------- +# Include Records +# --------------- +# +# This file allows the inclusion of external files or directories holding +# more records, using the following keywords: +# +# include FILE +# include_if_exists FILE +# include_dir DIRECTORY +# +# FILE is the file name to include, and DIR is the directory name containing +# the file(s) to include. Any file in a directory will be loaded if suffixed +# with ".conf". The files of a directory are ordered by name. +# include_if_exists ignores missing files. FILE and DIRECTORY can be +# specified as a relative or an absolute path, and can be double-quoted if +# they contain spaces. +# +# ------------- +# Miscellaneous +# ------------- +# +# This file is read on server startup and when the server receives a +# SIGHUP signal. If you edit the file on a running system, you have to +# SIGHUP the server for the changes to take effect, run "pg_ctl reload", +# or execute "SELECT pg_reload_conf()". +# +# ---------------------------------- +# Put your actual configuration here +# ---------------------------------- +# +# If you want to allow non-local connections, you need to add more +# "host" records. In that case you will also need to make PostgreSQL +# listen on a non-local interface via the listen_addresses +# configuration parameter, or via the -i or -h command line switches. + +# CAUTION: Configuring the system for local "trust" authentication +# allows any local user to connect as any PostgreSQL user, including +# the database superuser. If you do not trust all your local users, +# use another authentication method. + + +# TYPE DATABASE USER ADDRESS METHOD + +# "local" is for Unix domain socket connections only +local all all trust +# IPv4 local connections: +host all all 127.0.0.1/32 trust +# IPv6 local connections: +host all all ::1/128 trust +# Allow replication connections from localhost, by a user with the +# replication privilege. +local replication all trust +host replication all 127.0.0.1/32 trust +host replication all ::1/128 trust + +host all all all scram-sha-256 diff --git a/data/db/pg_ident.conf b/data/db/pg_ident.conf new file mode 100644 index 0000000..f5225f2 --- /dev/null +++ b/data/db/pg_ident.conf @@ -0,0 +1,72 @@ +# PostgreSQL User Name Maps +# ========================= +# +# --------------- +# Mapping Records +# --------------- +# +# Refer to the PostgreSQL documentation, chapter "Client +# Authentication" for a complete description. A short synopsis +# follows. +# +# This file controls PostgreSQL user name mapping. It maps external +# user names to their corresponding PostgreSQL user names. Records +# are of the form: +# +# MAPNAME SYSTEM-USERNAME PG-USERNAME +# +# (The uppercase quantities must be replaced by actual values.) +# +# MAPNAME is the (otherwise freely chosen) map name that was used in +# pg_hba.conf. SYSTEM-USERNAME is the detected user name of the +# client. PG-USERNAME is the requested PostgreSQL user name. The +# existence of a record specifies that SYSTEM-USERNAME may connect as +# PG-USERNAME. +# +# If SYSTEM-USERNAME starts with a slash (/), it will be treated as a +# regular expression. Optionally this can contain a capture (a +# parenthesized subexpression). The substring matching the capture +# will be substituted for \1 (backslash-one) if present in +# PG-USERNAME. +# +# PG-USERNAME can be "all", a user name, a group name prefixed with "+", or +# a regular expression (if it starts with a slash (/)). If it is a regular +# expression, the substring matching with \1 has no effect. +# +# Multiple maps may be specified in this file and used by pg_hba.conf. +# +# No map names are defined in the default configuration. If all +# system user names and PostgreSQL user names are the same, you don't +# need anything in this file. +# +# --------------- +# Include Records +# --------------- +# +# This file allows the inclusion of external files or directories holding +# more records, using the following keywords: +# +# include FILE +# include_if_exists FILE +# include_dir DIRECTORY +# +# FILE is the file name to include, and DIR is the directory name containing +# the file(s) to include. Any file in a directory will be loaded if suffixed +# with ".conf". The files of a directory are ordered by name. +# include_if_exists ignores missing files. FILE and DIRECTORY can be +# specified as a relative or an absolute path, and can be double-quoted if +# they contain spaces. +# +# ------------------------------- +# Miscellaneous +# ------------------------------- +# +# This file is read on server startup and when the postmaster receives +# a SIGHUP signal. If you edit the file on a running system, you have +# to SIGHUP the postmaster for the changes to take effect. You can +# use "pg_ctl reload" to do that. + +# Put your actual configuration here +# ---------------------------------- + +# MAPNAME SYSTEM-USERNAME PG-USERNAME diff --git a/data/db/pg_logical/replorigin_checkpoint b/data/db/pg_logical/replorigin_checkpoint new file mode 100644 index 0000000..ec451b0 Binary files /dev/null and b/data/db/pg_logical/replorigin_checkpoint differ diff --git a/data/db/pg_multixact/members/0000 b/data/db/pg_multixact/members/0000 new file mode 100644 index 0000000..6d17cf9 Binary files /dev/null and b/data/db/pg_multixact/members/0000 differ diff --git a/data/db/pg_multixact/offsets/0000 b/data/db/pg_multixact/offsets/0000 new file mode 100644 index 0000000..6d17cf9 Binary files /dev/null and b/data/db/pg_multixact/offsets/0000 differ diff --git a/data/db/pg_stat/pgstat.stat b/data/db/pg_stat/pgstat.stat new file mode 100644 index 0000000..bf5cae0 Binary files /dev/null and b/data/db/pg_stat/pgstat.stat differ diff --git a/data/db/pg_subtrans/0000 b/data/db/pg_subtrans/0000 new file mode 100644 index 0000000..6d17cf9 Binary files /dev/null and b/data/db/pg_subtrans/0000 differ diff --git a/data/db/pg_wal/000000010000000000000001 b/data/db/pg_wal/000000010000000000000001 new file mode 100644 index 0000000..85647d6 Binary files /dev/null and b/data/db/pg_wal/000000010000000000000001 differ diff --git a/data/db/pg_xact/0000 b/data/db/pg_xact/0000 new file mode 100644 index 0000000..c9cf990 Binary files /dev/null and b/data/db/pg_xact/0000 differ diff --git a/data/db/postgresql.auto.conf b/data/db/postgresql.auto.conf new file mode 100644 index 0000000..af7125e --- /dev/null +++ b/data/db/postgresql.auto.conf @@ -0,0 +1,2 @@ +# Do not edit this file manually! +# It will be overwritten by the ALTER SYSTEM command. diff --git a/data/db/postgresql.conf b/data/db/postgresql.conf new file mode 100644 index 0000000..969d8a3 --- /dev/null +++ b/data/db/postgresql.conf @@ -0,0 +1,822 @@ +# ----------------------------- +# PostgreSQL configuration file +# ----------------------------- +# +# This file consists of lines of the form: +# +# name = value +# +# (The "=" is optional.) Whitespace may be used. Comments are introduced with +# "#" anywhere on a line. The complete list of parameter names and allowed +# values can be found in the PostgreSQL documentation. +# +# The commented-out settings shown in this file represent the default values. +# Re-commenting a setting is NOT sufficient to revert it to the default value; +# you need to reload the server. +# +# This file is read on server startup and when the server receives a SIGHUP +# signal. If you edit the file on a running system, you have to SIGHUP the +# server for the changes to take effect, run "pg_ctl reload", or execute +# "SELECT pg_reload_conf()". Some parameters, which are marked below, +# require a server shutdown and restart to take effect. +# +# Any parameter can also be given as a command-line option to the server, e.g., +# "postgres -c log_connections=on". Some parameters can be changed at run time +# with the "SET" SQL command. +# +# Memory units: B = bytes Time units: us = microseconds +# kB = kilobytes ms = milliseconds +# MB = megabytes s = seconds +# GB = gigabytes min = minutes +# TB = terabytes h = hours +# d = days + + +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ + +# The default values of these variables are driven from the -D command-line +# option or PGDATA environment variable, represented here as ConfigDir. + +#data_directory = 'ConfigDir' # use data in another directory + # (change requires restart) +#hba_file = 'ConfigDir/pg_hba.conf' # host-based authentication file + # (change requires restart) +#ident_file = 'ConfigDir/pg_ident.conf' # ident configuration file + # (change requires restart) + +# If external_pid_file is not explicitly set, no extra PID file is written. +#external_pid_file = '' # write an extra PID file + # (change requires restart) + + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ + +# - Connection Settings - + +listen_addresses = '*' + # comma-separated list of addresses; + # defaults to 'localhost'; use '*' for all + # (change requires restart) +#port = 5432 # (change requires restart) +max_connections = 100 # (change requires restart) +#reserved_connections = 0 # (change requires restart) +#superuser_reserved_connections = 3 # (change requires restart) +#unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories + # (change requires restart) +#unix_socket_group = '' # (change requires restart) +#unix_socket_permissions = 0777 # begin with 0 to use octal notation + # (change requires restart) +#bonjour = off # advertise server via Bonjour + # (change requires restart) +#bonjour_name = '' # defaults to the computer name + # (change requires restart) + +# - TCP settings - +# see "man tcp" for details + +#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds; + # 0 selects the system default +#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds; + # 0 selects the system default +#tcp_keepalives_count = 0 # TCP_KEEPCNT; + # 0 selects the system default +#tcp_user_timeout = 0 # TCP_USER_TIMEOUT, in milliseconds; + # 0 selects the system default + +#client_connection_check_interval = 0 # time between checks for client + # disconnection while running queries; + # 0 for never + +# - Authentication - + +#authentication_timeout = 1min # 1s-600s +#password_encryption = scram-sha-256 # scram-sha-256 or md5 +#scram_iterations = 4096 +#db_user_namespace = off + +# GSSAPI using Kerberos +#krb_server_keyfile = 'FILE:${sysconfdir}/krb5.keytab' +#krb_caseins_users = off +#gss_accept_delegation = off + +# - SSL - + +#ssl = off +#ssl_ca_file = '' +#ssl_cert_file = 'server.crt' +#ssl_crl_file = '' +#ssl_crl_dir = '' +#ssl_key_file = 'server.key' +#ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed SSL ciphers +#ssl_prefer_server_ciphers = on +#ssl_ecdh_curve = 'prime256v1' +#ssl_min_protocol_version = 'TLSv1.2' +#ssl_max_protocol_version = '' +#ssl_dh_params_file = '' +#ssl_passphrase_command = '' +#ssl_passphrase_command_supports_reload = off + + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ + +# - Memory - + +shared_buffers = 128MB # min 128kB + # (change requires restart) +#huge_pages = try # on, off, or try + # (change requires restart) +#huge_page_size = 0 # zero for system default + # (change requires restart) +#temp_buffers = 8MB # min 800kB +#max_prepared_transactions = 0 # zero disables the feature + # (change requires restart) +# Caution: it is not advisable to set max_prepared_transactions nonzero unless +# you actively intend to use prepared transactions. +#work_mem = 4MB # min 64kB +#hash_mem_multiplier = 2.0 # 1-1000.0 multiplier on hash table work_mem +#maintenance_work_mem = 64MB # min 1MB +#autovacuum_work_mem = -1 # min 1MB, or -1 to use maintenance_work_mem +#logical_decoding_work_mem = 64MB # min 64kB +#max_stack_depth = 2MB # min 100kB +#shared_memory_type = mmap # the default is the first option + # supported by the operating system: + # mmap + # sysv + # windows + # (change requires restart) +dynamic_shared_memory_type = posix # the default is usually the first option + # supported by the operating system: + # posix + # sysv + # windows + # mmap + # (change requires restart) +#min_dynamic_shared_memory = 0MB # (change requires restart) +#vacuum_buffer_usage_limit = 256kB # size of vacuum and analyze buffer access strategy ring; + # 0 to disable vacuum buffer access strategy; + # range 128kB to 16GB + +# - Disk - + +#temp_file_limit = -1 # limits per-process temp file space + # in kilobytes, or -1 for no limit + +# - Kernel Resources - + +#max_files_per_process = 1000 # min 64 + # (change requires restart) + +# - Cost-Based Vacuum Delay - + +#vacuum_cost_delay = 0 # 0-100 milliseconds (0 disables) +#vacuum_cost_page_hit = 1 # 0-10000 credits +#vacuum_cost_page_miss = 2 # 0-10000 credits +#vacuum_cost_page_dirty = 20 # 0-10000 credits +#vacuum_cost_limit = 200 # 1-10000 credits + +# - Background Writer - + +#bgwriter_delay = 200ms # 10-10000ms between rounds +#bgwriter_lru_maxpages = 100 # max buffers written/round, 0 disables +#bgwriter_lru_multiplier = 2.0 # 0-10.0 multiplier on buffers scanned/round +#bgwriter_flush_after = 512kB # measured in pages, 0 disables + +# - Asynchronous Behavior - + +#backend_flush_after = 0 # measured in pages, 0 disables +#effective_io_concurrency = 1 # 1-1000; 0 disables prefetching +#maintenance_io_concurrency = 10 # 1-1000; 0 disables prefetching +#max_worker_processes = 8 # (change requires restart) +#max_parallel_workers_per_gather = 2 # limited by max_parallel_workers +#max_parallel_maintenance_workers = 2 # limited by max_parallel_workers +#max_parallel_workers = 8 # number of max_worker_processes that + # can be used in parallel operations +#parallel_leader_participation = on +#old_snapshot_threshold = -1 # 1min-60d; -1 disables; 0 is immediate + # (change requires restart) + + +#------------------------------------------------------------------------------ +# WRITE-AHEAD LOG +#------------------------------------------------------------------------------ + +# - Settings - + +#wal_level = replica # minimal, replica, or logical + # (change requires restart) +#fsync = on # flush data to disk for crash safety + # (turning this off can cause + # unrecoverable data corruption) +#synchronous_commit = on # synchronization level; + # off, local, remote_write, remote_apply, or on +#wal_sync_method = fsync # the default is the first option + # supported by the operating system: + # open_datasync + # fdatasync (default on Linux and FreeBSD) + # fsync + # fsync_writethrough + # open_sync +#full_page_writes = on # recover from partial page writes +#wal_log_hints = off # also do full page writes of non-critical updates + # (change requires restart) +#wal_compression = off # enables compression of full-page writes; + # off, pglz, lz4, zstd, or on +#wal_init_zero = on # zero-fill new WAL files +#wal_recycle = on # recycle WAL files +#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers + # (change requires restart) +#wal_writer_delay = 200ms # 1-10000 milliseconds +#wal_writer_flush_after = 1MB # measured in pages, 0 disables +#wal_skip_threshold = 2MB + +#commit_delay = 0 # range 0-100000, in microseconds +#commit_siblings = 5 # range 1-1000 + +# - Checkpoints - + +#checkpoint_timeout = 5min # range 30s-1d +#checkpoint_completion_target = 0.9 # checkpoint target duration, 0.0 - 1.0 +#checkpoint_flush_after = 256kB # measured in pages, 0 disables +#checkpoint_warning = 30s # 0 disables +max_wal_size = 1GB +min_wal_size = 80MB + +# - Prefetching during recovery - + +#recovery_prefetch = try # prefetch pages referenced in the WAL? +#wal_decode_buffer_size = 512kB # lookahead window used for prefetching + # (change requires restart) + +# - Archiving - + +#archive_mode = off # enables archiving; off, on, or always + # (change requires restart) +#archive_library = '' # library to use to archive a WAL file + # (empty string indicates archive_command should + # be used) +#archive_command = '' # command to use to archive a WAL file + # placeholders: %p = path of file to archive + # %f = file name only + # e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' +#archive_timeout = 0 # force a WAL file switch after this + # number of seconds; 0 disables + +# - Archive Recovery - + +# These are only used in recovery mode. + +#restore_command = '' # command to use to restore an archived WAL file + # placeholders: %p = path of file to restore + # %f = file name only + # e.g. 'cp /mnt/server/archivedir/%f %p' +#archive_cleanup_command = '' # command to execute at every restartpoint +#recovery_end_command = '' # command to execute at completion of recovery + +# - Recovery Target - + +# Set these only when performing a targeted recovery. + +#recovery_target = '' # 'immediate' to end recovery as soon as a + # consistent state is reached + # (change requires restart) +#recovery_target_name = '' # the named restore point to which recovery will proceed + # (change requires restart) +#recovery_target_time = '' # the time stamp up to which recovery will proceed + # (change requires restart) +#recovery_target_xid = '' # the transaction ID up to which recovery will proceed + # (change requires restart) +#recovery_target_lsn = '' # the WAL LSN up to which recovery will proceed + # (change requires restart) +#recovery_target_inclusive = on # Specifies whether to stop: + # just after the specified recovery target (on) + # just before the recovery target (off) + # (change requires restart) +#recovery_target_timeline = 'latest' # 'current', 'latest', or timeline ID + # (change requires restart) +#recovery_target_action = 'pause' # 'pause', 'promote', 'shutdown' + # (change requires restart) + + +#------------------------------------------------------------------------------ +# REPLICATION +#------------------------------------------------------------------------------ + +# - Sending Servers - + +# Set these on the primary and on any standby that will send replication data. + +#max_wal_senders = 10 # max number of walsender processes + # (change requires restart) +#max_replication_slots = 10 # max number of replication slots + # (change requires restart) +#wal_keep_size = 0 # in megabytes; 0 disables +#max_slot_wal_keep_size = -1 # in megabytes; -1 disables +#wal_sender_timeout = 60s # in milliseconds; 0 disables +#track_commit_timestamp = off # collect timestamp of transaction commit + # (change requires restart) + +# - Primary Server - + +# These settings are ignored on a standby server. + +#synchronous_standby_names = '' # standby servers that provide sync rep + # method to choose sync standbys, number of sync standbys, + # and comma-separated list of application_name + # from standby(s); '*' = all + +# - Standby Servers - + +# These settings are ignored on a primary server. + +#primary_conninfo = '' # connection string to sending server +#primary_slot_name = '' # replication slot on sending server +#hot_standby = on # "off" disallows queries during recovery + # (change requires restart) +#max_standby_archive_delay = 30s # max delay before canceling queries + # when reading WAL from archive; + # -1 allows indefinite delay +#max_standby_streaming_delay = 30s # max delay before canceling queries + # when reading streaming WAL; + # -1 allows indefinite delay +#wal_receiver_create_temp_slot = off # create temp slot if primary_slot_name + # is not set +#wal_receiver_status_interval = 10s # send replies at least this often + # 0 disables +#hot_standby_feedback = off # send info from standby to prevent + # query conflicts +#wal_receiver_timeout = 60s # time that receiver waits for + # communication from primary + # in milliseconds; 0 disables +#wal_retrieve_retry_interval = 5s # time to wait before retrying to + # retrieve WAL after a failed attempt +#recovery_min_apply_delay = 0 # minimum delay for applying changes during recovery + +# - Subscribers - + +# These settings are ignored on a publisher. + +#max_logical_replication_workers = 4 # taken from max_worker_processes + # (change requires restart) +#max_sync_workers_per_subscription = 2 # taken from max_logical_replication_workers +#max_parallel_apply_workers_per_subscription = 2 # taken from max_logical_replication_workers + + +#------------------------------------------------------------------------------ +# QUERY TUNING +#------------------------------------------------------------------------------ + +# - Planner Method Configuration - + +#enable_async_append = on +#enable_bitmapscan = on +#enable_gathermerge = on +#enable_hashagg = on +#enable_hashjoin = on +#enable_incremental_sort = on +#enable_indexscan = on +#enable_indexonlyscan = on +#enable_material = on +#enable_memoize = on +#enable_mergejoin = on +#enable_nestloop = on +#enable_parallel_append = on +#enable_parallel_hash = on +#enable_partition_pruning = on +#enable_partitionwise_join = off +#enable_partitionwise_aggregate = off +#enable_presorted_aggregate = on +#enable_seqscan = on +#enable_sort = on +#enable_tidscan = on + +# - Planner Cost Constants - + +#seq_page_cost = 1.0 # measured on an arbitrary scale +#random_page_cost = 4.0 # same scale as above +#cpu_tuple_cost = 0.01 # same scale as above +#cpu_index_tuple_cost = 0.005 # same scale as above +#cpu_operator_cost = 0.0025 # same scale as above +#parallel_setup_cost = 1000.0 # same scale as above +#parallel_tuple_cost = 0.1 # same scale as above +#min_parallel_table_scan_size = 8MB +#min_parallel_index_scan_size = 512kB +#effective_cache_size = 4GB + +#jit_above_cost = 100000 # perform JIT compilation if available + # and query more expensive than this; + # -1 disables +#jit_inline_above_cost = 500000 # inline small functions if query is + # more expensive than this; -1 disables +#jit_optimize_above_cost = 500000 # use expensive JIT optimizations if + # query is more expensive than this; + # -1 disables + +# - Genetic Query Optimizer - + +#geqo = on +#geqo_threshold = 12 +#geqo_effort = 5 # range 1-10 +#geqo_pool_size = 0 # selects default based on effort +#geqo_generations = 0 # selects default based on effort +#geqo_selection_bias = 2.0 # range 1.5-2.0 +#geqo_seed = 0.0 # range 0.0-1.0 + +# - Other Planner Options - + +#default_statistics_target = 100 # range 1-10000 +#constraint_exclusion = partition # on, off, or partition +#cursor_tuple_fraction = 0.1 # range 0.0-1.0 +#from_collapse_limit = 8 +#jit = on # allow JIT compilation +#join_collapse_limit = 8 # 1 disables collapsing of explicit + # JOIN clauses +#plan_cache_mode = auto # auto, force_generic_plan or + # force_custom_plan +#recursive_worktable_factor = 10.0 # range 0.001-1000000 + + +#------------------------------------------------------------------------------ +# REPORTING AND LOGGING +#------------------------------------------------------------------------------ + +# - Where to Log - + +#log_destination = 'stderr' # Valid values are combinations of + # stderr, csvlog, jsonlog, syslog, and + # eventlog, depending on platform. + # csvlog and jsonlog require + # logging_collector to be on. + +# This is used when logging to stderr: +#logging_collector = off # Enable capturing of stderr, jsonlog, + # and csvlog into log files. Required + # to be on for csvlogs and jsonlogs. + # (change requires restart) + +# These are only used if logging_collector is on: +#log_directory = 'log' # directory where log files are written, + # can be absolute or relative to PGDATA +#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern, + # can include strftime() escapes +#log_file_mode = 0600 # creation mode for log files, + # begin with 0 to use octal notation +#log_rotation_age = 1d # Automatic rotation of logfiles will + # happen after that time. 0 disables. +#log_rotation_size = 10MB # Automatic rotation of logfiles will + # happen after that much log output. + # 0 disables. +#log_truncate_on_rotation = off # If on, an existing log file with the + # same name as the new log file will be + # truncated rather than appended to. + # But such truncation only occurs on + # time-driven rotation, not on restarts + # or size-driven rotation. Default is + # off, meaning append to existing files + # in all cases. + +# These are relevant when logging to syslog: +#syslog_facility = 'LOCAL0' +#syslog_ident = 'postgres' +#syslog_sequence_numbers = on +#syslog_split_messages = on + +# This is only relevant when logging to eventlog (Windows): +# (change requires restart) +#event_source = 'PostgreSQL' + +# - When to Log - + +#log_min_messages = warning # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # info + # notice + # warning + # error + # log + # fatal + # panic + +#log_min_error_statement = error # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # info + # notice + # warning + # error + # log + # fatal + # panic (effectively off) + +#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements + # and their durations, > 0 logs only + # statements running at least this number + # of milliseconds + +#log_min_duration_sample = -1 # -1 is disabled, 0 logs a sample of statements + # and their durations, > 0 logs only a sample of + # statements running at least this number + # of milliseconds; + # sample fraction is determined by log_statement_sample_rate + +#log_statement_sample_rate = 1.0 # fraction of logged statements exceeding + # log_min_duration_sample to be logged; + # 1.0 logs all such statements, 0.0 never logs + + +#log_transaction_sample_rate = 0.0 # fraction of transactions whose statements + # are logged regardless of their duration; 1.0 logs all + # statements from all transactions, 0.0 never logs + +#log_startup_progress_interval = 10s # Time between progress updates for + # long-running startup operations. + # 0 disables the feature, > 0 indicates + # the interval in milliseconds. + +# - What to Log - + +#debug_print_parse = off +#debug_print_rewritten = off +#debug_print_plan = off +#debug_pretty_print = on +#log_autovacuum_min_duration = 10min # log autovacuum activity; + # -1 disables, 0 logs all actions and + # their durations, > 0 logs only + # actions running at least this number + # of milliseconds. +#log_checkpoints = on +#log_connections = off +#log_disconnections = off +#log_duration = off +#log_error_verbosity = default # terse, default, or verbose messages +#log_hostname = off +#log_line_prefix = '%m [%p] ' # special values: + # %a = application name + # %u = user name + # %d = database name + # %r = remote host and port + # %h = remote host + # %b = backend type + # %p = process ID + # %P = process ID of parallel group leader + # %t = timestamp without milliseconds + # %m = timestamp with milliseconds + # %n = timestamp with milliseconds (as a Unix epoch) + # %Q = query ID (0 if none or not computed) + # %i = command tag + # %e = SQL state + # %c = session ID + # %l = session line number + # %s = session start timestamp + # %v = virtual transaction ID + # %x = transaction ID (0 if none) + # %q = stop here in non-session + # processes + # %% = '%' + # e.g. '<%u%%%d> ' +#log_lock_waits = off # log lock waits >= deadlock_timeout +#log_recovery_conflict_waits = off # log standby recovery conflict waits + # >= deadlock_timeout +#log_parameter_max_length = -1 # when logging statements, limit logged + # bind-parameter values to N bytes; + # -1 means print in full, 0 disables +#log_parameter_max_length_on_error = 0 # when logging an error, limit logged + # bind-parameter values to N bytes; + # -1 means print in full, 0 disables +#log_statement = 'none' # none, ddl, mod, all +#log_replication_commands = off +#log_temp_files = -1 # log temporary files equal or larger + # than the specified size in kilobytes; + # -1 disables, 0 logs all temp files +log_timezone = 'Etc/UTC' + +# - Process Title - + +#cluster_name = '' # added to process titles if nonempty + # (change requires restart) +#update_process_title = on + + +#------------------------------------------------------------------------------ +# STATISTICS +#------------------------------------------------------------------------------ + +# - Cumulative Query and Index Statistics - + +#track_activities = on +#track_activity_query_size = 1024 # (change requires restart) +#track_counts = on +#track_io_timing = off +#track_wal_io_timing = off +#track_functions = none # none, pl, all +#stats_fetch_consistency = cache # cache, none, snapshot + + +# - Monitoring - + +#compute_query_id = auto +#log_statement_stats = off +#log_parser_stats = off +#log_planner_stats = off +#log_executor_stats = off + + +#------------------------------------------------------------------------------ +# AUTOVACUUM +#------------------------------------------------------------------------------ + +#autovacuum = on # Enable autovacuum subprocess? 'on' + # requires track_counts to also be on. +#autovacuum_max_workers = 3 # max number of autovacuum subprocesses + # (change requires restart) +#autovacuum_naptime = 1min # time between autovacuum runs +#autovacuum_vacuum_threshold = 50 # min number of row updates before + # vacuum +#autovacuum_vacuum_insert_threshold = 1000 # min number of row inserts + # before vacuum; -1 disables insert + # vacuums +#autovacuum_analyze_threshold = 50 # min number of row updates before + # analyze +#autovacuum_vacuum_scale_factor = 0.2 # fraction of table size before vacuum +#autovacuum_vacuum_insert_scale_factor = 0.2 # fraction of inserts over table + # size before insert vacuum +#autovacuum_analyze_scale_factor = 0.1 # fraction of table size before analyze +#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum + # (change requires restart) +#autovacuum_multixact_freeze_max_age = 400000000 # maximum multixact age + # before forced vacuum + # (change requires restart) +#autovacuum_vacuum_cost_delay = 2ms # default vacuum cost delay for + # autovacuum, in milliseconds; + # -1 means use vacuum_cost_delay +#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for + # autovacuum, -1 means use + # vacuum_cost_limit + + +#------------------------------------------------------------------------------ +# CLIENT CONNECTION DEFAULTS +#------------------------------------------------------------------------------ + +# - Statement Behavior - + +#client_min_messages = notice # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # log + # notice + # warning + # error +#search_path = '"$user", public' # schema names +#row_security = on +#default_table_access_method = 'heap' +#default_tablespace = '' # a tablespace name, '' uses the default +#default_toast_compression = 'pglz' # 'pglz' or 'lz4' +#temp_tablespaces = '' # a list of tablespace names, '' uses + # only default tablespace +#check_function_bodies = on +#default_transaction_isolation = 'read committed' +#default_transaction_read_only = off +#default_transaction_deferrable = off +#session_replication_role = 'origin' +#statement_timeout = 0 # in milliseconds, 0 is disabled +#lock_timeout = 0 # in milliseconds, 0 is disabled +#idle_in_transaction_session_timeout = 0 # in milliseconds, 0 is disabled +#idle_session_timeout = 0 # in milliseconds, 0 is disabled +#vacuum_freeze_table_age = 150000000 +#vacuum_freeze_min_age = 50000000 +#vacuum_failsafe_age = 1600000000 +#vacuum_multixact_freeze_table_age = 150000000 +#vacuum_multixact_freeze_min_age = 5000000 +#vacuum_multixact_failsafe_age = 1600000000 +#bytea_output = 'hex' # hex, escape +#xmlbinary = 'base64' +#xmloption = 'content' +#gin_pending_list_limit = 4MB +#createrole_self_grant = '' # set and/or inherit + +# - Locale and Formatting - + +datestyle = 'iso, mdy' +#intervalstyle = 'postgres' +timezone = 'Etc/UTC' +#timezone_abbreviations = 'Default' # Select the set of available time zone + # abbreviations. Currently, there are + # Default + # Australia (historical usage) + # India + # You can create your own file in + # share/timezonesets/. +#extra_float_digits = 1 # min -15, max 3; any value >0 actually + # selects precise output mode +#client_encoding = sql_ascii # actually, defaults to database + # encoding + +# These settings are initialized by initdb, but they can be changed. +lc_messages = 'en_US.utf8' # locale for system error message + # strings +lc_monetary = 'en_US.utf8' # locale for monetary formatting +lc_numeric = 'en_US.utf8' # locale for number formatting +lc_time = 'en_US.utf8' # locale for time formatting + +#icu_validation_level = warning # report ICU locale validation + # errors at the given level + +# default configuration for text search +default_text_search_config = 'pg_catalog.english' + +# - Shared Library Preloading - + +#local_preload_libraries = '' +#session_preload_libraries = '' +#shared_preload_libraries = '' # (change requires restart) +#jit_provider = 'llvmjit' # JIT library to use + +# - Other Defaults - + +#dynamic_library_path = '$libdir' +#extension_destdir = '' # prepend path when loading extensions + # and shared objects (added by Debian) +#gin_fuzzy_search_limit = 0 + + +#------------------------------------------------------------------------------ +# LOCK MANAGEMENT +#------------------------------------------------------------------------------ + +#deadlock_timeout = 1s +#max_locks_per_transaction = 64 # min 10 + # (change requires restart) +#max_pred_locks_per_transaction = 64 # min 10 + # (change requires restart) +#max_pred_locks_per_relation = -2 # negative values mean + # (max_pred_locks_per_transaction + # / -max_pred_locks_per_relation) - 1 +#max_pred_locks_per_page = 2 # min 0 + + +#------------------------------------------------------------------------------ +# VERSION AND PLATFORM COMPATIBILITY +#------------------------------------------------------------------------------ + +# - Previous PostgreSQL Versions - + +#array_nulls = on +#backslash_quote = safe_encoding # on, off, or safe_encoding +#escape_string_warning = on +#lo_compat_privileges = off +#quote_all_identifiers = off +#standard_conforming_strings = on +#synchronize_seqscans = on + +# - Other Platforms and Clients - + +#transform_null_equals = off + + +#------------------------------------------------------------------------------ +# ERROR HANDLING +#------------------------------------------------------------------------------ + +#exit_on_error = off # terminate session on any error? +#restart_after_crash = on # reinitialize after backend crash? +#data_sync_retry = off # retry or panic on failure to fsync + # data? + # (change requires restart) +#recovery_init_sync_method = fsync # fsync, syncfs (Linux 5.8+) + + +#------------------------------------------------------------------------------ +# CONFIG FILE INCLUDES +#------------------------------------------------------------------------------ + +# These options allow settings to be loaded from files other than the +# default postgresql.conf. Note that these are directives, not variable +# assignments, so they can usefully be given more than once. + +#include_dir = '...' # include files ending in '.conf' from + # a directory, e.g., 'conf.d' +#include_if_exists = '...' # include file only if it exists +#include = '...' # include file + + +#------------------------------------------------------------------------------ +# CUSTOMIZED OPTIONS +#------------------------------------------------------------------------------ + +# Add settings for extensions here diff --git a/data/db/postmaster.opts b/data/db/postmaster.opts new file mode 100644 index 0000000..2682339 --- /dev/null +++ b/data/db/postmaster.opts @@ -0,0 +1 @@ +/usr/lib/postgresql/16/bin/postgres diff --git a/docker-compose.add.yml b/docker-compose.add.yml new file mode 100644 index 0000000..0b84f2c --- /dev/null +++ b/docker-compose.add.yml @@ -0,0 +1,25 @@ +# Add this service to your existing docker-compose.yml +services: + api: + build: ./backend + env_file: + - ./backend/.env + ports: + - "4000:4000" + depends_on: + - db + + # Example db service (if you don't already have one) + db: + image: postgres:15 + environment: + POSTGRES_DB: supersunday + POSTGRES_USER: supersunday + POSTGRES_PASSWORD: supersunday + volumes: + - pgdata:/var/lib/postgresql/data + ports: + - "5432:5432" + +volumes: + pgdata: diff --git a/docker-compose.yml b/docker-compose.yml index 5ef5c13..0459afb 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,45 +1,44 @@ services: db: - image: postgres:16-alpine + image: postgres:16 + container_name: supersunday_db environment: - POSTGRES_DB: ${POSTGRES_DB:-supersunday} - POSTGRES_USER: ${POSTGRES_USER:-supersunday} - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-supersunday} + POSTGRES_PASSWORD: postgres + POSTGRES_DB: supersunday volumes: - - db_data:/var/lib/postgresql/data - - ./db/init:/docker-entrypoint-initdb.d:ro + - ./data/db:/var/lib/postgresql/data healthcheck: - test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-supersunday} -d ${POSTGRES_DB:-supersunday}"] + test: ["CMD-SHELL", "pg_isready -U postgres -d supersunday -h localhost"] interval: 5s - timeout: 5s + timeout: 3s retries: 20 + start_period: 10s api: build: ./backend - env_file: .env + container_name: supersunday_api + env_file: + - ./backend/.env depends_on: db: condition: service_healthy expose: - - "8080" + - "4000" healthcheck: - test: ["CMD", "wget", "-qO-", "http://localhost:8080/api/health"] + test: ["CMD-SHELL", "curl -fsS http://localhost:4000/api/health || exit 1"] interval: 10s - timeout: 5s - retries: 20 + timeout: 3s + retries: 12 + start_period: 30s web: - build: ./frontend + image: nginx:alpine + container_name: supersunday_web depends_on: api: condition: service_healthy ports: - - "80:80" - healthcheck: - test: ["CMD-SHELL", "wget -qO- http://localhost/health || exit 1"] - interval: 10s - timeout: 5s - retries: 20 - -volumes: - db_data: \ No newline at end of file + - "80:80" # Tout le trafic arrive sur Nginx + volumes: + - ./frontend/public:/usr/share/nginx/html:ro + - ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro diff --git a/frontend/public/admin/index.html b/frontend/public/admin/index.html index a56b403..e60aedb 100644 --- a/frontend/public/admin/index.html +++ b/frontend/public/admin/index.html @@ -1,14 +1,28 @@ - Super Sunday — Admin - - - - - + Super Sunday — Admin + +
@@ -21,64 +35,85 @@
-
-
Organisation
-

Pilote tes tournois

-

Création rapide, génération Americano, scoring en deux clics.

-
- +

Connexion

- - - -

+
+ + +
+
+ + + +
+

Identifiants dans backend/.env (ADMIN_EMAIL / ADMIN_PASSWORD).

-
-
-
-
-
-
+
- - + + - \ No newline at end of file + diff --git a/frontend/public/assets/admin.ux.js b/frontend/public/assets/admin.ux.js new file mode 100644 index 0000000..4bb6b33 --- /dev/null +++ b/frontend/public/assets/admin.ux.js @@ -0,0 +1,160 @@ +import { + bindLoginForm, isAuthenticated, logout, + createTournament, addParticipant, scoreMatch, + listTournaments, listMatches +} from '/assets/api.js?v=10'; + +const toast = document.getElementById('toast'); +const adminSection = document.getElementById('adminSection'); +const loginSection = document.getElementById('loginSection'); + +function showToast(msg, ok=true){ + toast.textContent = msg; + toast.style.borderColor = ok ? 'rgba(143,237,255,.45)' : 'rgba(255,120,120,.45)'; + toast.classList.add('show'); + setTimeout(()=>toast.classList.remove('show'), 2200); +} + +function toggleAdminUI(){ + const logged = isAuthenticated(); + adminSection.classList.toggle('hide', !logged); + loginSection.classList.toggle('hide', logged); +} + +function disable(btn, spin, yes){ + btn.disabled = !!yes; + spin.classList.toggle('hide', !yes); +} + +async function renderTournaments(){ + const wrap = document.getElementById('listTournaments'); + const p_tid = document.getElementById('p_tid'); + const s_tid = document.getElementById('s_tid'); + try{ + const ts = await listTournaments(); + wrap.innerHTML = ts.map(t => `
#${t.id} — ${t.name} (${[t.location||'—', t.start_date].filter(Boolean).join(' • ')})
`).join('') || '
Aucun tournoi.
'; + const opts = [''].concat( + ts.map(t => ``) + ).join(''); + p_tid.innerHTML = opts; + s_tid.innerHTML = opts; + }catch(e){ + wrap.innerHTML = `
Erreur chargement: ${e.message}
`; + } +} + +async function renderMatchesForSelectedTournament(){ + const tid = Number(document.getElementById('s_tid').value || '0'); + const s_mid = document.getElementById('s_mid'); + if(!tid){ s_mid.innerHTML = ''; return; } + try{ + const ms = await listMatches(tid); + s_mid.innerHTML = [''].concat( + ms.map(m => ``) + ).join(''); + }catch(e){ + s_mid.innerHTML = ''; + } +} + +function bindAuth(){ + bindLoginForm({}); + const logoutBtn = document.getElementById('logoutBtn'); + logoutBtn?.addEventListener('click', ()=>{ + logout(); toggleAdminUI(); showToast('Déconnecté.'); + }); +} + +function bindAdminActions(){ + document.getElementById('createTournamentBtn')?.addEventListener('click', async (e)=>{ + const btn = e.currentTarget; + const spin = document.getElementById('createTournamentSpin'); + const err = document.getElementById('createTournamentErr'); + err.textContent=''; + const name = document.getElementById('t_name').value.trim(); + if(!name){ err.textContent='Le nom est requis.'; return; } + const payload = { + name, + location: document.getElementById('t_location').value.trim(), + start_date: document.getElementById('t_start').value || null, + end_date: document.getElementById('t_end').value || null + }; + try{ + disable(btn, spin, true); + await createTournament(payload); + showToast('Tournoi créé ✔'); + document.getElementById('t_name').value=''; + document.getElementById('t_location').value=''; + document.getElementById('t_start').value=''; + document.getElementById('t_end').value=''; + renderTournaments(); + }catch(e){ + err.textContent = e?.payload?.error || e.message; + showToast('Erreur création tournoi', false); + }finally{ + disable(btn, spin, false); + } + }); + + document.getElementById('addParticipantBtn')?.addEventListener('click', async (e)=>{ + const btn = e.currentTarget; + const spin = document.getElementById('addParticipantSpin'); + const err = document.getElementById('addParticipantErr'); + err.textContent=''; + const tid = Number(document.getElementById('p_tid').value || '0'); + const full_name = document.getElementById('p_fullname').value.trim(); + if(!tid){ err.textContent='Choisis un tournoi.'; return; } + if(!full_name){ err.textContent='Nom du joueur requis.'; return; } + try{ + disable(btn, spin, true); + await addParticipant(tid, { full_name }); + showToast('Joueur ajouté ✔'); + document.getElementById('p_fullname').value=''; + }catch(e){ + err.textContent = e?.payload?.error || e.message; + showToast('Erreur ajout joueur', false); + }finally{ + disable(btn, spin, false); + } + }); + + document.getElementById('s_tid')?.addEventListener('change', renderMatchesForSelectedTournament); + + document.getElementById('scoreBtn')?.addEventListener('click', async (e)=>{ + const btn = e.currentTarget; + const spin = document.getElementById('scoreSpin'); + const err = document.getElementById('scoreErr'); + err.textContent=''; + const mid = Number(document.getElementById('s_mid').value || '0'); + if(!mid){ err.textContent='Choisis un match.'; return; } + const payload = { + score_a: Number(document.getElementById('m_a').value||'0'), + score_b: Number(document.getElementById('m_b').value||'0'), + done: document.getElementById('m_done').checked + }; + try{ + disable(btn, spin, true); + await scoreMatch(mid, payload); + showToast('Score enregistré ✔'); + document.getElementById('m_a').value=''; + document.getElementById('m_b').value=''; + document.getElementById('m_done').checked=false; + }catch(e){ + err.textContent = e?.payload?.error || e.message; + showToast('Erreur scoring', false); + }finally{ + disable(btn, spin, false); + } + }); + + document.getElementById('refreshTournaments')?.addEventListener('click', renderTournaments); +} + +function init(){ + toggleAdminUI(); + bindAuth(); + bindAdminActions(); + if(isAuthenticated()) renderTournaments(); +} + +document.addEventListener('DOMContentLoaded', init); diff --git a/frontend/public/assets/api.js b/frontend/public/assets/api.js index e7aa18a..fa4766d 100644 --- a/frontend/public/assets/api.js +++ b/frontend/public/assets/api.js @@ -1,12 +1,80 @@ -const api = { - base: '', - token: null, - setToken(t){ this.token = t; localStorage.setItem('ss_token', t); }, - getToken(){ return this.token || localStorage.getItem('ss_token'); }, - headers(){ const h = { 'Content-Type':'application/json' }; const t=this.getToken(); if(t) h['Authorization']='Bearer '+t; return h; }, - async get(path){ const r = await fetch('/api'+path, { headers: this.headers() }); if(!r.ok) throw new Error(await r.text()); return r.json(); }, - async post(path, body){ const r = await fetch('/api'+path, { method:'POST', headers:this.headers(), body: JSON.stringify(body) }); if(!r.ok) throw new Error(await r.text()); return r.json(); }, - async put(path, body){ const r = await fetch('/api'+path, { method:'PUT', headers:this.headers(), body: JSON.stringify(body) }); if(!r.ok) throw new Error(await r.text()); return r.json(); }, - async del(path, body){ const r = await fetch('/api'+path, { method:'DELETE', headers:this.headers(), body: JSON.stringify(body) }); if(!r.ok) throw new Error(await r.text()); return r.json(); } -}; -window.SSAPI = api; \ No newline at end of file +/* ============================================================================ + Super Sunday — Frontend API client (ESM) + ============================================================================ */ +const BASE = '/api'; +const TOKEN_KEY = 'ss_token'; + +function getToken() { return localStorage.getItem(TOKEN_KEY) || ''; } +function setToken(t) { if (t) localStorage.setItem(TOKEN_KEY, t); else localStorage.removeItem(TOKEN_KEY); } + +async function fetchJSON(url, opts = {}) { + const res = await fetch(url, opts); + const ct = res.headers.get('content-type') || ''; + const isJSON = ct.includes('application/json'); + const data = isJSON ? await res.json().catch(() => ({})) : await res.text(); + if (!res.ok) { + const err = new Error((data && data.error) || res.statusText || 'HTTP Error'); + err.status = res.status; err.payload = data; + throw err; + } + return data; +} + +async function authFetch(path, options = {}) { + const token = getToken(); + const headers = new Headers(options.headers || {}); + headers.set('Content-Type','application/json'); + if(token) headers.set('Authorization',`Bearer ${token}`); + return fetchJSON(`${BASE}${path}`,{...options,headers}); +} + +/* Public endpoints */ +export async function listTournaments(){ return fetchJSON(`${BASE}/tournaments`); } +export async function getTournament(id){ return fetchJSON(`${BASE}/tournaments/${id}`); } +export async function listParticipants(id){ return fetchJSON(`${BASE}/tournaments/${id}/participants`); } +export async function listMatches(id){ return fetchJSON(`${BASE}/tournaments/${id}/matches`); } + +/* Admin endpoints */ +export async function login(email,password){ + const data = await fetchJSON(`${BASE}/auth/login`,{ + method:'POST',headers:{'Content-Type':'application/json'}, + body: JSON.stringify({email,password}) + }); + if(data && data.token) setToken(data.token); + return data; +} +export function logout(){ setToken(''); } +export function isAuthenticated(){ return !!getToken(); } + +export async function createTournament(payload){ + return authFetch(`/tournaments`,{method:'POST',body:JSON.stringify(payload)}); +} +export async function addParticipant(tid,payload){ + return authFetch(`/tournaments/${tid}/participants`,{method:'POST',body:JSON.stringify(payload)}); +} +export async function generateAmericano(tid,payload){ + return authFetch(`/tournaments/${tid}/generate-americano`,{method:'POST',body:JSON.stringify(payload)}); +} +export async function scoreMatch(mid,payload){ + return authFetch(`/matches/${mid}/score`,{method:'POST',body:JSON.stringify(payload)}); +} + +/* Helpers */ +export function bindLoginForm({formSel='#loginSection',statusSel='#loginStatus'}={}){ + const form=document.querySelector(formSel); + const status=document.querySelector(statusSel); + if(!form) return; + const email=form.querySelector('#email'); + const password=form.querySelector('#password'); + const btn=form.querySelector('#loginBtn'); + btn?.addEventListener('click',async ()=>{ + status.textContent='Connexion…'; + try{ + await login(email.value.trim(),password.value); + status.textContent='Connecté ✔'; + const admin=document.querySelector('#adminSection'); + if(admin) admin.style.display='grid'; + form.style.display='none'; + }catch(e){ status.textContent=`Erreur: ${e.payload?.error||e.message}`; } + }); +} diff --git a/frontend/public/assets/style.css b/frontend/public/assets/style.css index 1379f7d..e8f096d 100644 --- a/frontend/public/assets/style.css +++ b/frontend/public/assets/style.css @@ -1,371 +1,247 @@ -/* === Super Sunday — Global sporty theme + hero background + subtle bubbles === */ +/* ========================================================================== + Super Sunday — Frontend Theme (Clean, Consolidated) + - Dark, Sirion-like base + - Hero gradient headings (n8n vibe) + - Background image + dark overlays + colored bubbles + - Glass-dark cards, flat rounded buttons, dark inputs + - Simple, deterministic z-index stack + -------------------------------------------------------------------------- */ -/* Palette */ +/* ========== 0) Design tokens ========== +*/ :root { - --bg: #f4f7fb; - --surface: #ffffff; - --surface-2: #f2f5fa; - --ink: #101827; - --muted: #6b7280; - --border: #e5e9f2; + /* Colors */ + --ink: #eaf1ff; + --ink-strong: #ffffff; + --muted: #9fb0c7; + --panel: rgba(12,16,28,.75); + --panel-border: rgba(255,255,255,.12); + --cta: #1890ff; + --cta-hover: #3aa0ff; - --accent-start: #1ea7ff; - --accent-end: #27d980; - --accent: #1890ff; + /* Accents for gradients */ + --grad-rose: #ff7ad9; + --grad-violet: #7c4dff; + --grad-cyan: #00e5ff; + /* Layout */ --radius: 16px; - --shadow: 0 6px 18px rgba(0,0,0,.06); - --shadow-hover: 0 10px 28px rgba(0,0,0,.12); + --radius-xl: 20px; + --shadow: 0 10px 30px rgba(0,0,0,.35); + --shadow-hover: 0 16px 36px rgba(0,0,0,.45); --trans: 180ms ease; } -*{box-sizing:border-box} -html,body{height:100%}/* === Super Sunday — Dark "Sirion-like" theme overrides === */ +* { box-sizing: border-box; } +html, body { height: 100%; } -/* 0) Couleurs globales + typo */ -:root{ - --ink: #e8eef6; /* texte global clair */ - --ink-strong: #ffffff; /* titres */ - --muted: #b7c3d6; /* textes secondaires */ - --border-dark: rgba(255,255,255,.08); - --surface-dark: rgba(15,23,42,.60); /* slate-900 translucide */ - --surface-dark-2: rgba(15,23,42,.72); -} - -/* 1) Fond sombre bleuté + image adoucie */ -body{ +/* ========== 1) Base & background ========== +*/ +body { + margin: 0; + font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji", sans-serif; color: var(--ink); + line-height: 1.5; } -body::before{ - content:""; - position:fixed; inset:0; z-index:-2; + +/* Background image + dark overlays */ +body::before { + content: ""; + position: fixed; inset: 0; + z-index: -3; /* far background */ background: - radial-gradient(120% 85% at 20% -10%, rgba(3,7,18,.9) 0%, rgba(3,7,18,.6) 40%, rgba(3,7,18,.3) 60%, rgba(3,7,18,.2) 100%), - linear-gradient(180deg, rgba(9,14,30,.75), rgba(9,14,30,.55) 40%, rgba(9,14,30,.75)), + /* colored ambience blobs */ + radial-gradient(40% 35% at 15% 10%, rgba(124,77,255,.23), rgba(124,77,255,0) 60%), + radial-gradient(45% 40% at 85% 20%, rgba(0,229,255,.20), rgba(0,229,255,0) 60%), + radial-gradient(55% 50% at 50% 85%, rgba(255,122,217,.16), rgba(255,122,217,0) 60%), + /* dark veil */ + linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.58) 35%, rgba(0,0,0,.70)), + /* photo */ url("/assets/image/backgroundp24p.jpg") center top / cover no-repeat; - filter: saturate(.9) contrast(.95) brightness(.9) blur(0.5px); + filter: saturate(.96) contrast(.98) brightness(.9) blur(.4px); } -body::after{ - /* vignette douce pour focus centre */ - content:""; - position:fixed; inset:0; z-index:-1; pointer-events:none; + +body::after { + /* vignette for edge darkening */ + content: ""; + position: fixed; inset: 0; + z-index: -2; /* above background */ + pointer-events: none; background: - radial-gradient(140% 100% at 50% 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,.26) 100%), - radial-gradient(120% 90% at 50% 100%, rgba(0,0,0,0) 60%, rgba(0,0,0,.22) 100%); + radial-gradient(145% 100% at 50% 0%, rgba(0,0,0,0) 52%, rgba(0,0,0,.30) 100%), + radial-gradient(125% 90% at 50% 100%, rgba(0,0,0,0) 58%, rgba(0,0,0,.24) 100%); } -/* 2) Titres & textes */ -h1,h2,h3{ color: var(--ink-strong); } -.hero-title{ - color:#fff !important; - text-shadow: 0 8px 30px rgba(30,167,255,.25), 0 2px 12px rgba(0,0,0,.35); +/* ========== 2) Colored bubbles (between overlays and UI) ========== +*/ +@keyframes float { + 0% { transform: translateY(0) scale(1); opacity: .75; } + 50% { transform: translateY(-36px) scale(1.06); opacity: .45; } + 100% { transform: translateY(0) scale(1); opacity: .75; } } -.section-title{ - color:#f1f5ff; -} -.section-title::before{ - background: linear-gradient(180deg, #8ee7ff, #9fffcf); - box-shadow: 0 6px 16px rgba(143, 237, 255, .35); -} -.muted{ color: var(--muted); } -/* 3) Header sombre translucide */ -header{ - background: rgba(10,14,26,.78); - color:#fff; - border-bottom: 1px solid var(--border-dark); +.bg-bubble { + position: fixed; + z-index: -1; /* between overlays and UI */ + pointer-events: none; + border-radius: 50%; + opacity: .9; + /* blue ↔ violet glow */ + background: + radial-gradient(60% 60% at 30% 30%, rgba(124,77,255,.55), rgba(124,77,255,0) 70%), + radial-gradient(55% 55% at 70% 70%, rgba(0,229,255,.45), rgba(0,229,255,0) 75%); + animation: float 10s ease-in-out infinite; + filter: blur(.3px); +} + +.bg-bubble.b1 { width:120px; height:120px; left:12%; top:68%; animation-duration: 9s; } +.bg-bubble.b2 { width:90px; height:90px; left:70%; top:58%; animation-duration:12s; } +.bg-bubble.b3 { width:150px; height:150px; left:46%; top:76%; animation-duration:14s; } +.bg-bubble.b4 { width:80px; height:80px; left:84%; top:22%; animation-duration:11s; } +.bg-bubble.b5 { width:110px; height:110px; left:6%; top:18%; animation-duration:10s; } + +@media (prefers-reduced-motion: reduce) { .bg-bubble { animation: none; } } + +/* Ensure content sits above bubbles */ +header, main, nav, .card { position: relative; z-index: 0; } + +/* ========== 3) Header & navigation ========== +*/ +header { + position: sticky; top: 0; z-index: 40; + display: flex; align-items: center; justify-content: space-between; + padding: 14px 24px; + background: linear-gradient(180deg, rgba(5,8,14,.96), rgba(5,8,14,.88)); + color: #fff; + border-bottom: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(10px) saturate(130%); -webkit-backdrop-filter: blur(10px) saturate(130%); } -nav a{ color:#e9f2ff; } -nav a:hover{ background: rgba(255,255,255,.06); } +header h1 { margin: 0; font-size: 20px; font-weight: 700; color: #fff; } -/* 4) Cartes dark glass */ -.card{ - background: var(--surface-dark); - border: 1px solid var(--border-dark); - backdrop-filter: blur(10px); - -webkit-backdrop-filter: blur(10px); - box-shadow: 0 10px 30px rgba(0,0,0,.35); +nav a { + margin-left: 16px; padding: 8px 14px; + color: #f2f6ff; text-decoration: none; + border-radius: 12px; font-weight: 600; + transition: background var(--trans), transform var(--trans), border-color var(--trans); } -.card.accent{ - background: - linear-gradient(135deg, rgba(30,167,255,.12), rgba(39,217,128,.12)), - var(--surface-dark-2); - border-color: rgba(255,255,255,.12); +nav a:hover { background: rgba(255,255,255,.08); } +nav a.active { + background: rgba(255,255,255,.10); + border: 1px solid rgba(255,255,255,.22); + box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); } -/* 5) Inputs / selects en sombre lisible */ -input, select{ - color:#e8eef6; - background: rgba(8,12,24,.6); - border: 1px solid rgba(255,255,255,.10); -} -input::placeholder, select::placeholder{ color:#9fb0c7; } -input:focus, select:focus{ - border-color: rgba(143, 237, 255, .55); - box-shadow: 0 0 0 3px rgba(143, 237, 255, .18); -} +/* ========== 4) Layout & containers ========== +*/ +.container { max-width: 1160px; margin: 24px auto; padding: 0 16px; } +.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } -/* 6) Boutons */ -.btn{ - box-shadow: 0 12px 28px rgba(30,167,255,.3); -} -.btn-outline{ - color:#eaf3ff; - background: rgba(255,255,255,.06); - border:1px solid rgba(255,255,255,.25); -} -.btn-outline:hover{ - background: rgba(255,255,255,.12); - border-color: rgba(255,255,255,.45); -} - -/* 7) État vide & préformatés */ -.empty{ - background: rgba(255,255,255,.06); - border: 1px dashed rgba(255,255,255,.18); - color: #c8d5e8; -} -pre{ - color:#e7efff; - background: rgba(8,12,24,.55); - border: 1px solid rgba(255,255,255,.08); - padding: 12px; border-radius: 12px; overflow:auto; -} - -/* 8) Légère retouche des bulles pour le mode sombre */ -.bg-bubble{ - background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), rgba(255,255,255,0)); - mix-blend-mode: screen; - opacity:.7; -} -body{ - margin:0; - font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif; - color:var(--ink); - line-height:1.5; - - /* Hero background image */ - background-image: url("/assets/image/backgroundp24p.jpg"); - background-size: cover; - background-position: center top; - background-attachment: fixed; -} - -/* dark overlay to ensure readability */ -body::before{ - content:""; - position:fixed; inset:0; - background: linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,.60)); - mix-blend-mode: normal; - z-index:-1; -} - -/* ===== Header / Nav ===== */ -header{ - position: sticky; top:0; z-index:40; - display:flex; align-items:center; justify-content:space-between; - padding: 14px 24px; - background: rgba(255,255,255,0.86); - border-bottom:1px solid var(--border); - backdrop-filter: blur(8px) saturate(120%); -} -header h1{margin:0; font-size:20px; font-weight:700; color:var(--ink)} -nav a{ - margin-left:16px; padding:8px 14px; - color:var(--ink); text-decoration:none; border-radius:12px; - transition: background var(--trans), transform var(--trans); -} -nav a:hover{ background: linear-gradient(90deg, rgba(30,167,255,.15), rgba(39,217,128,.15)); transform:translateY(-1px) } - -/* ===== Layout ===== */ -.container{ max-width:1100px; margin:24px auto; padding:0 16px } -.grid{ display:grid; gap:20px; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)) } - -/* ===== Cards ===== */ -.card{ - background: var(--surface); - border:1px solid var(--border); - border-radius: var(--radius); +/* ========== 5) Cards ========== +*/ +.card { + background: var(--panel); + border: 1px solid var(--panel-border); + border-radius: var(--radius-xl); padding: 18px; box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans); } -.card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color:#dbe5f2 } -a.card{ display:block; color:inherit; text-decoration:none } -.card.accent{ - background: linear-gradient(135deg, rgba(30,167,255,.08), rgba(39,217,128,.08)), var(--surface); - border-color: rgba(30,167,255,.25); +.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: rgba(143,237,255,.35); } +.card.accent { + background: + linear-gradient(180deg, rgba(124,77,255,.10), rgba(0,229,255,.10)), + var(--panel); + border-color: rgba(255,255,255,.14); +} +#tournaments .card, #matches .card { margin-bottom: 12px; } + +/* ========== 6) Typography ========== +*/ +h1, h2, h3 { color: var(--ink-strong); line-height: 1.2; } +.muted { color: var(--muted); } + +/* Hero & section titles (n8n-like gradients) */ +.hero-title { + font-size: clamp(42px, 6.8vw, 78px); + font-weight: 900; + letter-spacing: -.02em; + line-height: 1.04; + background: linear-gradient(90deg, var(--grad-rose) 0%, var(--grad-violet) 45%, var(--grad-cyan) 95%); + -webkit-background-clip: text; background-clip: text; color: transparent; + text-shadow: 0 10px 30px rgba(124,77,255,.22), 0 2px 12px rgba(0,0,0,.35); + margin-bottom: .25rem; +} +.section-title { + font-size: clamp(26px, 3.8vw, 42px); + font-weight: 800; letter-spacing: -.01em; + background: linear-gradient(90deg, var(--grad-violet), var(--grad-cyan)); + -webkit-background-clip: text; background-clip: text; color: transparent; } -/* Titles / text */ -h1,h2,h3{ line-height:1.2 } -h2{ margin: 20px 0 12px; font-size:22px; font-weight:600 } -.muted{ color: var(--muted) } -.mt{ margin-top:24px } - -/* Buttons & inputs */ -.btn{ - display:inline-block; padding:10px 18px; border-radius:12px; border:none; - background: linear-gradient(90deg, var(--accent-start), var(--accent-end)); - color:#fff; font-weight:600; text-decoration:none; - box-shadow: 0 8px 20px rgba(24,144,255,.25); - transition: transform var(--trans), box-shadow var(--trans); -} -.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 28px rgba(24,144,255,.35) } - -input,select{ - width:100%; padding:10px 12px; border-radius:12px; border:1px solid var(--border); - background: var(--surface-2); color: var(--ink); outline:none; +/* ========== 7) Forms & buttons ========== +*/ +input, select, textarea { + width: 100%; + padding: 12px 14px; + min-height: 44px; + border-radius: 14px; + color: #eaf3ff; + background: #0f1b33; + border: 1px solid rgba(255,255,255,.15); + outline: none; transition: border-color var(--trans), box-shadow var(--trans); + margin: 10px 0 16px; } -input:focus,select:focus{ border-color:#b8d8ff; box-shadow: 0 0 0 3px rgba(24,144,255,.20) } - -/* Empty state */ -.empty{ - padding: 20px; text-align:center; color:var(--muted); - background: var(--surface-2); border:1px dashed var(--border); - border-radius: var(--radius); +input::placeholder, textarea::placeholder { color: #93a4c0; } +input:focus, select:focus, textarea:focus { + border-color: rgba(143,237,255,.55); + box-shadow: 0 0 0 3px rgba(143, 237, 255, .18); } -/* Specific existing sections */ -#tournaments .card, #matches .card{ margin-bottom:12px } - -/* ===== Animated bubbles (tennis/padel ball ghosts) ===== */ -@keyframes float { - 0% { transform: translateY(0) scale(1); opacity:.7; } - 50% { transform: translateY(-36px) scale(1.05); opacity:.4; } - 100% { transform: translateY(0) scale(1); opacity:.7; } -} -.bg-bubble{ - position: fixed; z-index: -1; pointer-events: none; border-radius: 50%; - background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.75), rgba(255,255,255,0)); - filter: blur(0.2px); - animation: float 9s ease-in-out infinite; - mix-blend-mode: screen; -} -.bg-bubble.b1{ width:90px; height:90px; left:15%; top:72%; animation-duration:8s } -.bg-bubble.b2{ width:70px; height:70px; left:68%; top:64%; animation-duration:10s } -.bg-bubble.b3{ width:115px; height:115px; left:48%; top:78%; animation-duration:12s } -.bg-bubble.b4{ width:60px; height:60px; left:82%; top:20%; animation-duration:11s } -.bg-bubble.b5{ width:80px; height:80px; left:6%; top:18%; animation-duration:9s } - -@media (prefers-reduced-motion: reduce){ - .bg-bubble{ animation: none; } -} - -/* Footer (if needed) */ -footer{ margin:40px 0 0; padding:24px 16px; text-align:center; color:var(--muted); - border-top:1px solid var(--border); background: rgba(255,255,255,.75); backdrop-filter: blur(6px) } - - /* === Retouches: overlay noir + spacing formulaires === */ - -/* 1) Overlay plus noir, façon Sirion */ -body::before{ - /* on garde l'image + on fonce nettement avec un voile noir bleuté */ - background: - linear-gradient(180deg, rgba(0,0,0,.70), rgba(0,0,0,.55) 35%, rgba(0,0,0,.68)), - radial-gradient(120% 85% at 20% -10%, rgba(0,10,20,.75) 0%, rgba(0,10,20,.35) 60%, rgba(0,10,20,.20) 100%), - url("/assets/image/backgroundp24p.jpg") center top / cover no-repeat !important; - filter: saturate(.95) contrast(.98) brightness(.88) blur(0.6px); -} - -/* vignette un peu plus marquée sur les bords */ -body::after{ - background: - radial-gradient(145% 100% at 50% 0%, rgba(0,0,0,0) 52%, rgba(0,0,0,.30) 100%), - radial-gradient(125% 90% at 50% 100%, rgba(0,0,0,0) 58%, rgba(0,0,0,.24) 100%) !important; -} - -/* 2) Spacing des formulaires (inputs & dropdowns) */ -.card input, -.card select, -.card textarea { - margin-top: 8px !important; - margin-bottom: 14px !important; /* +respiration */ - min-height: 42px; /* dropdowns plus grands */ - padding: 10px 12px !important; - border-radius: 12px !important; -} - -/* espacement entre groupes de champs (si
direct dans .card) */ -.card > div + div { margin-top: 16px; } - -/* si tu utilises des