{"id":1631981,"date":"2025-06-12T09:24:53","date_gmt":"2025-06-12T00:24:53","guid":{"rendered":"https:\/\/www.hanwhavision.com\/ai-pack-license-request-new-2\/"},"modified":"2025-06-13T08:03:38","modified_gmt":"2025-06-12T23:03:38","slug":"ai-pack-license-request","status":"publish","type":"page","link":"https:\/\/www.hanwhavision.com\/ko\/ai-pack-license-request\/","title":{"rendered":"AI Pack License Request (NEW)"},"content":{"rendered":"\n<!-- STANDARD HERO -->\n<section class=\"section-hero-standard \" >\n\t<div class=\"wrapper\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"standard-hero-block no-media\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"content-cell\">\n\t\t\t\t\t<div class=\"content-wrap\">\n\t\t\t\t\t\t                        \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h1 class=\"hero-title\">AI Pack \ub77c\uc774\uc120\uc2a4 \uc694\uccad\uc11c<\/h1>\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p class=\"p1\">\ub2f9\uc0ac AI \uc194\ub8e8\uc158\uc5d0 \uad00\uc2ec\uc744 \uac00\uc838\uc8fc\uc154\uc11c \uac10\uc0ac\ud569\ub2c8\ub2e4. \uc544\ub798 \ud544\uc218\uae30\uc785 \ub780(<span class=\"color-red\">*<\/span>)\uc5d0 \uc815\ubcf4 \ub123\uc5b4 \uc8fc\uc2dc\uace0, \uc81c\ucd9c \ubc84\ud2bc \ub204\ub974\uc2dc\uba74 \uc989\uc2dc \ucc98\ub9ac\ub418\uba70, 3\uc601\uc5c5\uc77c \uc774\ub0b4\uc5d0 \uba54\uc77c \ud1b5\ud574 \ub77c\uc774\uc120\uc2a4\ub97c \ubc1b\uc73c\uc2e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc9c8\ubb38\uc774 \uc788\uac70\ub098 \ub3c4\uc6c0\uc774 \ud544\uc694\ud558\uc2dc\uba74 \uc5b8\uc81c\ub4e0\uc9c0 \ubb38\uc758\ud574 \uc8fc\uc138\uc694.<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/section>\n\n\n\n<style>\n#frm_ai_pack .frm-error-message {\n\tmargin-top: 4px;\n\tfont-size: 13px;\n\tline-height: 1.2;\n\tfont-weight: 300;\n\tcolor: red;\n}\n<\/style>\n<script>\n\tvar valid = true;\n\n\tfunction getTrim(strValue, strTrimType) {\n\t\tvar strReturn = \"\";\n\t\tswitch (strTrimType.toUpperCase()) {\n\t\t\tdefault :\n\t\t\t\tstrReturn = strValue;\n\t\t\t\tbreak;\n\t\t}\n\t\treturn strReturn;\n\t}\n\n\tfunction IsEmpty(strValue) {\n\t\tif (strValue == null || getTrim(strValue, \"A\") == \"\") return true;\n\t\treturn false;\n\t}\n\n\t\/\/ \ube48\uac12\uc5ec\ubd80 \uccb4\ud06c \ud6c4 \ud3ec\ucee4\uc2a4\n\tfunction IsCheck(obj, strMsg) {\n\t\tif (IsEmpty(obj.value)) {\n\t\t\talert(strMsg);\n\t\t\tobj.focus();\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction validate(obj, type) {\n\t\tswitch(type) {\n\t\t\tcase 'required':\n\t\t\t\tif ( IsEmpty(obj.value) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'email':\n\t\t\t\tif ( ! IsEmail(obj.value) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\n\t\t\tcase 'checked':\n\t\t\t\tif ( ! IsChecked(obj) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tconsole.log('ERR: invalid validation type');\n\t\t}\n\n\t\treturn true;\n\t}\n\n\t\/\/ \uccb4\ud06c\uc5ec\ubd80 \ud655\uc778\n\tfunction IsChecked(objEle) {\n\t\tif (String(objEle) != \"undefined\") {\n\t\t\tif (String(objEle.length) == \"undefined\") {\n\t\t\t\tif (objEle.checked) return true;\n\t\t\t} else {\n\t\t\t\tfor (var i = 0; i < objEle.length; i++) {\n\t\t\t\t\tif (objEle[i].checked) return true;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t}\n\n\t\/\/ \uccb4\ud06c\ub41c \uac12 \uad6c\ud558\uae30\n\tfunction getChecked_Value(objEle) {\n\t\tvar strReturn = \"\";\n\n\t\tif (String(objEle) != \"undefined\") {\n\t\t\tif (String(objEle.length) == \"undefined\") {\n\t\t\t\tstrReturn = objEle.value;\n\t\t\t} else {\n\t\t\t\tfor (var i = 0; i < objEle.length; i++) {\n\t\t\t\t\tif (objEle[i].checked) {\n\t\t\t\t\t\tif (strReturn.length > 0) strReturn += \",\";\n\t\t\t\t\t\tstrReturn += objEle[i].value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn strReturn;\n\t}\n\n\tfunction IsEmail(strValue) {\n\t\tvar pattern = \/^[0-9a-zA-Z]([-_\\.]?[0-9a-zA-Z])*@[0-9a-zA-Z]([-_\\.]?[0-9a-zA-Z])*\\.[a-zA-Z]{2,3}$\/i;\n\n\t\tif ((strValue.length == 0) || (!pattern.test(strValue))) return false;\n\t\treturn true;\n\t}\n\n\t\/\/ \uc785\ub825\uac00\ub2a5\ud55c \ubb38\uc790\uc778\uc9c0 \uccb4\ud06c\n\tfunction IsValueType(strValue, strCheckType) {\n\t\tif (strValue.length == 0) return false;\n\n\t\tswitch (strCheckType.toUpperCase()) {\n\t\t\tcase \"H\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)\n\t\t\tcase \"E\"        :\n\t\t\t\tif (strValue.search(\/[^A-Za-z]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc601\ubb38\n\t\t\tcase \"N\"        :\n\t\t\t\tif (strValue.search(\/[^0-9]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc22b\uc790\n\t\t\tcase \"HE\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3A-Za-z]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc601\ubb38\n\t\t\tcase \"HN\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a30-9]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc22b\uc790\n\t\t\tcase \"EN\"        :\n\t\t\t\tif (strValue.search(\/[^A-Za-z0-9]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc601\ubb38+\uc22b\uc790\n\t\t\tcase \"HEN\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3A-Za-z0-9]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc601\ubb38+\uc22b\uc790\n\t\t\tcase \"HENS\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3A-Za-z0-9,]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc601\ubb38+\uc22b\uc790+,\n\t\t\tcase \"HENB\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3A-Za-z0-9 ]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc601\ubb38+\uc22b\uc790+\uacf5\ubc31\n\t\t\tcase \"HENBI\"    :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3A-Za-z0-9~!@#$%^&*()-\\?]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc601\ubb38+\uc22b\uc790+\uacf5\ubc31+\ud2b9\uc218\ubb38\uc790( ~!@#&()- )\n\t\t\tcase \"ENB\"        :\n\t\t\t\tif (strValue.search(\/[^A-Za-z0-9 ]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc601\ubb38+\uc22b\uc790+\uacf5\ubc31\n\t\t\tcase \"N-\"        :\n\t\t\t\tif (strValue.search(\/[^0-9-]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc22b\uc790+\ud558\uc774\ud508\n\t\t\tcase \"N,\"        :\n\t\t\t\tif (strValue.search(\/[^0-9,]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc22b\uc790+\ucf64\ub9c8\n\t\t\tcase \"HB\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3 ]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uacf5\ubc31\n\t\t\tcase \"EB\"        :\n\t\t\t\tif (strValue.search(\/[^A-Za-z ]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc601\ubb38+\uacf5\ubc31\n\t\t\tcase \"PWD\"        :\n\t\t\t\tif (strValue.search(\/[^A-Za-z0-9~!@#$%^&*()-\\?]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc601\ubb38+\uc22b\uc790+\ud2b9\ubb38( ~!@#$%^&*()\\? )\n\t\t\tcase \"SP\"        :\n\t\t\t\tif (strValue.search(\/[^~!@#$%^&*()-\\?]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud2b9\ubb38( ~!@#$%^&*()\\? )\n\t\t\tdefault            :\n\t\t\t\treturn false;\n\t\t\t\tbreak;\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction reset_frm() {\n\t\t\/\/ var f = document.frm_ai_pack;\n\t\tjQuery('#frm_ai_pack')[0].reset();\n\t\tgrecaptcha.reset();\n\t}\n\n\tfunction displayError(obj, msg) {\n\t\tvar errorEl = obj.closest(\".form-col\").querySelector(\".frm-error-message\");\n\t\terrorEl.textContent = msg;\n\t\terrorEl.classList.remove(\"d-none\");\n\n\t\tif ( valid ) {\n\t\t\tobj.focus();\n\t\t}\n\t\tvalid = false;\n\t\tobj.setAttribute(\"aria-invalid\", \"true\");\n\t}\n\n\tfunction hideError(obj) {\n\t\tvar errorEl = obj.closest(\".form-col\").querySelector(\".frm-error-message\");\n\t\terrorEl.textContent = \"\";\n\t\terrorEl.classList.add(\"d-none\");\n\n\t\tobj.setAttribute(\"aria-invalid\", \"false\"); \n\t}\n\n\tfunction reg_ai_pack() {\n\t\tvar f = document.frm_ai_pack;\n\t\tvar g_captcha;\n\n\t\t\/\/ reset\n\t\tvalid = true;\n\n\t\t\/\/ validate name - required\n\t\tif( ! validate(f.name, 'required') ) {\n\t\t\tdisplayError(f.name, '\uc774\ub984\uc744 \uc785\ub825\ud574 \uc8fc\uc138\uc694.');\n\t\t}\n\t\telse {\n\t\t\thideError(f.name);\n\t\t}\n\n\t\t\/\/ validate email - required\n\t\tif( ! validate(f.email, 'required') ) {\n\t\t\tdisplayError(f.email, '\uc774\uba54\uc77c\uc744 \uc785\ub825\ud574 \uc8fc\uc138\uc694.');\n\t\t}\n\t\telse if( ! validate(f.email, 'email') ) {\n\t\t\tdisplayError(f.email, '\uc774\uba54\uc77c \ud615\uc2dd\uc5d0 \ub9de\uac8c \uc785\ub825\ud574 \uc8fc\uc138\uc694.');\n\t\t}\n\t\telse {\n\t\t\thideError(f.email);\n\t\t}\n\n\t\t\/\/ validate product - required\n\t\tif( ! validate(f.product, 'required') ) {\n\t\t\tdisplayError(f.product, 'AI Pack\uc744 \uc120\ud0dd\ud574 \uc8fc\uc138\uc694.');\n\t\t}\n\t\telse {\n\t\t\thideError(f.product);\n\t\t}\n\n\t\t\/\/ validate acceptance\n\t\tif( ! validate(f.acceptance, 'checked') ) {\n\t\t\tdisplayError(f.acceptance, '\uac1c\uc778\uc815\ubcf4\ubc29\uce68\uc744 \ub3d9\uc758\ud574\ud574 \uc8fc\uc138\uc694.');\n\t\t}\n\t\telse {\n\t\t\thideError(f.acceptance);\n\t\t}\n\n\t\t\/\/ validate recaptcha\n\t\tg_captcha = grecaptcha.getResponse();\n\t\tif ( g_captcha.length == 0 ) {\n\t\t\tvar errorEl = document.getElementById('error-recaptcha');\n\t\t\terrorEl.textContent = \"'\ub85c\ubd07\uc774 \uc544\ub2d9\ub2c8\ub2e4.'\ub97c \uccb4\ud06c\ud574\uc8fc\uc138\uc694.\";\n\t\t\terrorEl.classList.remove('d-none');\n\t\t\tvalid = false;\n\t\t}\n\t\telse {\n\t\t\tvar errorEl = document.getElementById('error-recaptcha');\n\t\t\terrorEl.textContent = '';\n\t\t\terrorEl.classList.add('d-none');\n\t\t}\n\n\t\t\/\/ disable submit button, prepare for API call\n\t\tif( valid === false ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tf.submit.disabled = true;\n\t\tjQuery('.wpcf7-spinner').css('visibility', 'visible');\n\n\t\tvar data = {\n\t\t\t\"action\": \"ai_pack_register\",\n\t\t\t\"mode\": \"NEW\", \/\/ not used\n\t\t\t\"version\": \"10\", \/\/ not used\n\t\t\t\/\/ \"name\": f.name.value,\n\t\t\t\"email\": f.email.value,\n\t\t\t\"product\": f.product.value,\n\t\t\t\"acceptance\": f.acceptance.value,\n\t\t\t\"g_captcha\": g_captcha,\n\t\t\t\/\/ \"current_lang\": \"ko\",\n\t\t};\n\n\t\t\/\/ console.log(data);\n\t\t\/\/ return;\n\n\t\tjQuery.post(\"https:\/\/www.hanwhavision.com\/wp-admin\/admin-ajax.php\", data, function(response) {\n\t\t\t\/*\n\t\t\tFAIL_CAPTCHA\n\t\t\tINVALID_EMAIL\n\t\t\tINVALID_PRODUCT\n\t\t\tINVALID_ACCEPTANCE\n\t\t\tBAD_REQUEST\n\t\t\tUNAUTHORIZED\n\t\t\tCONFLICT\n\t\t\tUNPROCESSABLE_ENTITY\n\t\t\tINTERNAL_SERVER_ERROR\n\t\t\tUNKNOWN\n\t\t\tOK\n\t\t\t*\/\n\t\t\t\n\t\t\tif (response == \"INVALID_EMAIL\" || response == \"INVALID_PRODUCT\" || response == \"INVALID_ACCEPTANCE\") {\n\t\t\t\talert(\"\uc785\ub825\ud55c \ub0b4\uc6a9\uc5d0 \uc624\ub958\uac00 \uc788\uc2b5\ub2c8\ub2e4. \ub0b4\uc6a9\uc744 \uc815\ud655\ud788 \uc785\ub825\ud574 \uc8fc\uc138\uc694.\");\n\t\t\t\t\/\/ reset_frm();\n\t\t\t}\n\t\t\telse if (response == \"FAIL_CAPTCHA\") {\n\t\t\t\talert(\"\uc790\ub3d9\uc785\ub825\ubc29\uc9c0 \uc778\uc99d\uc774 \ub9cc\ub8cc \ub418\uc5c8\uac70\ub098 \uc778\uc99d\uc5d0 \uc2e4\ud328 \ud558\uc600\uc2b5\ub2c8\ub2e4.\\r\\n\ub2e4\uc2dc \uc2dc\ub3c4\ud574 \uc8fc\uc138\uc694.\");\n\t\t\t}\n\t\t\telse if (response == \"OK\") {\n\t\t\t\talert(\"AI PACK \ub77c\uc774\uc120\uc2a4 \ubc1c\uae09 \uc2e0\uccad\uc774 \uc644\ub8cc\ub418\uc5c8\uc2b5\ub2c8\ub2e4.\\r\\n\uc785\ub825\ud558\uc2e0 \uc774\uba54\uc77c\ub85c \ub77c\uc774\uc120\uc2a4 \ud0a4\uac00 \ubc1c\uc1a1\ub429\ub2c8\ub2e4.\");\n\t\t\t\treset_frm();\n\t\t\t} \n\t\t\telse {\n\t\t\t\talert(\"AI PACK \ub77c\uc774\uc120\uc2a4 \ubc1c\uae09\uc744 \uc2e4\ud328 \ud558\uc600\uc2b5\ub2c8\ub2e4.\\r\\n\ub3d9\uc77c\ud55c \uba54\uc138\uc9c0\uac00 \uacc4\uc18d \ubc1c\uc0dd\ud560 \uacbd\uc6b0 \uad00\ub9ac\uc790\uc5d0\uac8c \ubb38\uc758\ud558\uc138\uc694.\");\n\t\t\t}\n\n\t\t\tjQuery('.wpcf7-spinner').css('visibility', 'hidden');\n\t\t\tf.submit.disabled = false;\n\n\t\t\treturn;\n\t\t});\n\t}\n<\/script>\n<section class=\"section\">\n\t<div class=\"wrapper\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"form-block\">\n\t\t\t\t<form id=\"frm_ai_pack\" name=\"frm_ai_pack\" onsubmit=\"return false;\">\n\t\t\t\t\t<input type=\"hidden\" id=\"ai_pack_version\" name=\"ai_pack_version\" \/>\n\n\t\t\t\t\t<div class=\"form-grid-block\">\n\t\t\t\t\t\t<div class=\"form-row\">\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"name\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\t\uccb4\ud5d8\ud310 \ub77c\uc774\uc120\uc2a4 \uc218\uc2e0\ud560 \ubd84 \uc131\ud568\n\t\t\t\t\t\t\t\t\t<span class=\"form-required-mark\">*<\/span>\n\t\t\t\t\t\t\t\t\t<p class=\"frm-error-message d-none\" id=\"error-name\"><\/p>\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"name\">\n\t\t\t\t\t\t\t\t\t<input \n\t\t\t\t\t\t\t\t\t\tsize=\"40\" \n\t\t\t\t\t\t\t\t\t\tclass=\"form-control\" \n\t\t\t\t\t\t\t\t\t\tid=\"name\" \n\t\t\t\t\t\t\t\t\t\taria-required=\"true\" \n\t\t\t\t\t\t\t\t\t\taria-invalid=\"false\" \n\t\t\t\t\t\t\t\t\t\tvalue=\"\" \n\t\t\t\t\t\t\t\t\t\ttype=\"text\" \n\t\t\t\t\t\t\t\t\t\tname=\"name\" \n\t\t\t\t\t\t\t\t\t\tautocomplete=\"off\" \n\t\t\t\t\t\t\t\t\t\/>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"email\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\t\uccb4\ud5d8\ud310 \ub77c\uc774\uc120\uc2a4 \uc218\uc2e0\ud560 \uc774\uba54\uc77c \uc8fc\uc18c\n\t\t\t\t\t\t\t\t\t<span class=\"form-required-mark\">*<\/span>\n\t\t\t\t\t\t\t\t\t<p class=\"frm-error-message d-none\" id=\"error-email\"><\/p>\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"email\">\n\t\t\t\t\t\t\t\t\t<input \n\t\t\t\t\t\t\t\t\t\tsize=\"40\" \n\t\t\t\t\t\t\t\t\t\tclass=\"form-control\" \n\t\t\t\t\t\t\t\t\t\tid=\"email\" \n\t\t\t\t\t\t\t\t\t\taria-required=\"true\" \n\t\t\t\t\t\t\t\t\t\taria-invalid=\"false\" \n\t\t\t\t\t\t\t\t\t\tvalue=\"\" \n\t\t\t\t\t\t\t\t\t\ttype=\"email\" \n\t\t\t\t\t\t\t\t\t\tname=\"email\" \n\t\t\t\t\t\t\t\t\t\/>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"product\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\t\uccb4\ud5d8\ud310 \ub77c\uc774\uc120\uc2a4 AI Pack \uc885\ub958\n\t\t\t\t\t\t\t\t\t<span class=\"form-required-mark\">*<\/span>\n\t\t\t\t\t\t\t\t\t<p class=\"frm-error-message d-none\" id=\"error-product\"><\/p>\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"product\">\n\t\t\t\t\t\t\t\t\t<select \n\t\t\t\t\t\t\t\t\t\tclass=\"form-select\" \n\t\t\t\t\t\t\t\t\t\tid=\"product\" \n\t\t\t\t\t\t\t\t\t\taria-required=\"true\" \n\t\t\t\t\t\t\t\t\t\taria-invalid=\"false\" \n\t\t\t\t\t\t\t\t\t\tname=\"product\"\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t<option value=\"\">\n\t\t\t\t\t\t\t\t\t\t\t--\uc120\ud0dd\ud574 \uc8fc\uc138\uc694--\n\t\t\t\t\t\t\t\t\t\t<\/option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"AIA-C01RET\">\n\t\t\t\t\t\t\t\t\t\t\tAIA-C01RET (\ub9ac\ud14c\uc77c & \ube44\uc988\ub2c8\uc2a4 AI Pack)\n\t\t\t\t\t\t\t\t\t\t<\/option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"AIA-C01TRF\">\n\t\t\t\t\t\t\t\t\t\t\tAIA-C01TRF (\uad50\ud1b5 AI Pack)\n\t\t\t\t\t\t\t\t\t\t<\/option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"AIA-C01BLK\">\n\t\t\t\t\t\t\t\t\t\t\tAIA-C01BLK (\ube44\uc0c1\uad6c\uad00\ub9ac AI Pack)\n\t\t\t\t\t\t\t\t\t\t<\/option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"AIA-C01FAC\">\n\t\t\t\t\t\t\t\t\t\t\tAIA-C01FAC (\uacf5\uc7a5 \uc548\uc804 AI Pack)\n\t\t\t\t\t\t\t\t\t\t<\/option>\n\t\t\t\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"position\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\t\ub2f4\ub2f9\uc5c5\ubb34\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"position\">\n\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control wpcf7-radio\" id=\"position\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item first\">\n\t\t\t\t\t\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"radio\" name=\"position\" value=\"User\" checked=\"checked\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item-label\">\uc0ac\uc6a9\uc790<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"radio\" name=\"position\" value=\"Installer\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item-label\">\uc124\uce58\uc5c5\uccb4<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"radio\" name=\"position\" value=\"SI\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item-label\">SI<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item last\">\n\t\t\t\t\t\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"radio\" name=\"position\" value=\"Dealership\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item-label\">\ub300\ub9ac\uc810<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"company\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\t\ud68c\uc0ac\uba85\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"company\">\n\t\t\t\t\t\t\t\t\t<input \n\t\t\t\t\t\t\t\t\t\tsize=\"40\" \n\t\t\t\t\t\t\t\t\t\tclass=\"form-control\" \n\t\t\t\t\t\t\t\t\t\tid=\"company\" \n\t\t\t\t\t\t\t\t\t\taria-invalid=\"false\" \n\t\t\t\t\t\t\t\t\t\tvalue=\"\" \n\t\t\t\t\t\t\t\t\t\ttype=\"text\" \n\t\t\t\t\t\t\t\t\t\tname=\"company\" \n\t\t\t\t\t\t\t\t\t\tautocomplete=\"off\" \n\t\t\t\t\t\t\t\t\t\/>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"referee-name\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\t\uc2e0\uccad\uc790\uba85\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"referee-name\">\n\t\t\t\t\t\t\t\t\t<input \n\t\t\t\t\t\t\t\t\t\tsize=\"40\" \n\t\t\t\t\t\t\t\t\t\tclass=\"form-control\" \n\t\t\t\t\t\t\t\t\t\tid=\"referee-name\" \n\t\t\t\t\t\t\t\t\t\taria-invalid=\"false\" \n\t\t\t\t\t\t\t\t\t\tvalue=\"\" \n\t\t\t\t\t\t\t\t\t\ttype=\"text\" \n\t\t\t\t\t\t\t\t\t\tname=\"referee-name\" \n\t\t\t\t\t\t\t\t\t\tautocomplete=\"off\" \n\t\t\t\t\t\t\t\t\t\/>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"form-grid-block divider-top\"><\/div>\n\n\t\t\t\t\t<div class=\"form-grid-block\">\n\t\t\t\t\t\t<div class=\"form-row\">\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<h3>\uac1c\uc778\uc815\ubcf4 \ubcf4\ud638\ubc95<\/h3>\n\t\t\t\t\t\t\t\t<p class=\"mb-20\">\ud55c\ud654\ube44\uc804 \uc8fc\uc2dd\ud68c\uc0ac(\uc774\ud558 \u201c\ud68c\uc0ac\u201d)\ub294 \uc544\ub798\uc640 \uac19\uc774 \uac1c\uc778\uc815\ubcf4\ub97c \uc218\uc9d1\u00b7\uc774\uc6a9\u00b7\uc81c\uacf5\ud558\uace0\uc790 \ud569\ub2c8\ub2e4. \uc544\ub798\uc758 \ub0b4\uc6a9\uc744 \uc790\uc138\ud788 \uc77d\uc73c\uc2e0 \ud6c4 \ub3d9\uc758 \uc5ec\ubd80\ub97c \uacb0\uc815\ud558\uc5ec \uc8fc\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.<\/p>\n\n\t\t\t\t\t\t\t\t<div class=\"scroll-policy\">\n\t\t\t\t\t\t\t\t\t<h4>\uac1c\uc778\uc815\ubcf4 \uc218\uc9d1\u2022\uc774\uc6a9 \ub3d9\uc758\uc11c<\/h4>\n\t\t\t\t\t\t\t\t\t<p>\ud55c\ud654\ube44\uc804\uc8fc\uc2dd\ud68c\uc0ac(\uc774\ud558 \"\ud55c\ud654\ube44\uc804\")\ub294 \uace0\uac1d\uc758 \uac1c\uc778\uc815\ubcf4\ub97c \uc18c\uc911\ud558\uac8c \uc0dd\uac01\ud558\uba70, \u2018\uc815\ubcf4\ud1b5\uc2e0\ub9dd \uc774\uc6a9\ucd09\uc9c4 \ubc0f \uc815\ubcf4\ubcf4\ud638 \ub4f1\uc5d0 \uad00\ud55c \ubc95\ub960\u2019, \u2018\uac1c\uc778\uc815\ubcf4 \ubcf4\ud638\ubc95\u2019\ub4f1 \uad00\ub828\ubc95\ub960\uc744 \uc900\uc218\ud558\uae30 \uc704\ud574 '\uac1c\uc778\uc815\ubcf4\ucc98\ub9ac\ubc29\uce68'\uc744 \uc81c\uc815\ud558\uace0 \uc774\ub97c \uc900\uc218\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ubcf8 \ubc29\uce68\uc740 \ubc95\ub960\uc758 \uc81c\u2022\uac1c\uc815, \uc815\ubd80\uc758 \uc815\ucc45 \ubcc0\uacbd, \ud68c\uc0ac\uc758 \uc6b4\uc601 \ubc29\uce68\uc5d0 \ub530\ub77c \ubcc0\uacbd\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\t\t\t\t\t\t\t\t\t<h5>1. \uac1c\uc778\uc815\ubcf4\uc758 \uc218\uc9d1 \ubc0f \uc774\uc6a9\ubaa9\uc801<\/h5>\n\t\t\t\t\t\t\t\t\t<p>\ud55c\ud654\ube44\uc804\uc740 \ub9cc\uc871\uc2a4\ub7ec\uc6b4 \uc11c\ube44\uc2a4 \uc81c\uacf5\uc744 \uc704\ud574 \ud544\uc694\ud55c \ucd5c\uc18c\ud55c\uc758 \ubc94\uc704 \ub0b4\uc5d0\uc11c \ubb38\uc758\uc0ac\ud56d \ub2f5\ubcc0 \ubc0f \ub2f5\ubcc0 \uc815\ubcf4 \uc720\uc9c0, \ud68c\uc6d0 \uad00\ub9ac \ubc0f \ucf58\ud150\uce20 \uc81c\uacf5 \ub4f1\uc758 \ubaa9\uc801\uc73c\ub85c \uac1c\uc778\uc815\ubcf4\ub97c \uc218\uc9d1\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\t\t\t\t\t\t\t\t\t<h5>2. \uac1c\uc778\uc815\ubcf4 \uc218\uc9d1\ud56d\ubaa9 (\ud544\uc218)<\/h5>\n\t\t\t\t\t\t\t\t\t<p>- \uc774\ub984, \uc774\uba54\uc77c \uc8fc\uc18c, \uad6d\uac00, \uace0\uac1d \uc720\ud615, \ud68c\uc0ac\uba85, \uc9c1\ucc45, \uc804\ud654\ubc88\ud638, \uce74\ud14c\uace0\ub9ac, \uc81c\ud488<\/p>\n\t\t\t\t\t\t\t\t\t\uace0\uac1d\uaed8\ub294 \uc704\uc758 \uac1c\uc778\uc815\ubcf4 (\ud544\uc218)\ud56d\ubaa9\uc5d0 \ub300\ud574 \uc218\uc9d1\u2219\uc774\uc6a9\uc5d0 \ub300\ud55c \ub3d9\uc758\ub97c \uac70\ubd80\ud560 \uad8c\ub9ac\uac00 \uc788\uc2b5\ub2c8\ub2e4. \ub2e8, \uac1c\uc778\uc815\ubcf4 (\ud544\uc218)\ud56d\ubaa9 \uc218\uc9d1\uc744 \uac70\ubd80\ud558\uc2e4 \uacbd\uc6b0 AI Pack Solution (AI Pack \ud30c\uc0dd \uc194\ub8e8\uc158) \uc11c\ube44\uc2a4 \uc81c\uacf5\uc5d0 \uc81c\uc57d\uc774 \ubc1c\uc0dd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<p><\/p>\n\n\t\t\t\t\t\t\t\t\t<h5>3. \uac1c\uc778\uc815\ubcf4\uc758 \ubcf4\uc720, \uc774\uc6a9\uae30\uac04 \ubc0f \ud30c\uae30<\/h5>\n\t\t\t\t\t\t\t\t\t<p>\u2460 \ud55c\ud654\ube44\uc804\uc740 \uac1c\uc778\uc815\ubcf4\uc758 \uc218\uc9d1\ubaa9\uc801 \ub610\ub294 \uc81c\uacf5\ubc1b\uc740 \ubaa9\uc801\uc774 \ub2ec\uc131\ub41c \ub54c \ub610\ub294 \uace0\uac1d\uc758 \ud30c\uae30 \uc694\uccad\uc774 \uc788\ub294 \ub54c\uc5d0\ub294 \uace0\uac1d\uc758 \uac1c\uc778\uc815\ubcf4\ub97c \uc9c0\uccb4 \uc5c6\uc774 \ud30c\uae30\ud569\ub2c8\ub2e4.<\/p>\n\t\t\t\t\t\t\t\t\t<p>\u2461 \ub2e8, \uad00\uacc4 \ubc95\ub839 \ubc0f \ub0b4\ubd80 \ubc29\uce68\uc5d0 \uc758\ud574 \ub2e4\uc74c\uacfc \uac19\uc774 \uac1c\uc778\uc815\ubcf4\ub97c \ubcf4\uc720\ud574\uc57c \ud560 \ud544\uc694\uac00 \uc788\uc744 \uacbd\uc6b0\uc5d0\ub294 \uc774\ub97c \uc77c\uc815\uae30\uac04 \ubcf4\uc720\ud569\ub2c8\ub2e4.<\/p>\n\t\t\t\t\t\t\t\t\t<p>\u203b \uad00\uacc4\ubc95\ub839(\uc0c1\ubc95, \uad6d\uc138\uae30\ubcf8\ubc95, \uc804\uc790\uc0c1\uac70\ub798 \ub4f1\uc5d0\uc11c\uc758 \uc18c\ube44\uc790 \ubcf4\ud638\uc5d0 \uad00\ud55c \ubc95\ub960, \ud1b5\uc2e0\ube44\ubc00\ubcf4\ud638\ubc95 \u7b49)\uc5d0 \uc758\ud55c \uc815\ubcf4\ubcf4\uc720<\/p>\n\t\t\t\t\t\t\t\t\t<p>\ub2e4\ub9cc, \ub2e4\uc74c\uc758 \uc0ac\uc720\uc5d0 \ud574\ub2f9\ud558\ub294 \uacbd\uc6b0\uc5d0\ub294 \ud574\ub2f9 \uc0ac\uc720 \uc885\ub8cc \uc2dc\uae4c\uc9c0<\/p>\n\n\t\t\t\t\t\t\t\t\t<p>1. \ud648\ud398\uc774\uc9c0 \ud68c\uc6d0 \uac00\uc785 \ubc0f \uad00\ub9ac: \ud648\ud398\uc774\uc9c0 \ud0c8\ud1f4 \uc2dc\uae4c\uc9c0<\/p>\n\t\t\t\t\t\t\t\t\t<p>\uac00. \uad00\uacc4 \ubc95\ub839 \uc704\ubc18\uc5d0 \ub530\ub978 \uc218\uc0ac\u00b7\uc870\uc0ac \ub4f1\uc774 \uc9c4\ud589 \uc911\uc778 \uacbd\uc6b0 \ud574\ub2f9 \uc218\uc0ac\u00b7\uc870\uc0ac \uc885\ub8cc \uc2dc\uae4c\uc9c0<\/p>\n\t\t\t\t\t\t\t\t\t<p>\ub098. \ud648\ud398\uc774\uc9c0 \uc774\uc6a9\uc5d0 \ub530\ub978 \ucc44\uad8c\u00b7\ucc44\ubb34\uad00\uacc4 \uc794\uc874 \uc2dc \ud574\ub2f9 \ucc44\uad8c\u00b7\ucc44\ubb34\uad00\uacc4 \uc815\uc0b0 \uc2dc\uae4c\uc9c0<\/p>\n\n\t\t\t\t\t\t\t\t\t<p>2. \uc7ac\ud654 \ub610\ub294 \uc11c\ube44\uc2a4 \uc81c\uacf5: \uc7ac\ud654\u00b7\uc11c\ube44\uc2a4 \uacf5\uae09\uc644\ub8cc \ubc0f \uc694\uae08\uacb0\uc81c\u00b7\uc815\uc0b0 \uc644\ub8cc \uc2dc\uae4c\uc9c0<\/p>\n\t\t\t\t\t\t\t\t\t<p>\ub2e4\ub9cc, \ub2e4\uc74c\uc758 \uc0ac\uc720\uc5d0 \ud574\ub2f9\ud558\ub294 \uacbd\uc6b0\uc5d0\ub294 \ud574\ub2f9 \uae30\uac04 \uc885\ub8cc \uc2dc\uae4c\uc9c0<\/p>\n\n\t\t\t\t\t\t\t\t\t<p>\uac00. \u300c\uc804\uc790\uc0c1\uac70\ub798 \ub4f1\uc5d0\uc11c\uc758 \uc18c\ube44\uc790 \ubcf4\ud638\uc5d0 \uad00\ud55c \ubc95\ub960\u300d\uc5d0 \ub530\ub978 \ud45c\uc2dc\u00b7\uad11\uace0, \uacc4\uc57d\ub0b4\uc6a9 \ubc0f \uc774\ud589 \ub4f1 \uac70\ub798\uc5d0 \uad00\ud55c \uae30\ub85d<\/p>\n\t\t\t\t\t\t\t\t\t<p>1) \ud45c\uc2dc\u2022\uad11\uace0\uc5d0 \uad00\ud55c \uae30\ub85d: 6\uac1c\uc6d4<\/p>\n\t\t\t\t\t\t\t\t\t<p>2) \uacc4\uc57d \ub610\ub294 \uccad\uc57d\ucca0\ud68c, \ub300\uae08\uacb0\uc81c, \uc7ac\ud654 \ub4f1\uc758 \uacf5\uae09\uae30\ub85d: 5\ub144<\/p>\n\t\t\t\t\t\t\t\t\t<p>3) \uc18c\ube44\uc790 \ubd88\ub9cc \ub610\ub294 \ubd84\uc7c1\ucc98\ub9ac\uc5d0 \uad00\ud55c \uae30\ub85d: 3\ub144<\/p>\n\t\t\t\t\t\t\t\t\t<p>\ub098. \u300c\ud1b5\uc2e0\ube44\ubc00\ubcf4\ud638\ubc95\u300d \uc2dc\ud589\ub839 \uc81c41\uc870\uc5d0 \ub530\ub978 \ud1b5\uc2e0\uc0ac\uc2e4\ud655\uc778\uc790\ub8cc \ubcf4\uad00<\/p>\n\t\t\t\t\t\t\t\t\t<p>1) \ucef4\ud4e8\ud130\ud1b5\uc2e0, \uc778\ud130\ub137 \ub85c\uadf8\uae30\ub85d\uc790\ub8cc, \uc811\uc18d\uc9c0 \ucd94\uc801\uc790\ub8cc: 3\uac1c\uc6d4<\/p>\n\t\t\t\t\t\t\t\t\t<p>\u2462 \ud30c\uae30 \uc808\ucc28 \ubc0f \ubc29\ubc95<\/p>\n\n\t\t\t\t\t\t\t\t\t<p>1. \ud55c\ud654\ube44\uc804\uc740 \uac1c\uc778\uc815\ubcf4 \ubcf4\uc720\uae30\uac04\uc758 \uacbd\uacfc, \ucc98\ub9ac\ubaa9\uc801 \ub2ec\uc131 \ub4f1 \uac1c\uc778\uc815\ubcf4\uac00 \ubd88\ud544\uc694\ud558\uac8c \ub418\uc5c8\uc744 \ub54c\uc5d0\ub294 \uc9c0\uccb4 \uc5c6\uc774 \ud574\ub2f9 \uac1c\uc778\uc815\ubcf4\ub97c \ud30c\uae30\ud569\ub2c8\ub2e4.<\/p>\n\t\t\t\t\t\t\t\t\t<p>2. \uace0\uac1d\uc73c\ub85c\ubd80\ud130 \ub3d9\uc758 \ubc1b\uc740 \uac1c\uc778\uc815\ubcf4 \ubcf4\uc720\uae30\uac04\uc774 \uacbd\uacfc\ud558\uac70\ub098 \ucc98\ub9ac\ubaa9\uc801\uc774 \ub2ec\uc131\ub418\uc5c8\uc74c\uc5d0\ub3c4 \ubd88\uad6c\ud558\uace0 \ub2e4\ub978 \ubc95\ub839\uc5d0 \ub530\ub77c \uacc4\uc18d \ubcf4\uc874\ud558\uc5ec\uc57c \ud558\ub294 \uacbd\uc6b0\uc5d0\ub294, \ud574\ub2f9 \uac1c\uc778\uc815\ubcf4\ub97c \ubcc4\ub3c4\uc758 \ub370\uc774\ud130\ubca0\uc774\uc2a4(DB)\ub85c \uc62e\uae30\uac70\ub098 \ubcf4\uad00\uc7a5\uc18c\ub97c \ub2ec\ub9ac\ud558\uc5ec \ubcf4\uad00\ud569\ub2c8\ub2e4.<\/p>\n\t\t\t\t\t\t\t\t\t<p>3. \ud55c\ud654\ube44\uc804\uc740 \uc804\uc790\uc801 \ud30c\uc77c \ud615\ud0dc\ub85c \uae30\ub85d\u00b7\uc800\uc7a5\ub41c \uac1c\uc778\uc815\ubcf4\ub294 \uae30\ub85d\uc744 \uc7ac\uc0dd\ud560 \uc218 \uc5c6\ub3c4\ub85d \ud30c\uae30\ud558\uba70, \uc885\uc774 \ubb38\uc11c\uc5d0 \uae30\ub85d\u00b7\uc800\uc7a5\ub41c \uac1c\uc778\uc815\ubcf4\ub294 \ud30c\uc1c4 \ub610\ub294 \uc18c\uac01\ud558\uc5ec \ud30c\uae30\ud569\ub2c8\ub2e4.<\/p>\n\n\t\t\t\t\t\t\t\t\t<h5>4. \uac1c\uc778\uc815\ubcf4\uc758 \uc774\uc6a9\u2022\uc81c\uacf5 \ubc0f \uacf5\uc720<\/h5>\n\t\t\t\t\t\t\t\t\t<p>\u2460 \ud55c\ud654\ube44\uc804\uc740 \uace0\uac1d\uc758 \ub3d9\uc758\uac00 \uc788\uac70\ub098 \uad00\ub828 \ubc95\ub839\uc758 \uaddc\uc815\uc5d0 \uc758\ud55c \uacbd\uc6b0\ub97c \uc81c\uc678\ud558\uace0\ub294 \uc5b4\ub5a0\ud55c \uacbd\uc6b0\uc5d0\ub3c4 \"\uc81c3\uc870 \uac1c\uc778\uc815\ubcf4\uc758 \uc218\uc9d1 \ubc0f \uc774\uc6a9\ubaa9\uc801\"\uc5d0\uc11c \uace0\uc9c0\ud55c \ubc94\uc704\ub97c \ub118\uc5b4 \uace0\uac1d\uc758 \uac1c\uc778\uc815\ubcf4\ub97c \uc774\uc6a9\ud558\uac70\ub098 \ud0c0\uc778 \ub610\ub294 \ud0c0\uae30\uc5c5\u00b7\uae30\uad00\uc5d0 \uc81c\uacf5\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ub2e4\ub9cc \ub2e4\uc74c\uc758 \uacbd\uc6b0\ub294 \uc8fc\uc758\ub97c \uae30\uc6b8\uc5ec \uac1c\uc778\uc815\ubcf4\ub97c \uc774\uc6a9 \ubc0f \uc81c\uacf5\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\t\t\t\t\t\t\t\t\t<p>1. \ub9e4\uac01, \uc778\uc218\ud569\ubcd1 \ub4f1 \uc11c\ube44\uc2a4 \uc81c\uacf5\uc790\uc758 \uad8c\ub9ac\uc640 \uc758\ubb34\uac00 \uc644\uc804 \uc2b9\uacc4, \uc774\uc804\ub418\ub294 \uacbd\uc6b0 \ubc18\ub4dc\uc2dc \uc0ac\uc804\uc5d0 \uc815\ub2f9\ud55c \uc0ac\uc720\uc640 \uc808\ucc28\uc5d0 \ub300\ud574 \uc0c1\uc138\ud558\uac8c \uace0\uc9c0\ud560 \uac83\uc774\uba70 \uace0\uac1d\uc758 \uac1c\uc778\uc815\ubcf4 \uc774\uc804\uc5d0 \ub300\ud55c \ub3d9\uc758 \uad8c\ud55c\uc744 \ubd80\uc5ec\ud569\ub2c8\ub2e4.<\/p>\n\n\t\t\t\t\t\t\t\t\t<p>2. \uc774\uc678\uc5d0 \uace0\uac1d\uc758 \uac1c\uc778\uc815\ubcf4\ub97c \uc81c\uacf5\ud558\uac70\ub098 \uacf5\uc720\ud558\ub294 \uacbd\uc6b0\uc5d0\ub294 \uace0\uac1d\uc5d0\uac8c \uc81c\uacf5 \ubc1b\uac70\ub098 \uacf5\uc720\ud558\ub294 \uc790, \uc81c\uacf5 \ubc1b\uac70\ub098 \uacf5\uc720\ud558\ub294 \uc790\uc758 \uc774\uc6a9 \ubaa9\uc801, \uc81c\uacf5 \ub610\ub294 \uacf5\uc720\ub418\ub294 \uac1c\uc778\uc815\ubcf4 \ud56d\ubaa9, \ub3d9\uc758\ub97c \uac70\ubd80\ud560 \uad8c\ub9ac\uac00 \uc788\ub2e4\ub294 \uc0ac\uc2e4 \ubc0f \ub3d9\uc758 \uac70\ubd80\uc5d0 \ub530\ub978 \ubd88\uc774\uc775\uc758 \ub0b4\uc6a9 \ub4f1\uc5d0 \ub300\ud574 \uc0ac\uc804\uc5d0 \uc774\uba54\uc77c \ub610\ub294 \uc11c\uba74 \ub4f1\uc744 \ud1b5\ud574 \uace0\uc9c0\ud55c \ud6c4 \uc774\uc5d0 \ub300\ud55c \ub3d9\uc758\ub97c \uad6c\ud569\ub2c8\ub2e4.<\/p>\n\t\t\t\t\t\t\t\t\t<p>\u2461 \ub2e4\uc74c\uc758 \uacbd\uc6b0\uc5d0\ub294 \uad00\ub828 \ubc95\ub839\uc758 \uaddc\uc815\uc5d0 \uc758\ud574 \uace0\uac1d\uc758 \ub3d9\uc758 \uc5c6\uc774 \uac1c\uc778\uc815\ubcf4\ub97c \uc81c\uacf5\ud558\ub294 \uac83\uc774 \uac00\ub2a5\ud569\ub2c8\ub2e4.<\/p>\n\n\t\t\t\t\t\t\t\t\t<p>1. \uc11c\ube44\uc2a4 \uc81c\uacf5\uc5d0 \uad00\ud55c \uacc4\uc57d\uc744 \uc774\ud589\ud558\uae30 \uc704\ud55c \uacbd\uc6b0<\/p>\n\t\t\t\t\t\t\t\t\t<p>2. \uad00\ub828 \ubc95\ub839\uc758 \uaddc\uc815\uc5d0 \uadfc\uac70\uac00 \uc788\ub294 \uacbd\uc6b0<\/p>\n\t\t\t\t\t\t\t\t\t<p>3. \ud1b5\uacc4\uc791\uc131, \ud559\uc220\uc5f0\uad6c\ub098 \uc2dc\uc7a5\uc870\uc0ac\ub97c \uc704\ud574 \ud2b9\uc815 \uac1c\uc778\uc744 \uc2dd\ubcc4\ud560 \uc218 \uc5c6\ub294 \ud615\ud0dc\ub85c \uac00\uacf5\ud558\uc5ec \uc81c\uacf5\ud558\ub294 \uacbd\uc6b0<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<p class=\"frm-error-message d-none\" id=\"error-acceptance\"><\/p>\n\t\t\t\t\t\t\t\t<div class=\"form-row-group\">\n\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"acceptance\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control wpcf7-acceptance\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" name=\"acceptance\" value=\"agreed\" id=\"acceptance\" aria-invalid=\"false\" \/>\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<label for=\"acceptance\">\uc704\uc640 \uac19\uc774 \uac1c\uc778\uc815\ubcf4\ub97c \uc218\uc9d1\u00b7\uc774\uc6a9\ud558\ub294\ub370 \ub3d9\uc758\ud558\uc2ed\ub2c8\uae4c? <span class=\"form-required-mark\">*<\/span><\/label>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"form-grid-block\">\n\t\t\t\t\t\t<div class=\"form-row\">\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<span id=\"captcha\" class=\"g-recaptcha\" data-sitekey=\"6LdjusYkAAAAAIjUJrYs3J80P8MrL15Cr0nPN-Qg\"><\/span>\n\t\t\t\t\t\t\t\t<p class=\"frm-error-message d-none\" id=\"error-recaptcha\"><\/p>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"form-grid-block\">\n\t\t\t\t\t\t<div class=\"form-row\">\n\t\t\t\t\t\t\t<div class=\"form-col text-center\">\n\t\t\t\t\t\t\t\t<div class=\"form-inline-block\">\n\t\t\t\t\t\t\t\t\t<input \n\t\t\t\t\t\t\t\t\t\tclass=\"wpcf7-form-control wpcf7-submit has-spinner btn\" \n\t\t\t\t\t\t\t\t\t\ttype=\"submit\" \n\t\t\t\t\t\t\t\t\t\tname=\"submit\" \n\t\t\t\t\t\t\t\t\t\tvalue=\"\uc81c\ucd9c\ud558\uae30\" \n\t\t\t\t\t\t\t\t\t\tonclick=\"reg_ai_pack();\"\n\t\t\t\t\t\t\t\t\t\/>\n\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-spinner\"><\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/form>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/section>\n\n<script src=\"https:\/\/www.google.com\/recaptcha\/api.js?hl=ko\" async defer><\/script>\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":55,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"v2024\/template-generic.php","meta":{"footnotes":""},"acf":[],"_links":{"self":[{"href":"https:\/\/www.hanwhavision.com\/ko\/wp-json\/wp\/v2\/pages\/1631981"}],"collection":[{"href":"https:\/\/www.hanwhavision.com\/ko\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.hanwhavision.com\/ko\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.hanwhavision.com\/ko\/wp-json\/wp\/v2\/users\/55"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hanwhavision.com\/ko\/wp-json\/wp\/v2\/comments?post=1631981"}],"version-history":[{"count":2,"href":"https:\/\/www.hanwhavision.com\/ko\/wp-json\/wp\/v2\/pages\/1631981\/revisions"}],"predecessor-version":[{"id":1631983,"href":"https:\/\/www.hanwhavision.com\/ko\/wp-json\/wp\/v2\/pages\/1631981\/revisions\/1631983"}],"wp:attachment":[{"href":"https:\/\/www.hanwhavision.com\/ko\/wp-json\/wp\/v2\/media?parent=1631981"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}