<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can't call my virtual number. in Discussion Forum</title>
    <link>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11619#M188</link>
    <description>&lt;P&gt;This is what I've done so far:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Call my virtual number, sinch server reaches to my backend with ICE event:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  event: 'ice',
  callid: '...',
  callResourceUrl: 'https://calling-euc1.api.sinch.com/calling/v1/calls/id/...',
  timestamp: '...',
  version: 1,
  userRate: { currencyId: 'USD', amount: 0 },
  cli: '-my-phone-number-',
  to: { type: 'did', endpoint: '-my-virtual-number-' },
  domain: 'pstn',
  applicationKey: '...',
  originationType: 'PSTN',
  rdnis: ''
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- My server reaches the sinch client.&lt;/P&gt;&lt;P&gt;- Invoke &lt;A href="https://download.sinch.com/js/latest/reference/interfaces/CallClient.html#callConference" target="_self"&gt;callConference&lt;/A&gt; function and put a random uuidv4 number in the function's argument-list.&lt;/P&gt;&lt;P&gt;- Retrieve the random uuidv4 number and send it to the sinch server via SVAML's connectConf action.&lt;/P&gt;&lt;P&gt;&amp;nbsp;- Another ICE event has come:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  event: 'ice',
  callid: '...',
  callResourceUrl: 'https://calling-apse1.api.sinch.com/calling/v1/calls/id/...',
  timestamp: '...',
  version: 1,
  custom: '{}',
  user: 'MyUserId',
  userRate: { currencyId: 'USD', amount: 0 },
  cli: '-My-Virtual-Number-',
  to: {
    type: 'conference',
    endpoint: '3602f098-9962-49a5-b090-...'
  },
  domain: 'mxp',
  applicationKey: '...',
  originationType: 'MXP',
  rdnis: '',
  callHeaders: []
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to respond to the second ICE? Right now, I'm responding with connectConf and using the event endpoint as conferenceId:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;res.status(200).
                        send({
                            action: {
                                name: "connectConf",
                                conferenceId: 3602f098-9962-49a5-b090-...,
                                moh: "music2"
                            }
                        });&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Once the last ICE event receives the response, sinch client ends the call in my client app. Moreover, my phone is still ringing and waiting for something.&lt;/P&gt;</description>
    <pubDate>Tue, 16 May 2023 19:24:44 GMT</pubDate>
    <dc:creator>leyk</dc:creator>
    <dc:date>2023-05-16T19:24:44Z</dc:date>
    <item>
      <title>Can't call my virtual number.</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11604#M183</link>
      <description>&lt;P&gt;I have a problem. I tried calling my virtual number using my phone number. Unfortunately, my phone says that the number(virtual number) is invalid. My phone number is in the 'verified number' list. My virtual number can receive sms from my phone and send sms to my phone. It can also send a call to my phone. My only problem is the incoming call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Right now, I'm using this basic endpoint for testing:&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;LI-CODE lang="javascript"&gt;const svamlResponse = {
    instructions: [
        {
            name: "say",
            text: "Hi, thank you for calling your Sinch number. Congratulations! You just responded to a phone call.",
            local: "en-US",
        },
    ],
    action: {
        name: "hangup",
    },
};

