Round #697
10 May 2026, 08:52· hr-law· qwen2.5-coder-7b-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-10T08:52:34Z
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)
Recovering a deposit when a company goes bankrupt can be challenging, but there are several steps you can take to try and get your money back:
1. **Check Your Contract**: Review the terms of your contract with the company. Look for any clauses that outline what happens if the company goes bankrupt or fails to deliver the furniture.
2. **Contact the Company**: Even though the company is bankrupt, they may still have some assets or be able to communicate through their liquidators (if applicable). Contact them directly and explain your situation.
3. **File a Claim with Creditors’ Rights Office**: In many countries, there are specific offices that handle claims from creditors of bankrupt companies. You can file a claim with these offices, providing all necessary documentation such as proof of payment and the contract terms.
4. **Check for Liquidators or Bankruptcy Trustee**: If the company is in liquidation, look for information on their liquidators or bankruptcy trustee. They are responsible for managing the assets of the bankrupt company and distributing them to creditors.
5. **File a Claim with Your Local Consumer Protection Agency**: Many countries have consumer protection agencies that can help mediate disputes between consumers and businesses. They may also provide guidance on how to proceed with recovering your deposit.
6. **Consider Legal Action**: If all else fails, you might consider hiring a lawyer who specializes in bankruptcy law or consumer rights. They can advise you on the best course of action and represent you in court if necessary.
7. **Check for Guarantees or Warranties**: Sometimes, furniture companies offer guarantees or warranties that might cover the deposit in case of non-delivery or bankruptcy.
8. **Look for Alternative Sources**: If the company is completely defunct, check if there are any alternative sources where you can get a refund or compensation. This could include online marketplaces, other retailers, or government assistance programs.
Remember, the process of recovering a deposit from a bankrupt company can be time-consuming and may not always result in full recovery. However, taking these steps increases your chances of getting some form of compensation.
Enhanced response (with ZPI)
To address the situation where you've paid a deposit for furniture but the company has gone bankrupt, you can follow these steps:
1. **Check Your Contract**: Review the contract or agreement you signed with the company. Look for any provisions regarding deposits and bankruptcy. Many contracts include clauses that specify what happens to deposits in case of the company's insolvency.
2. **Contact the Company**: Reach out to the company to inquire about your deposit. They may have a process in place for handling such situations or be able to provide guidance on how to proceed.
3. **File a Claim with Creditors' Rights Office**: If the company is bankrupt, you can file a claim with the creditors' rights office (such as the Official Receiver in the UK) to recover your deposit. Provide them with all relevant documentation, including proof of payment and any contract terms.
4. **Consider Legal Advice**: If the process seems complex or if the company does not respond adequately, consider seeking legal advice. A lawyer can provide guidance on your rights and help you navigate the claims process.
5. **Check for Guarantees or Insurance**: Sometimes, furniture companies are insured or have guarantees that might cover deposits in case of bankruptcy. Check with the company to see if such coverage exists.
Here is a simple C# example demonstrating how you might implement a method to handle this scenario programmatically:
```csharp
using System;
using System.Threading.Tasks;
public class DepositRecoveryService
{
private readonly ICompanyRepository _companyRepository;
private readonly ICreditorsRightsOfficeClient _creditorsRightsOfficeClient;
public DepositRecoveryService(ICompanyRepository companyRepository, ICreditorsRightsOfficeClient creditorsRightsOfficeClient)
{
_companyRepository = companyRepository ?? throw new ArgumentNullException(nameof(companyRepository));
_creditorsRightsOfficeClient = creditorsRightsOfficeClient ?? throw new ArgumentNullException(nameof(creditorsRightsOfficeClient));
}
public async Task RecoverDepositAsync(string companyId, string depositId)
{
try
{
// Check if the company is bankrupt
var companyStatus = await _companyRepository.GetCompanyStatusAsync(companyId);
if (companyStatus == CompanyStatus.Bankrupt)
{
// File a claim with the creditors' rights office
await _creditorsRightsOfficeClient.FileClaimAsync(depositId, companyId);
Console.WriteLine("Deposit recovery process initiated.");
}
else
{
Console.WriteLine("Company is not bankrupt. Contacting company directly...");
// Implement logic to contact the company directly
}
}
catch (Exception ex)
{
Console.WriteLine($"Error during deposit recovery: {ex.Message}");
}
}
}
public interface ICompanyRepository
{
Task<CompanyStatus> GetCompanyStatusAsync(string companyId);
}
public enum CompanyStatus
{
Active,
Bankrupt
}
public interface ICreditorsRightsOfficeClient
{
Task FileClaimAsync(string depositId, string companyId);
}
```
### Explanation:
1. **DepositRecoveryService**: This class encapsulates the logic for recovering a deposit. It uses dependency injection to get instances of `ICompanyRepository` and `ICreditorsRightsOfficeClient`.
2. **RecoverDepositAsync Method**: This method checks if the company is bankrupt by calling `GetCompanyStatusAsync`. If the company is bankrupt, it files a claim with the creditors' rights office using `FileClaimAsync`.
3. **Interfaces**: `ICompanyRepository` and `ICreditorsRightsOfficeClient` define contracts for retrieving company status and filing claims, respectively.
This example provides a basic structure for handling deposit recovery in case of company bankruptcy. Depending on your specific requirements and the environment you're working in, additional error handling, logging, and functionality may be necessary.
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
BetterV5openrouter/qwen/qwen3-235b-a22b-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.