{"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":"Gin\u00e1sio Paul\u00e3o \u00e9 revitalizado em Ferraz - Prefeitura Municipal de Ferraz de Vasconcelos","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"DEXW6nyh7w\"><a href=\"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/esporte-e-lazer\/ginasio-paulao-e-revitalizado-em-ferraz\/\">Gin\u00e1sio Paul\u00e3o \u00e9 revitalizado em Ferraz<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/ferrazdevasconcelos.sp.gov.br\/web\/esporte-e-lazer\/ginasio-paulao-e-revitalizado-em-ferraz\/embed\/#?secret=DEXW6nyh7w\" width=\"600\" height=\"338\" title=\"&#8220;Gin\u00e1sio Paul\u00e3o \u00e9 revitalizado em Ferraz&#8221; &#8212; Prefeitura Municipal de Ferraz de Vasconcelos\" data-secret=\"DEXW6nyh7w\" 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\/04\/Fernanda-Moraes-4.jpeg","thumbnail_width":768,"thumbnail_height":1024,"description":"A\u00a0Secretaria\u00a0de\u00a0Juventude,\u00a0Esporte,\u00a0Turismo\u00a0e\u00a0Qualidade\u00a0de\u00a0Vida\u00a0de\u00a0Ferraz\u00a0de\u00a0Vasconcelos\u00a0est\u00e1\u00a0em\u00a0fase\u00a0de\u00a0acabamento\u00a0na\u00a0revitaliza\u00e7\u00e3o\u00a0do\u00a0Gin\u00e1sio\u00a0Municipal\u00a0de\u00a0Esportes\u00a0\u201cPaulo\u00a0Jos\u00e9\u00a0da\u00a0Cruz\u201d,\u00a0o\u00a0Paul\u00e3o,\u00a0na\u00a0Vila\u00a0Santo\u00a0Ant\u00f4nio.\u00a0A\u00a0reforma\u00a0no\u00a0lugar\u00a0j\u00e1\u00a0est\u00e1\u00a0rendendo\u00a0bons\u00a0resultados,\u00a0visto\u00a0que\u00a0hoje,\u00a02\u00a0de\u00a0abril,\u00a0foi\u00a0assinada\u00a0uma\u00a0parceria\u00a0com\u00a0o\u00a0projeto\u00a0da\u00a0cidade\u00a0\u201cImpacto\u00a0FC\u201d,\u00a0de\u00a0futebol\u00a0de\u00a0sal\u00e3o,\u00a0que\u00a0ir\u00e1\u00a0treinar\u00a0no\u00a0local. No\u00a0Gin\u00e1sio\u00a0j\u00e1\u00a0foi\u00a0feita\u00a0uma\u00a0nova\u00a0demarca\u00e7\u00e3o\u00a0de\u00a0quadra,\u00a0troca\u00a0de\u00a0traves\u00a0e\u00a0redes,\u00a0ilumina\u00e7\u00e3o,\u00a0bem\u00a0como\u00a0toda\u00a0parte\u00a0el\u00e9trica\u00a0do\u00a0equipamento\u00a0e\u00a0pintura\u00a0de\u00a0arquibancadas.\u00a0Na\u00a0pr\u00f3xima\u00a0semana,\u00a0a\u00a0revitaliza\u00e7\u00e3o\u00a0externa\u00a0dever\u00e1\u00a0ser\u00a0conclu\u00edda,\u00a0com\u00a0pintura\u00a0e\u00a0limpeza. O\u00a0termo\u00a0de\u00a0coopera\u00e7\u00e3o\u00a0assinado\u00a0hoje\u00a0com\u00a0o\u00a0\u201cImpacto\u00a0FC\u201d\u00a0tem\u00a0como\u00a0principais\u00a0objetivos\u00a0a\u00a0realiza\u00e7\u00e3o\u00a0de\u00a0a\u00e7\u00f5es\u00a0conjuntas\u00a0ligadas\u00a0\u00e0s\u00a0partidas\u00a0oficiais\u00a0de\u00a0futsal,\u00a0junto\u00a0ao\u00a0Gin\u00e1sio,\u00a0al\u00e9m\u00a0da\u00a0participa\u00e7\u00e3o\u00a0do\u00a0calend\u00e1rio\u00a0da\u00a0Federa\u00e7\u00e3o\u00a0Paulista\u00a0de\u00a0Futsal,\u00a0levando\u00a0\u00e0\u00a0representatividade\u00a0municipal\u00a0em\u00a0competi\u00e7\u00f5es\u00a0de\u00a0grande\u00a0porte\u00a0no\u00a0Estado. De\u00a0acordo\u00a0com\u00a0o\u00a0titular\u00a0da\u00a0pasta,\u00a0Francisco\u00a0Pereira\u00a0de\u00a0Brito,\u00a0os\u00a0reparos\u00a0no\u00a0Paul\u00e3o\u00a0fazem\u00a0parte\u00a0de\u00a0um\u00a0pacote\u00a0de\u00a0manuten\u00e7\u00f5es\u00a0determinado\u00a0pelo\u00a0prefeito\u00a0Jos\u00e9\u00a0Carlos\u00a0Fernandes\u00a0Chacon,\u00a0o\u00a0Z\u00e9\u00a0Biruta,\u00a0\u201cO\u00a0prefeito\u00a0nos\u00a0orientou\u00a0\u00e0\u00a0realizar\u00a0pequenas\u00a0reformas,\u00a0que\u00a0na\u00a0verdade\u00a0fazem\u00a0uma\u00a0diferen\u00e7a\u00a0enorme\u00a0para\u00a0quem\u00a0utiliza\u00a0destes\u00a0espa\u00e7os.\u00a0O\u00a0Gin\u00e1sio\u00a0Paul\u00e3o\u00a0n\u00e3o\u00a0\u00e9\u00a0o\u00a0primeiro\u00a0nem\u00a0o\u00a0\u00faltimo\u00a0que\u00a0est\u00e1\u00a0recebendo\u00a0estes\u00a0servi\u00e7os,\u00a0e\u00a0tudo\u00a0tem\u00a0como\u00a0alvo\u00a0trazer\u00a0qualidade\u00a0de\u00a0vida\u00a0aos\u00a0mun\u00edcipes,\u00a0afinal\u00a0um\u00a0espa\u00e7o\u00a0adequado\u00a0incentiva\u00a0\u00e0\u00a0pr\u00e1tica\u00a0esportiva\u201d,\u00a0afirmou\u00a0Brito. &nbsp; TEXTO: Leticia Riente\u00a0&#8211; MTB: 87999 \/ SP FOTOS: Fernanda Moraes \/ DeCom Ferraz"}