§
    Æô‰h[  ã                   ó   — d Z dZdZdS )a‰  
You are a helpful assistant extracting structured data from urban planning descriptions.

Your task is to extract the following fields from the description below. If a field is not mentioned or unclear, return null or 0 appropriately.

Return your response in **valid JSON**, no comments, no additional text.

**Fields to extract**:
- development_type: A short label for the overall development (e.g., Residential, Industrial, Subdivision, Vegetation Removal, Mixed Use, Community Facility, etc.)
- number_of_dwellings: Number of houses/dwellings (e.g., 3 if "construct three dwellings")
- number_of_storeys: Maximum storey count across buildings, if available (e.g., 2 for double storey)
- number_of_places: Number of places if it's Childcare / Medical / Aged Care (e.g., 60 childcare places)
- number_of_units: Number of units for apartments or townhouses
- number_of_lots: Number of lots if subdivision is mentioned

**Description**:
"""
{description}
"""

Respond in this JSON format:

{{
  "development_type": "...",
  "number_of_dwellings": ...,
  "number_of_storeys": ...,
  "number_of_places": ...,
  "number_of_units": ...,
  "number_of_lots": ...
}}
aþ  
You are extracting information from a Title Search document. Extract the following fields in JSON format. If a field is not found, use empty string or null as appropriate.

{{
  "document_type": "Title Search",
  "land_description": "",
  "registered_proprietor": "",
  "encumbrances": "",
  "activity_last_125_days": "",
  "administrative_notices": ""
}}

NOTE: 
- "Land Description" should include the full property address (e.g., "3 Hopetoun Street NORTHCOTE VIC 3070")
- "Registered Proprietor" is the legal owner of the land (person or entity name)
- "Encumbrances" are any restrictions, easements, or charges on the title (if none, use "None" or "No encumbrances")
- "Activity in the last 125 days" refers to recent dealings or changes to the title (if none, use "No recent activity")
- "Administrative Notices" are any official notices affecting the title (if none, use "None" or "No notices")

Look for these specific sections in the document and extract the exact text found.

Text to extract from:
'''{text}'''
aQ  
You are extracting information from an Application Form document. Extract the following fields in JSON format. If a field is not found, use empty string or null as appropriate.

{{
  "document_type": "Application Form",
  "land_description": "",
  "registered_proprietor": "",
  "encumbrances": "",
  "activity_last_125_days": "",
  "administrative_notices": ""
  "proposed_use": "",
  "description": ""
}}

NOTE: 
- "Land Description" should include the full property address (e.g., "3 Hopetoun Street NORTHCOTE VIC 3070")
- "Registered Proprietor" is the legal owner of the land (person or entity name)
- "Encumbrances" are any restrictions, easements, or charges on the title (if none, use "None" or "No encumbrances")
- "Activity in the last 125 days" refers to recent dealings or changes to the title (if none, use "No recent activity")
- "Administrative Notices" are any official notices affecting the title (if none, use "None" or "No notices")
- "Proposed Use" is the intended use of the land/development (e.g., "Residential/Accommodation", "Commercial", "Industrial")
- "Description" provides details about what the permit is for (e.g., "Two (2) Dwellings on Two (2) Lots as shown on the plans accompanying the application")

Look for these specific fields in the application form and extract the exact text found.

Text to extract from:
'''{text}'''
N)ÚEXTRACT_STRUCTURED_DATA_PROMPTÚTITLE_SEARCH_EXTRACTION_PROMPTÚ"APPLICATION_FORM_EXTRACTION_PROMPT© ó    ú./home/esfera/Downloads/shao/shaoApp/prompts.pyú<module>r      s$   ðð"Ð ð@"Ð ð2&Ð "Ð "Ð "r   