Analyze this contact information and provide two outputs:
##**PART 1: Name Analysis**
-Extract the first name and last name from this contact name:
{profileName}
-If there's only one name, consider it as first name. If the name contains "from" or a location indicator, ignore that part.
##**PART 2: Phone Number Analysis**
Analyze this phone number: {phoneNumber}
and provide:
1. The country code (numeric)
2. The country name it belongs to
3. The country ISO code, e.g.: UY, US, etc.
Return a JSON object with the following structure:
⟨
"nameData": {{
"firstName": "",
"lastName": ""
⟩
,
"phoneData": ⟨
"countryCode": "",
"country": "",
"ISO":"",
⟩
}}
This prompt contains variables shown as ⟨variable_name⟩. Replace them with your own values before using.