res.json(svamlResponse);&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;I use ngrok to tunnel my localhost port and put the ngrok url extended with my endpoint in the 'Callback' section of 'App' section in 'Voice &amp;amp; Video' section. I use Thunder Client to test if my endpoint with ngrok url is reachable and I can reach it with no problems.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 16 May 2023 13:29:01 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11604#M183</guid>
      <dc:creator>leyk</dc:creator>
      <dc:date>2023-05-16T13:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Can't call my virtual number.</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11611#M184</link>
      <description>&lt;P data-unlink="true"&gt;I fixed the problem. I forgot to add '+' prefix when calling my virtual number. My next problem is the ICE event. I'm using conference call to do inbound call because it's said in this &lt;A href="https://community.sinch.com/t5/Discussion-Forum/Cannot-create-SinchClient-instance-and-how-to-create-phone-to/td-p/11496" target="_self"&gt;post&lt;/A&gt;. This is my progress so far: I receive an ICE event from incoming call, create a conference using callConference(), return the conference id that is assigned to my created conference back to sinch server via SVAML connectConf action.&lt;/P&gt;&lt;P data-unlink="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;P data-unlink="true"&gt;Now, sinch server returns another ICE and I don't know what to do with this another ICE event. I ended the call using my phone and sinch server returns a DICE event.&lt;/P&gt;</description>
      <pubDate>Tue, 16 May 2023 13:46:32 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11611#M184</guid>
      <dc:creator>leyk</dc:creator>
      <dc:date>2023-05-16T13:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Can't call my virtual number.</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11616#M185</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are using a callback server (thats why you are receiving the call events) you must respond to the DICE with SVAML to also connect to the conference.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As you stated to put an InApp and PSTN call together you must use a conference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ConnectConf&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://developers.sinch.com/docs/voice/api-reference/svaml/actions/#connectconf" target="_blank"&gt;https://developers.sinch.com/docs/voice/api-reference/svaml/actions/#connectconf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Callback server&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;If you don't have an application to handle your callback events we have a sample one on github which uses nodejs so you can get an idea of what is required.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/sinch/voice-api-webhook-nodejs" target="_blank"&gt;https://github.com/sinch/voice-api-webhook-nodejs&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to know more about Callback servers we have this quick start&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.sinch.com/t5/Voice-API/What-is-a-callback-in-the-Sinch-Voice-world/ta-p/10250" target="_blank"&gt;https://community.sinch.com/t5/Voice-API/What-is-a-callback-in-the-Sinch-Voice-world/ta-p/10250&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is an example in the github sample to return a connectConf, look at the bottom of the index.js at the commented out SVAML examples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 May 2023 14:19:59 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11616#M185</guid>
      <dc:creator>Roland_Ian</dc:creator>
      <dc:date>2023-05-16T14:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can't call my virtual number.</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11619#M188</link>
      <description>&lt;P&gt;This is what I've done so far:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Call my virtual number, sinch server reaches to my backend with ICE event:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  event: 'ice',
  callid: '...',
  callResourceUrl: 'https://calling-euc1.api.sinch.com/calling/v1/calls/id/...',
  timestamp: '...',
  version: 1,
  userRate: { currencyId: 'USD', amount: 0 },
  cli: '-my-phone-number-',
  to: { type: 'did', endpoint: '-my-virtual-number-' },
  domain: 'pstn',
  applicationKey: '...',
  originationType: 'PSTN',
  rdnis: ''
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- My server reaches the sinch client.&lt;/P&gt;&lt;P&gt;- Invoke &lt;A href="https://download.sinch.com/js/latest/reference/interfaces/CallClient.html#callConference" target="_self"&gt;callConference&lt;/A&gt; function and put a random uuidv4 number in the function's argument-list.&lt;/P&gt;&lt;P&gt;- Retrieve the random uuidv4 number and send it to the sinch server via SVAML's connectConf action.&lt;/P&gt;&lt;P&gt;&amp;nbsp;- Another ICE event has come:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  event: 'ice',
  callid: '...',
  callResourceUrl: 'https://calling-apse1.api.sinch.com/calling/v1/calls/id/...',
  timestamp: '...',
  version: 1,
  custom: '{}',
  user: 'MyUserId',
  userRate: { currencyId: 'USD', amount: 0 },
  cli: '-My-Virtual-Number-',
  to: {
    type: 'conference',
    endpoint: '3602f098-9962-49a5-b090-...'
  },
  domain: 'mxp',
  applicationKey: '...',
  originationType: 'MXP',
  rdnis: '',
  callHeaders: []
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to respond to the second ICE? Right now, I'm responding with connectConf and using the event endpoint as conferenceId:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;res.status(200).
                        send({
                            action: {
                                name: "connectConf",
                                conferenceId: 3602f098-9962-49a5-b090-...,
                                moh: "music2"
                            }
                        });&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Once the last ICE event receives the response, sinch client ends the call in my client app. Moreover, my phone is still ringing and waiting for something.&lt;/P&gt;</description>
      <pubDate>Tue, 16 May 2023 19:24:44 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11619#M188</guid>
      <dc:creator>leyk</dc:creator>
      <dc:date>2023-05-16T19:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Can't call my virtual number.</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11669#M189</link>
      <description>&lt;H4&gt;Incoming ICE from PSTN (telephone leg)&lt;/H4&gt;
&lt;P&gt;The first ICE arrives at your backend when you call your number assigned to your application&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
  "event": "ice",
  "callid": "8d668511-9497-4c23-a7b7-xxxxxxxxxxx",
  "callResourceUrl": "https://calling-euc1.api.sinch.com/calling/v1/calls/id/8d668511-9497-4c23-a7b7-xxxxxxxxxxx",
  "timestamp": "2023-05-17T10:52:57Z",
  "version": 1,
  "userRate": {
    "currencyId": "USD",
    "amount": 0
  },
  "cli": "46xxxxxxxxxx",
  "to": {
    "type": "did",
    "endpoint": "+46xxxxxxxxx"
  },
  "domain": "pstn",
  "applicationKey": "xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx",
  "originationType": "PSTN",
  "rdnis": "+46xxxxxxxxx"
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&amp;nbsp;&lt;/H4&gt;
&lt;H4&gt;SVAML Response for PSTN domain ICE from your callback application&lt;/H4&gt;
&lt;P&gt;Here is an added say instruction before the &lt;STRONG&gt;connectConf&lt;/STRONG&gt; so you know when you are connected to a conference and when one participant only is in the conference music will play.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Notice the conferenceId is called &lt;STRONG&gt;InAppToPSTN &lt;/STRONG&gt;(you can call your conference anything you want)&lt;/P&gt;
&lt;P&gt;This must match on the InApp (MXP) leg when doing the &lt;STRONG&gt;connectConf &lt;/STRONG&gt;SVAML response&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
  "instructions": [
    {
    ┊ "name": "say",
    ┊ "text": "Conference test",
    ┊ "locale": "en-GB"
    }
  ],
  "action": {
    "name": "ConnectConf",
    "conferenceId": "InAppToPSTN",
    "suppressCallbacks": false,
    "moh": "ringing"
  }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&amp;nbsp;&lt;/H4&gt;
