{"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":"Ferraz realiza fiscaliza\u00e7\u00f5es por busca de amianto - Prefeitura Municipal de Ferraz de Vasconcelos","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"yQp3jeJtKX\"><a href=\"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/saude\/ferraz-realiza-fiscalizacoes-por-busca-de-amianto\/\">Ferraz realiza fiscaliza\u00e7\u00f5es por busca de amianto<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/saude\/ferraz-realiza-fiscalizacoes-por-busca-de-amianto\/embed\/#?secret=yQp3jeJtKX\" width=\"600\" height=\"338\" title=\"&#8220;Ferraz realiza fiscaliza\u00e7\u00f5es por busca de amianto&#8221; &#8212; Prefeitura Municipal de Ferraz de Vasconcelos\" data-secret=\"yQp3jeJtKX\" 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\/2019\/03\/Aurelio-Alves-1-2-scaled.jpg","thumbnail_width":2560,"thumbnail_height":1707,"description":"A\u00a0Vigil\u00e2ncia\u00a0Sanit\u00e1ria\u00a0de\u00a0Ferraz\u00a0de\u00a0Vasconcelos\u00a0realizou\u00a0no\u00a0\u00faltimo\u00a0s\u00e1bado,\u00a016\u00a0de\u00a0mar\u00e7o,\u00a0uma\u00a0fiscaliza\u00e7\u00e3o\u00a0em\u00a040\u00a0dep\u00f3sitos\u00a0de\u00a0materiais\u00a0de\u00a0constru\u00e7\u00e3o\u00a0da\u00a0cidade,\u00a0com\u00a0o\u00a0objetivo\u00a0de\u00a0identificar\u00a0produtos\u00a0com\u00a0amianto\u00a0em\u00a0sua\u00a0composi\u00e7\u00e3o.\u00a0A\u00a0lei\u00a012.684,\u00a0de\u00a026\u00a0de\u00a0julho\u00a0de\u00a02007,\u00a0determina\u00a0a\u00a0proibi\u00e7\u00e3o\u00a0do\u00a0uso\u00a0desta\u00a0subst\u00e2ncia,\u00a0que\u00a0\u00e9\u00a0cancer\u00edgena,\u00a0na\u00a0fabrica\u00e7\u00e3o\u00a0de\u00a0qualquer\u00a0material\u00a0em\u00a0S\u00e3o\u00a0Paulo. Os\u00a0agentes\u00a0realizaram\u00a0a\u00a0inspe\u00e7\u00e3o\u00a0que,\u00a0dependendo\u00a0do\u00a0caso,\u00a0pode\u00a0resultar\u00a0na\u00a0interdi\u00e7\u00e3o\u00a0dos\u00a0produtos\u00a0contendo\u00a0amianto.\u00a0A\u00a0equipe\u00a0da\u00a0Prefeitura,\u00a0se\u00a0necess\u00e1rio,\u00a0pode\u00a0lavrar\u00a0um\u00a0Auto\u00a0de\u00a0Infra\u00e7\u00e3o\u00a0e\u00a0Penalidade\u00a0de\u00a0Interdi\u00e7\u00e3o\u00a0do\u00a0lote\u00a0ou\u00a0produtos,\u00a0e\u00a0o\u00a0estabelecimento\u00a0est\u00e1\u00a0sujeito\u00a0\u00e1\u00a0ser\u00a0autuado\u00a0com\u00a0base\u00a0na\u00a0legisla\u00e7\u00e3o\u00a0vigente. Conforme\u00a0determina\u00a0o\u00a0Centro\u00a0de\u00a0Referencia\u00a0de\u00a0Sa\u00fade\u00a0do\u00a0Trabalhador\u00a0(Cerest),\u00a0as\u00a0a\u00e7\u00f5es\u00a0em\u00a0combate\u00a0contra\u00a0o\u00a0amianto\u00a0devem\u00a0ser\u00a0realizadas\u00a0periodicamente\u00a0conforme\u00a0pactuado\u00a0com\u00a0o\u00a0munic\u00edpio.\u00a0Desta\u00a0forma,\u00a0estas\u00a0fiscaliza\u00e7\u00f5es\u00a0em\u00a0Ferraz\u00a0ocorrer\u00e3o\u00a0ainda\u00a0no\u00a0dia\u00a030\u00a0de\u00a0mar\u00e7o\u00a0e\u00a013\u00a0de\u00a0abril. De\u00a0acordo\u00a0com\u00a0a\u00a0coordenadora\u00a0da\u00a0Vigil\u00e2ncia\u00a0em\u00a0Sa\u00fade\u00a0municipal,\u00a0Karina\u00a0Rente\u00a0Isidoro,\u00a0o\u00a0principal\u00a0objetivo\u00a0destas\u00a0fiscaliza\u00e7\u00f5es\u00a0\u00e9\u00a0a\u00a0preven\u00e7\u00e3o.\u00a0\u201cEstamos\u00a0em\u00a0busca\u00a0da\u00a0promo\u00e7\u00e3o\u00a0da\u00a0sa\u00fade\u00a0p\u00fablica,\u00a0e\u00a0esperamos\u00a0n\u00e3o\u00a0encontrar\u00a0o\u00a0amianto\u00a0dentro\u00a0dos\u00a0limites\u00a0de\u00a0Ferraz,\u00a0at\u00e9\u00a0mesmo\u00a0porque\u00a0vistorias\u00a0neste\u00a0sentido\u00a0j\u00e1\u00a0foram\u00a0realizadas\u00a0anteriormente\u201d,\u00a0destacou\u00a0Karina. Pr\u00eamio Hoje, 18 de mar\u00e7o, a Secretaria de Sa\u00fade de Ferraz de Vasconcelos foi premiada por ter alcan\u00e7ado a meta fde busca ativa de tuberculose em 1% da popula\u00e7\u00e3o na campanha contra a doen\u00e7a, que ocorreu em outubro do ano passado. O pr\u00eamio foi entregue no Centro de Conven\u00e7\u00f5es Rebou\u00e7as, em [&hellip;]"}