{"version":"1.0","provider_name":"Prefeitura Municipal de Ferraz de Vasconcelos","provider_url":"https:\/\/ferrazdevasconcelos.sp.gov.br\/web","author_name":"secom","author_url":"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/author\/secomferraz\/","title":"Prefeitura de Ferraz inicia a\u00e7\u00f5es do \u201cJaneiro Roxo\u201d - Prefeitura Municipal de Ferraz de Vasconcelos","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"mAfw93tLtH\"><a href=\"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/saude\/prefeitura-de-ferraz-inicia-acoes-do-janeiro-roxo\/\">Prefeitura de Ferraz inicia a\u00e7\u00f5es do \u201cJaneiro Roxo\u201d<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/saude\/prefeitura-de-ferraz-inicia-acoes-do-janeiro-roxo\/embed\/#?secret=mAfw93tLtH\" width=\"600\" height=\"338\" title=\"&#8220;Prefeitura de Ferraz inicia a\u00e7\u00f5es do \u201cJaneiro Roxo\u201d&#8221; &#8212; Prefeitura Municipal de Ferraz de Vasconcelos\" data-secret=\"mAfw93tLtH\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/wp-includes\/js\/wp-embed.js\n<\/script>\n","thumbnail_url":"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/wp-content\/uploads\/2018\/10\/Aurelio-Alves-5-e1539801582437.jpeg","thumbnail_width":1061,"thumbnail_height":576,"description":"A\u00a0Secretaria\u00a0de\u00a0Sa\u00fade\u00a0de\u00a0Ferraz\u00a0de\u00a0Vasconcelos\u00a0j\u00e1\u00a0est\u00e1\u00a0colocando\u00a0em\u00a0pr\u00e1ticas\u00a0as\u00a0a\u00e7\u00f5es\u00a0alusivas\u00a0ao\u00a0\u201cJaneiro\u00a0Roxo\u201d.\u00a0A\u00a0iniciativa\u00a0visa\u00a0o\u00a0diagn\u00f3stico,\u00a0tratamento\u00a0e\u00a0conscientiza\u00e7\u00e3o\u00a0da\u00a0Hansen\u00edase.\u00a0Os\u00a0servi\u00e7os\u00a0podem\u00a0ser\u00a0encontrados\u00a0em\u00a0qualquer\u00a0Unidade\u00a0B\u00e1sica\u00a0de\u00a0Sa\u00fade\u00a0(UBS)\u00a0do\u00a0munic\u00edpio\u00a0at\u00e9\u00a0o\u00a0pr\u00f3ximo\u00a0dia\u00a031. Nos\u00a0postos\u00a0de\u00a0sa\u00fade\u00a0e\u00a0tamb\u00e9m\u00a0no\u00a0Servi\u00e7o\u00a0de\u00a0Atendimento\u00a0Especializado\u00a0(SAE),\u00a0os\u00a0mun\u00edcipes\u00a0podem\u00a0encontrar\u00a0avaliadores\u00a0que\u00a0observam\u00a0manchas\u00a0na\u00a0pele,\u00a0que\u00a0podem\u00a0ser\u00a0ou\u00a0n\u00e3o\u00a0provenientes\u00a0da\u00a0doen\u00e7a.\u00a0Dependendo\u00a0do\u00a0resultado\u00a0desta\u00a0avalia\u00e7\u00e3o,\u00a0o\u00a0morador\u00a0\u00e9\u00a0encaminhado\u00a0para\u00a0um\u00a0dermatologista\u00a0da\u00a0rede,\u00a0preparado\u00a0para\u00a0acolher\u00a0a\u00a0demanda\u00a0e\u00a0conduta\u00a0de\u00a0encaminhamentos\u00a0hospitalares\u00a0que\u00a0se\u00a0fa\u00e7am\u00a0necess\u00e1rios.\u00a0A\u00a0Secretaria\u00a0tamb\u00e9m\u00a0dever\u00e1\u00a0realizar\u00a0palestras\u00a0em\u00a0ind\u00fastrias\u00a0e\u00a0escolas\u00a0da\u00a0cidade\u00a0abordando\u00a0o\u00a0tema. Outra\u00a0estrat\u00e9gia\u00a0adotada\u00a0pela\u00a0pasta\u00a0\u00e9\u00a0a\u00a0distribui\u00e7\u00e3o\u00a0de\u00a0materiais\u00a0informativos,\u00a0visando\u00a0a\u00a0conscientiza\u00e7\u00e3o\u00a0e\u00a0o\u00a0diagn\u00f3stico\u00a0precoce.\u00a0Vale\u00a0destacar\u00a0que\u00a0tamb\u00e9m\u00a0neste\u00a0m\u00eas,\u00a0os\u00a0profissionais\u00a0da\u00a0Sa\u00fade\u00a0ferrazense\u00a0est\u00e3o\u00a0sendo\u00a0capacitados\u00a0por\u00a0especialistas\u00a0em\u00a0Hansen\u00edase\u00a0para\u00a0atender\u00a0melhor\u00a0este\u00a0p\u00fablico. De\u00a0acordo\u00a0com\u00a0o\u00a0secret\u00e1rio\u00a0de\u00a0Sa\u00fade\u00a0de\u00a0Ferraz,\u00a0Alo\u00edsio\u00a0Lopes\u00a0Priuli,\u00a0o\u00a0objetivo\u00a0do\u00a0\u201cJaneiro\u00a0Roxo\u201d\u00a0\u00e9\u00a0despertar\u00a0a\u00a0autoavalia\u00e7\u00e3o.\u00a0\u201cMuitas\u00a0vezes\u00a0uma\u00a0mancha\u00a0pode\u00a0ser\u00a0confundida\u00a0com\u00a0uma\u00a0micose\u00a0ou\u00a0passar\u00a0despercebida.\u00a0As\u00a0costas,\u00a0pode\u00a0exemplo,\u00a0\u00e9\u00a0um\u00a0lugar\u00a0do\u00a0corpo\u00a0que\u00a0n\u00e3o\u00a0conseguimos\u00a0observar\u00a0anomalias.\u00a0As\u00a0manchas\u00a0da\u00a0Hansen\u00edase\u00a0n\u00e3o\u00a0doem,\u00a0por\u00a0isso\u00a0\u00e9\u00a0importante\u00a0pedir\u00a0ajuda\u00a0de\u00a0parentes\u00a0ou\u00a0c\u00f4njuge para\u00a0verificar\u00a0manchas\u00a0em\u00a0lugares\u00a0que\u00a0n\u00e3o\u00a0conseguimos\u00a0ver\u00a0e\u00a0prestarmos\u00a0aten\u00e7\u00e3o\u00a0nos\u00a0sinais\u00a0do\u00a0corpo.\u00a0N\u00f3s\u00a0da\u00a0Secretaria\u00a0e\u00a0o\u00a0prefeito\u00a0Jos\u00e9\u00a0Carlos\u00a0Fernandes\u00a0Chacon,\u00a0o\u00a0Z\u00e9\u00a0Biruta,\u00a0esperamos\u00a0a\u00a0ades\u00e3o\u00a0dos\u00a0ferrazenses\u00a0em\u00a0mais\u00a0est\u00e1\u00a0campanha\u201d,\u00a0disse\u00a0Priuli. Al\u00e9m\u00a0de\u00a0manchas\u00a0na\u00a0pele,\u00a0outros\u00a0sintomas\u00a0da\u00a0Hansen\u00edase\u00a0podem\u00a0ser\u00a0formigamentos,\u00a0dorm\u00eancias,\u00a0fraqueza,\u00a0atrofias\u00a0musculares,\u00a0placas\u00a0e\u00a0n\u00f3dulos,\u00a0manchas\u00a0com\u00a0queda\u00a0de\u00a0pelos\u00a0ou\u00a0cortar-se\u00a0ou\u00a0queimar-se\u00a0sem\u00a0sentir.\u00a0O\u00a0atendimento\u00a0para\u00a0suspeita\u00a0e\u00a0encaminhamento\u00a0para\u00a0o\u00a0tratamento\u00a0da\u00a0doen\u00e7a\u00a0\u00e9\u00a0realizado\u00a0durante\u00a0todo\u00a0o\u00a0ano\u00a0em\u00a0Ferraz,\u00a0mas\u00a0intensificado\u00a0no\u00a0m\u00eas\u00a0de\u00a0janeiro. &nbsp; &nbsp; TEXTO:\u00a0Leticia Riente FOTOS: Aur\u00e9lio Alves &#8211; MTB: 85280 \/ SP \/ DeCom Ferraz"}