Round #612
09 May 2026, 23:25· hr-law· Meta-Llama-3.3-70B-Instruct· r13-clean-hints
- Complexity
- band 0
- ZP / UO / OBS
- 0 / 0 / 0
- Journey weight
- 0
- Lightshift ΔL
- —
Prompt
I paid a deposit for furniture but the company has gone bust. Can I recover the deposit?
Zero-point index (what the engine surfaced)
ZPI-ZPI-0021 | 2026-05-09T23:25:46Z
I paid a deposit for furniture but the company has gone bust. Can I recover the deposit?
ZERO POINT — 0 entries (structural invariants)
UNOBSERVED — 0 entries (implied truths)
OBSERVED — 0 entries (explicit in request)
COMPLEXITY │ 0 entries │ spread: 0° │ band: LOW
Baseline response (no ZPI)
I'm so sorry to hear that the company has gone bust. Recovering a deposit in such situations can be challenging, but there are steps you can take to try and get your money back. Here's a general outline of the process:
1. **Check if the company has entered administration or liquidation**: Look for official announcements or news articles confirming the company's insolvency. You can also check the company's website or social media for updates.
2. **Contact the administrator or liquidator**: If the company has entered administration or liquidation, a third-party administrator or liquidator will be appointed to handle the company's assets and debts. You can search for the administrator's or liquidator's contact information on the company's website, or check the UK Government's Insolvency Service website.
3. **Register as a creditor**: Reach out to the administrator or liquidator and register as a creditor. You'll need to provide proof of your deposit, such as a receipt or bank statement. This will help you to be included in the list of creditors and potentially receive a payout.
4. **Check if you have any contractual rights**: Review your contract or agreement with the company to see if it includes any provisions for deposit refunds in the event of the company's insolvency.
5. **Contact your credit card company or bank**: If you paid by credit card, you may be able to claim a refund through your credit card company's chargeback scheme. If you paid by debit card or bank transfer, you can contact your bank to see if they can help you recover the funds.
6. **Consider contacting the Financial Ombudsman Service (FOS)**: If you're unable to recover your deposit through the administrator or liquidator, you can contact the FOS for guidance and potential assistance.
7. **Look into alternative dispute resolution**: Depending on the circumstances, you may be able to use alternative dispute resolution methods, such as mediation or arbitration, to resolve the issue.
**Important notes:**
* The likelihood of recovering your deposit depends on the company's assets and the number of creditors.
* You may not receive a full refund, as the administrator or liquidator will need to distribute the available assets among all creditors.
* Be cautious of scams or fake companies claiming to help you recover your deposit. Only deal with official administrators, liquidators, or government agencies.
To increase your chances of recovering your deposit, act quickly and keep detailed records of all correspondence and transactions related to the company. Good luck, and I hope you're able to recover some or all of your deposit.
Enhanced response (with ZPI)
Recovering a deposit from a company that has gone bust can be challenging, but there are steps you can take to try to get your money back. Here's a general outline of the process:
### Step 1: Check if the company has entered administration or liquidation
If the company has entered administration, it means that an administrator has been appointed to try to rescue the business or sell its assets to pay off creditors. If the company has entered liquidation, it means that the business is being wound down and its assets are being sold to pay off creditors.
You can check the company's status on the following websites:
* Companies House (UK): [www.gov.uk/companieshouse](http://www.gov.uk/companieshouse)
* Insolvency Service (UK): [www.gov.uk/government/organisations/insolvency-service](http://www.gov.uk/government/organisations/insolvency-service)
### Step 2: Contact the administrator or liquidator
If the company has entered administration or liquidation, you should contact the administrator or liquidator to inform them that you have a claim against the company. They will be able to provide you with information on how to proceed.
You can find the contact details of the administrator or liquidator on the Companies House website or by searching online.
### Step 3: Submit a claim
To submit a claim, you will need to provide evidence of your deposit, such as a receipt or a copy of the contract. You should also provide details of the amount you paid and the date you paid it.
You can submit your claim to the administrator or liquidator in writing, either by post or email. Make sure to keep a record of your claim, including the date and time you submitted it.
### Step 4: Wait for the administrator or liquidator to respond
The administrator or liquidator will review your claim and respond to you in due course. If your claim is accepted, you will be added to the list of creditors and will receive a proportion of the assets that are available to pay off debts.
### Step 5: Consider alternative options
If the administrator or liquidator is unable to pay your claim in full, you may want to consider alternative options, such as:
* Contacting your credit card company or bank to see if they can help you recover your deposit
* Making a claim against the company's directors or owners, if you believe they were responsible for the company's failure
* Seeking advice from a consumer protection organization or a solicitor
It's worth noting that recovering a deposit from a company that has gone bust can be a lengthy and complex process, and there are no guarantees of success. However, by following the steps outlined above, you can increase your chances of getting your money back.
In terms of C# code, this process can be represented as a series of steps, each with its own set of requirements and outcomes. Here is an example of how this process could be modeled in C#:
```csharp
using System;
using System.Collections.Generic;
public class DepositRecoveryProcess
{
public enum Status { Pending, Accepted, Rejected }
public class Claim
{
public string CompanyName { get; set; }
public decimal Amount { get; set; }
public DateTime DatePaid { get; set; }
public Status Status { get; set; }
}
public List<Claim> Claims { get; set; }
public DepositRecoveryProcess()
{
Claims = new List<Claim>();
}
public void SubmitClaim(Claim claim)
{
Claims.Add(claim);
claim.Status = Status.Pending;
}
public void UpdateClaimStatus(Claim claim, Status status)
{
claim.Status = status;
}
public decimal CalculatePayout(Claim claim)
{
// Calculate the payout based on the claim amount and the available assets
// This is a simplified example and the actual calculation would depend on the specific circumstances
return claim.Amount * 0.5m;
}
}
class Program
{
static void Main(string[] args)
{
var process = new DepositRecoveryProcess();
var claim = new DepositRecoveryProcess.Claim
{
CompanyName = "Furniture Company",
Amount = 1000m,
DatePaid = DateTime.Now,
Status = DepositRecoveryProcess.Status.Pending
};
process.SubmitClaim(claim);
process.UpdateClaimStatus(claim, DepositRecoveryProcess.Status.Accepted);
var payout = process.CalculatePayout(claim);
Console.WriteLine($"Claim status: {claim.Status}");
Console.WriteLine($"Payout: {payout}");
}
}
```
This code defines a `DepositRecoveryProcess` class that manages a list of claims and provides methods for submitting claims, updating claim status, and calculating payouts. The `Main` method demonstrates how to use this class to submit a claim, update its status, and calculate the payout.
Grader chain
Each grader reads the same baseline + enhanced pair and casts an independent verdict. Disagreement is the framework's own signal — not noise to be averaged away.
V1samba/Meta-Llama-3.3-70B-Instruct
BetterV4qwen2.5-coder-3b-instruct
BetterV5cerebras/qwen-3-235b-a22b-instruct-2507
BetterV7qwen2.5-coder-7b-instruct
BetterV8openai/gpt-4.1
BetterV9anthropic/claude-opus-4-7
WorseV12openai/gpt-4o
BetterComments
Our grader said what it said. What do you say? Comment as a guest below.
No comments yet. Be the first to say what you make of this round.