# Match Config Preview

> Read-only `MATCH_CONFIG` from `@nwa/partners` (code config only). Date-based caps use render time.
>
> Filters: view=by-partner, partner=range-financial

## Range Financial

- slug: `range-financial`
- buyerId: `2891d6a6-7def-11f0-93de-2372cf21c914`

### Payouts by range

- Under $100k: 1x $25 · 2x $19 · 3x $13 (default)
- $100k – $250k: 1x $75 · 2x $50 · 3x $38 (default)
- $250k – $500k: 1x $300 · 2x $225 · 3x $150 (default)
- $500k – $1M: 1x $300 · 2x $300 · 3x $300 (partner)
- Over $1M: 1x $300 · 2x $300 · 3x $300 (partner)

#### Base config
- Caps: $20,000 / month
- Matching criteria:
  - `wantsTheLead`
```js
({age:a,annualIncome:b})=>a>=35&&a<=55&&b>=25e4
```
  - `afterMatch`
```js
a => !(a.length < 3) || (console.info("Minimum number of buyers not reached, removing Range Financial from the list of buyers"), false)
```
- API: async, enabled

### RangeFinancial500kPlusStandard

Placements:

- Position 4 · $500k – $1M (`FROM_500K_TO_1M`) · HIGHEST
  - Full bucket: [1. domain-money, 2. edelman-financial-engines, 3. prime-capital, 4. range-financial, 5. carson, 6. zoe]
- Position 3 · Over $1M (`OVER_1M`) · PRIORITY
  - Full bucket: [1. zoe, 2. modern-wealth-management, 3. range-financial, 4. wealth-enhancement-group]

#### Config
- Caps: $20,000 / month
- Matching criteria:
  - `wantsTheLead`
```js
({age:a,annualIncome:b})=>a>=35&&a<=55&&b>=25e4
```
  - `afterMatch`
```js
a => !(a.length < 3) || (console.info("Minimum number of buyers not reached, removing Range Financial from the list of buyers"), false)
```
- API: async, enabled
