|
| 1 | +# CityAnalysis™ Module |
| 2 | + |
| 3 | +**Author:** Max Rupplin — MEARVK LLC |
| 4 | +**Contact:** mearvk@mearvk.us | mearvk@outlook.com |
| 5 | +**Phone:** 1.919.923.4239 |
| 6 | +**Belt Requirement:** Green Belt or Brown Belt |
| 7 | +**IQ Requirement:** 180+ |
| 8 | + |
| 9 | +--- |
| 10 | + |
| 11 | +## Overview |
| 12 | + |
| 13 | +CityAnalysis™ gathers property records and deed information for North Carolina cities by contacting county Register of Deeds websites, then applies a trained AI speculation engine to infer patterns in lending, property transactions, and community behavior. |
| 14 | + |
| 15 | +## Components |
| 16 | + |
| 17 | +| File | Purpose | |
| 18 | +|------|---------| |
| 19 | +| `CityAnalysisMain.java` | Entry point — IDE or terminal | |
| 20 | +| `CityAnalysisServer.java` | Fetches property/deed data from county websites | |
| 21 | +| `CitySpeculationEngine.java` | AI module — entity extraction, speculation, recursive self-analysis | |
| 22 | +| `CitySpeculationTrainer.java` | Moral-bound IQ spectrum spatial model trainer | |
| 23 | +| `city-analysis-config.xml` | City list, URLs, connection settings | |
| 24 | +| `cse-allowance-config.xml` | AI reasoning limits, IQ tiers, trainer params | |
| 25 | +| `legalice.presumes.xml` | Presumptions, rules, lessons, proofs for citizen classes | |
| 26 | + |
| 27 | +## Operations |
| 28 | + |
| 29 | +1. **Load config** — Reads city list and selects default (Durham, NC) |
| 30 | +2. **Fetch** — HTTP GET to county property records and Register of Deeds sites |
| 31 | +3. **Extract** — Pulls dollar amounts, percentages, keywords, URLs from data |
| 32 | +4. **Train** — Runs moral-bound spatial model with base-objection exponential falloff |
| 33 | +5. **Speculate** — Generates inferences on financial patterns, market focus, community behavior |
| 34 | +6. **Recursive speculation** — AI re-analyzes its own findings 1–3 passes, stopping if confidence drops |
| 35 | + |
| 36 | +## Settings (cse-allowance-config.xml) |
| 37 | + |
| 38 | +| Setting | Description | |
| 39 | +|---------|-------------| |
| 40 | +| `max-reasoning-time-ms` | Hard time limit on training (ms) | |
| 41 | +| `max-inputs` | Maximum input files/entries processed | |
| 42 | +| `input-value` | Importance weight of input (1–1000) | |
| 43 | +| `age-of-treason` | Toggle for persistence-under-duress modeling | |
| 44 | +| `max-heap-mb` | Memory ceiling for AI working set | |
| 45 | +| `democrat-class` / `citizen-class` | Importance weights for class inference | |
| 46 | +| `dominant-iq` | Central IQ for tier calculations | |
| 47 | +| `tiers` | 5-level IQ falloff (157+ to baseline) | |
| 48 | +| `recursive-speculation` | Max/min passes, confidence threshold | |
| 49 | + |
| 50 | +## Trainer Settings |
| 51 | + |
| 52 | +| Setting | Description | |
| 53 | +|---------|-------------| |
| 54 | +| `epochs` | Training iterations | |
| 55 | +| `learning-rate` | Base gradient step size | |
| 56 | +| `moral-bound-weight` | Constraint toward moral center | |
| 57 | +| `dimensions` | Spatial model dimensionality | |
| 58 | +| `base-objections` | Shyness, cause-aversion, social-distance with decay | |
| 59 | +| `falloff-model` | Exponential decay of objection pressure | |
| 60 | +| `learner-rate-spectrum` | Adaptive LR range (min/max) | |
| 61 | + |
| 62 | +## Output |
| 63 | + |
| 64 | +- `speculations/` — Initial speculation reports (timestamped) |
| 65 | +- `speculations/recursive/<date>/<time>/` — Recursive pass outputs by datetime |
| 66 | + |
| 67 | +## Usage |
| 68 | + |
| 69 | +```bash |
| 70 | +java CityAnalysisMain # Durham default, fetch only |
| 71 | +java CityAnalysisMain Raleigh # Fetch for Raleigh |
| 72 | +java CityAnalysisMain Durham input.data # Full speculation on input file |
| 73 | +``` |
| 74 | + |
| 75 | +## Concerns |
| 76 | + |
| 77 | +- This module contacts live county government websites; respect rate limits |
| 78 | +- Speculation outputs are heuristic inferences, not legal or financial advice |
| 79 | +- Training time is bounded by `max-reasoning-time-ms` to prevent runaway |
| 80 | +- Recursive passes halt early if model confidence degrades below threshold |
| 81 | +- All citizen classes are presumed good-faith per `legalice.presumes.xml` |
| 82 | + |
| 83 | +--- |
| 84 | + |
| 85 | +**This module is intended for 180+ IQ operators holding Green Belt or Brown Belt certification at this time.** |
0 commit comments