{"version":"1.0","provider_name":"Registrar","provider_url":"https:\/\/legacy.registrarcorp.com\/zh\/","author_name":"admin","author_url":"https:\/\/legacy.registrarcorp.com\/zh\/author\/registrar\/","title":"\u829d\u9ebb\u88ab\u5217\u4e3a\u4e3b\u8981\u8fc7\u654f\u539f","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"yPyNsuQtR7\"><a href=\"https:\/\/legacy.registrarcorp.com\/zh\/sesame-declared-a-major-allergen\/\">\u829d\u9ebb\u88ab\u5217\u4e3a\u4e3b\u8981\u8fc7\u654f\u539f<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/zh\/sesame-declared-a-major-allergen\/embed\/#?secret=yPyNsuQtR7\" width=\"600\" height=\"338\" title=\"&#8220;\u829d\u9ebb\u88ab\u5217\u4e3a\u4e3b\u8981\u8fc7\u654f\u539f&#8221; &#8212; Registrar\" data-secret=\"yPyNsuQtR7\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\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:\/\/legacy.registrarcorp.com\/wp-includes\/js\/wp-embed.js\n\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/legacy.registrarcorp.com\/wp-content\/uploads\/2021\/05\/Untitled-design-14.png","thumbnail_width":1400,"thumbnail_height":427,"description":"2021\u5e744\u670823\u65e5\uff0c\u7f8e\u56fd\u56fd\u4f1a\u901a\u8fc7\u4e86\u4e00\u9879\u540d\u4e3a\u300a2021\u5e74\u98df\u54c1\u8fc7\u654f\u5b89\u5168\u3001\u6cbb\u7597\u3001\u6559\u80b2\u548c\u7814\u7a76\u6cd5\u6848\u300b\u7684\u65b0\u6cd5\u6848\uff0c\u4e5f\u88ab\u79f0\u4e3a\u300a2021\u5e74FASTER\u6cd5\u6848\u300b\u3002\u8be5\u6cd5\u6848\u89c4\u5b9a\uff0c2023\u5e741\u67081\u65e5\u6216\u4e4b\u540e\u8fdb\u5165\u5dde\u9645\u8d38\u6613\u7684\u542b\u6709\u829d\u9ebb\u7684\u98df\u54c1\u5fc5\u987b\u5728\u5176\u8fc7\u654f\u539f\u58f0\u660e\u4e2d\u5305\u62ec\u201c\u829d\u9ebb\u201d\u3002\u8fd9\u5c06\u66f4\u65b0\u73b0\u884c\u76842004\u5e74\u98df\u54c1\u8fc7\u654f\u539f\u6807\u7b7e\u548c\u6d88\u8d39\u8005\u4fdd\u62a4\u6cd5(FALCPA)\u3002 \u73b0\u884c\u7684FALCPA\u58f0\u660e\u8fc7\u654f\u539f\u7684\u8981\u6c42 \u968f\u7740\u829d\u9ebb\u7684\u52a0\u5165\uff0cFALCPA\u73b0\u5728\u9002\u7528\u4e8e9\u4e2a\u98df\u7269\u7fa4\uff0c\u56e0\u4e3a\u5b83\u4eec\u5360\u7f8e\u56fd\u6240\u6709\u98df\u7269\u8fc7\u654f\u768490%\u4ee5\u4e0a\u3002 \u8fd99\u4e2a\u98df\u7269\u7fa4\u5206\u522b\u662f\uff1a \u725b\u5976 \u86cb\u7c7b \u9c7c\u7c7b \u8d1d\u7c7b \u6811\u575a\u679c\uff08\u5305\u62ec\u6930\u5b50\uff09 \u82b1\u751f \u5c0f\u9ea6 \u5927\u8c46 \u829d\u9ebb \u829d\u9ebb\u548c\u8fc7\u654f\u539f\u6807\u7b7e\u6307\u5357 \u829d\u9ebb\u8fc7\u654f\u548c\u654f\u611f\u5728\u7f8e\u56fd\u5448\u4e0a\u5347\u8d8b\u52bf\u3002\u867d\u7136\u5927\u591a\u6570\u542b\u6709\u829d\u9ebb\u7684\u4ea7\u54c1\u786e\u5b9e\u5728\u5176\u8fc7\u654f\u539f\u58f0\u660e\u4e2d\u5217\u51fa\u4e86\u829d\u9ebb\uff0c\u4f46\u5f53\u829d\u9ebb\u88ab\u7528\u4f5c\u9999\u6599\u6216\u8c03\u5473\u6599\u65f6\uff0c\u76ee\u524d\u5e76\u4e0d\u9700\u8981\u5217\u51fa\u5b83\u3002\u8fd9\u4f7f\u5f97\u8bb8\u591a\u7f8e\u56fd\u4eba\u5728\u4e0d\u77e5\u9053\u829d\u9ebb\u5b58\u5728\u7684\u60c5\u51b5\u4e0b\u9762\u4e34\u4e0d\u826f\u53cd\u5e94\u7684\u98ce\u9669\u3002 \u5c3d\u7ba1FASTER\u6cd5\u6848\u8981\u52302023\u5e741\u6708\u624d\u751f\u6548\uff0cFDA\u6566\u4fc3\u751f\u4ea7\u5546\u73b0\u5728\u5c31\u5f00\u59cb\u81ea\u613f\u5c06\u829d\u9ebb\u5217\u5165\u98df\u54c1\u6807\u7b7e\u7684\u6210\u5206\u6e05\u5355\u3002FDA\u4e8e2020\u5e7411\u6708\u53d1\u5e03\u4e86\u4e00\u4efd\u6307\u5357\u8349\u6848\uff0c\u4ee5\u5e2e\u52a9\u5236\u9020\u5546\u6267\u884c\u65b0\u89c4\u3002\u5728\u8be5\u6307\u5357\u4e2d\uff0cFDA\u62a5\u544a\u79f0\uff0c\u201c\u5728\u4ed6\u4eec\u6536\u5230\u7684\u62a5\u544a\u4e2d\uff0c44%\u7684\u829d\u9ebb\u4e0d\u826f\u53cd\u5e94\u88ab\u63cf\u8ff0\u4e3a\u4e25\u91cd\u7684\uff0c\u8fd150%\u9700\u8981\u670d\u836f\u6216\u5230\u533b\u9662\u5c31\u8bca\u201d\u3002 \u8fc7\u654f\u539f\u6807\u7b7e\u534f\u52a9 Registrar Corp\u534f\u52a9\u4f01\u4e1a\u9075\u5faaFDA\u6cd5\u89c4\u3002\u6211\u4eec\u63d0\u4f9b\u6807\u7b7e\u548c\u6210\u5206\u5ba1\u6838\u670d\u52a1\uff0c\u4ee5\u786e\u4fdd\u8d35\u53f8\u7684\u98df\u54c1\u6807\u7b7e\u662f\u7b26\u5408FDA\u8981\u6c42\u7684\uff0c\u5305\u62ec\u5b83\u5305\u542b\u9002\u5f53\u7684\u8fc7\u654f\u539f\u58f0\u660e\u3002 \u6211\u4eec\u8fd8\u53ef\u4ee5\u4e3a\u4f01\u4e1a\u5458\u5de5\u63d0\u4f9b100%\u5728\u7ebf\u7684\u8fc7\u654f\u539f\u7ba1\u7406\u57f9\u8bad\u8bfe\u7a0b\u3002 \u6b32\u4e86\u89e3\u66f4\u591a\u4fe1\u606f\uff0c\u8bf7\u81f4\u7535+1-757-224-0177\u8054\u7cfb\u6211\u4eec\uff0c\u6216\u901a\u8fc7https:\/\/regstaging.wpengine.com\/livechat 24\u5c0f\u65f6\u4e0e\u6211\u4eec\u7684\u6cd5\u89c4\u987e\u95ee\u8054\u7cfb\u3002"}