The two men, two brothers of Kurdish origin, had four fingers amputated from their right hand yesterday using a guillotine in Urmia prison in northwestern Iran, according to separate reports published by these non-governmental organizations.
The two men were then taken to the hospital to receive medical attention, the documents state.
The US-based Human Rights Activists News Agency (HRANA) confirmed that the two brothers, Sahab and Mehrdad Teimuri, were initially arrested for theft in 2019 and sentenced to prison terms and finger amputations.
According to the Norway-based Hengaw group, which regularly reports on human rights abuses in Kurdistan and Iran, the two men were not allowed to communicate with people outside prison or receive visitors after their convictions.
“Mutilations used as a form of punishment are prohibited under international law, in particular through the prohibition of torture and cruel, inhuman or degrading treatment, as provided for in the Convention against Torture and the International Covenant on Civil and Political Rights, which Iran is a signatory state,” points out the Center for Human Rights in Iran, which based in New York.
Finger amputation is permitted by the Islamic Republic of Iran, in accordance with the application of sharia. According to the US-based Abdorrahman Boroumand Center, Iranian authorities have amputated the fingers of at least 131 men since January 2000.
However, the application of these penalties is less frequent in recent years. According to Amnesty International, a man had his hands amputated in May 2022 as well as another convicted of theft in July 2022 in Evin prison in the capital Tehran.
The mutilations come as concern grows over a rise in executions in Iran in recent months, including the hanging this week of Iranian dissident who had acquired German citizenship, Jamshid Sharmahd, who, according to his family, he was arrested by Iranian authorities in 2020 while in the United Arab Emirates.
According to the Norway-based NGO Iran Human Rights, Iran has executed 633 people since the beginning of the year.
#Iran #Fingers #cut #men #committed #theft
DOMContentLoaded
It seems like you're working on a JavaScript code snippet related to loading various ad services and notifications, but the code is incomplete and has a mix of comments and asynchronous script loading. Below is a cleaned-up and structured version of the code, maintaining the key functions while making sure it looks more coherent:
```javascript
function loadScripts() {
// Removing Google AdSense for mobile devices
if (!isMobileDevice()) {
document.querySelectorAll('.adsense-for-mobile').forEach(function(e) {
e.querySelector('.adsbygoogle').remove();
});
}
const adSenseSlots = document.querySelectorAll('.adsbygoogle');
// Load AdSense scripts if slots are available
if (adSenseSlots.length > 0) {
adSenseSlots.forEach(function(e) {
asyncLoadScript('your-adsense-script-url-here'); // Fill in with actual AdSense script URL
});
}
// Phaistos Adman
window.AdmanQueue = window.AdmanQueue || [];
AdmanQueue.push(function() {
Adman.adunit({ id: 338, h: 'your-height-here' }); // Fill in with actual height
});
// OneSignal
window.OneSignalDeferred = window.OneSignalDeferred || [];
OneSignalDeferred.push(function(OneSignal) {
OneSignal.init({
appId: "487cc53b-3b66-4f84-8803-3a3a133043ab",
});
});
// Disqus Configuration
var disqus_config = function() {
this.page.url = "your-page-url-here"; // Fill in with actual page URL
this.page.identifier = 1554917;
};
setTimeout(function() {
(function() {
var d = document,
s = d.createElement('script');
s.src = "your-disqus-script-url-here"; // Fill in with actual Disqus script URL
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
}, 3000);
// Execute further actions when CMP action is completed
function cmpActionCompleted() {
// Load additional scripts as necessary
// CleverCore (optional, commented out)
/*
(function(document, window) {
var c = document.createElement("script");
c.id = "CleverCoreLoader57097";
c.src = "your-clevercore-script-url-here"; // Fill in with actual script URL
c.async = true;
c.type = "text/javascript";
c.setAttribute("data-target", window.name);
c.setAttribute("data-callback", "put-your-callback-macro-here");
var a = document.getElementsByTagName("script")[0];
a.parentNode.insertBefore(c, a);
})(document, window);
*/
// Taboola/Project Agora
asyncLoadScript('your-taboola-script-url-here'); // Fill in with actual script URL
// Google AdSense
if (document.querySelectorAll('.adsbygoogle').length) {
asyncLoadScript('your-adsense-url-here'); // Fill in with actual AdSense loading script URL
}
// Glomex integration
if (document.querySelectorAll('glomex-integration').length) {
setTimeout(function() {
asyncLoadModule('your-glomex-module-url-here'); // Fill in with actual module URL
}, 2000);
}
// Dalecta integration
setTimeout(() => asyncLoadScript('your-dalecta-url-here'), 800); // Fill in with actual script URL
// Vidoomy integration
asyncLoadScript('your-vidoomy-url-here'); // Fill in with actual script URL
}
// Assuming there's a function to check if the device is mobile
function isMobileDevice() {
return /Mobi|Android/i.test(navigator.userAgent);
}
}
// Call the function to load scripts
loadScripts();
```
### Key Changes Made:
1. **Function Definitions**: Wrapped the script loading logic in a function called `loadScripts`.
2. **Comments Cleaned**: Added comments for clarity and removed unused ones.
3. **Script URL Replacements**: Placeholder URLs are provided where actual script URLs need to be inserted.
4. **Mobile Check**: Added a function to determine if the device is mobile.
5. **Organized Logic**: Grouped similar logic together for easier reading.
Make sure to replace placeholders with actual URLs where necessary, and adjust any other parameters based on your specific implementation needs.