&lt;H4&gt;ICE from incoming SDK InApp (MXP) leg.&lt;/H4&gt;
&lt;P&gt;Note here the to is type conference and endpoint is InAppToPSTN (the conferenceId).&amp;nbsp; Even though you have requested a conference connect you must re-confirm that in the SVAML response with &lt;STRONG&gt;connectConf&lt;/STRONG&gt; (again, because you are using a callback server)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
  "event": "ice",
  "callid": "4f1632b4-c582-4cfe-84b1-xxxxxxxxxxxx",
  "callResourceUrl": "https://calling-euc1.api.sinch.com/calling/v1/calls/id/4f1632b4-c582-4cfe-84b1-xxxxxxxxxxxx",
  "timestamp": "2023-05-17T10:53:07Z",
  "version": 1,
  "user": "InApp-caller",
  "userRate": {
    "currencyId": "USD",
    "amount": 0
  },
  "to": {
    "type": "conference",
    "endpoint": "InAppToPSTN"
  },
  "domain": "mxp",
  "applicationKey": "xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx",
  "originationType": "MXP",
  "rdnis": "",
  "callHeaders": [
    {
    ┊ "key": "info",
    ┊ "value": "MXP and PSTN Conf test, InAppToPSTN Conference name"
    }
  ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;SVAML Response for MXP domain ICE from your callback application&lt;/H4&gt;
&lt;P&gt;Here you will respond with the same conferenceId as before (&lt;STRONG&gt;InAppToPSTN&lt;/STRONG&gt;).&amp;nbsp; There will be the same welcome message, but because their are two particpants in the conference &lt;STRONG&gt;InAppToPSTN&lt;/STRONG&gt; the music will stop playing and the conference can connect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
  "instructions": [
    {
    ┊ "name": "say",
    ┊ "text": "Conference test",
    ┊ "locale": "en-GB"
    }
  ],
  "action": {
    "name": "ConnectConf",
    "conferenceId": "InAppToPSTN",
    "suppressCallbacks": false,
    "moh": "ringing"
  }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That will be enough to get both parties in the conference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2023 11:25:58 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11669#M189</guid>
      <dc:creator>Roland_Ian</dc:creator>
      <dc:date>2023-05-17T11:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: Can't call my virtual number.</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11671#M191</link>
      <description>&lt;P&gt;Eidit: I think the reason for my problem is the region(callResourceUrl) of both devices are not the same. Is it possible to specify a region in the callConference function?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made a client and phone join a conference. However, the 'moh' or the music of both devices are still running.&lt;/P&gt;&lt;P&gt;Here's the log of my previous test&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;server started at port 4000
{
  event: 'ice',
  callid: '...',
  callResourceUrl: 'https://calling-euc1.api.sinch.com/calling/v1/calls/id/...',
  timestamp: '...',
  version: 1,
  userRate: { currencyId: 'USD', amount: 0 },
  cli: '...',
  to: { type: 'did', endpoint: '...' },
  domain: 'pstn',
  applicationKey: '...',
  originationType: 'PSTN',
  rdnis: ''
}
Phone Connected to Conference f8b40a0c-50a1-47e0-b3ce-03f8fb356e53
{
  event: 'ice',
  callid: '...',
  callResourceUrl: 'https://calling-apse1.api.sinch.com/calling/v1/calls/id/...',
  timestamp: '...',
  version: 1,
  custom: '{}',
  user: '...',
  userRate: { currencyId: 'USD', amount: 0 },
  cli: '...',
  to: {
    type: 'conference',
    endpoint: 'f8b40a0c-50a1-47e0-b3ce-03f8fb356e53'
  },
  domain: 'mxp',
  applicationKey: '...',
  originationType: 'MXP',
  rdnis: '',
  callHeaders: []
}
Client Connected to Conference f8b40a0c-50a1-47e0-b3ce-03f8fb356e53&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2023 17:04:32 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11671#M191</guid>
      <dc:creator>leyk</dc:creator>
      <dc:date>2023-05-17T17:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Can't call my virtual number.</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11761#M194</link>
      <description>&lt;P&gt;Conferences have regional scope. Please see&amp;nbsp;&lt;A href="https://developers.sinch.com/docs/voice/api-reference/#conference-calls" target="_blank"&gt;https://developers.sinch.com/docs/voice/api-reference/#conference-calls&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you know you are going to both be in the same region then use the global ocra api endpoint for the Sinch client. If you know the clients are in different regions then use a specific url for that endpoint.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://developers.sinch.com/docs/in-app-calling/overview/#sinch-in-app-global--regional-hostnamesendpoints" target="_blank"&gt;https://developers.sinch.com/docs/in-app-calling/overview/#sinch-in-app-global--regional-hostnamesendpoints&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 12:31:52 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Can-t-call-my-virtual-number/m-p/11761#M194</guid>
      <dc:creator>Roland_Ian</dc:creator>
      <dc:date>2023-05-24T12:31:52Z</dc:date>
    </item>
  </channel>
</rss>

