'TABLE', 'TD', 'TH', 'MARQUEE', 'OBJECT', 'TEMPLATE', 'math MI', 'math MO', 'math MN', 'math MS', 'math MTEXT', 'math ANNOTATION-XML', 'svg FOREIGNOBJECT', 'svg DESC', 'svg TITLE', ) ); } /** * Returns whether a particular element is in list item scope. * * > The stack of open elements is said to have a particular element * > in list item scope when it has that element in the specific scope * > consisting of the following element types: * > * > - All the element types listed above for the has an element in scope algorithm. * > - ol in the HTML namespace * > - ul in the HTML namespace * * @since 6.4.0 * @since 6.5.0 Implemented: no longer throws on every invocation. * @since 6.7.0 Supports all required HTML elements. * * @see https://html.spec.whatwg.org/#has-an-element-in-list-item-scope * * @param string $tag_name Name of tag to check. * @return bool Whether given element is in scope. */ public function has_element_in_list_item_scope( string $tag_name ): bool { return $this->has_element_in_specific_scope( $tag_name, array( 'APPLET', 'BUTTON', 'CAPTION', 'HTML', 'TABLE', 'TD', 'TH', 'MARQUEE', 'OBJECT', 'OL', 'TEMPLATE', 'UL', 'math MI', 'math MO', 'math MN', 'math MS', 'math MTEXT', 'math ANNOTATION-XML', 'svg FOREIGNOBJECT', 'svg DESC', 'svg TITLE', ) ); } /** * Returns whether a particular element is in button scope. * * > The stack of open elements is said to have a particular element * > in button scope when it has that element in the specific scope * > consisting of the following element types: * > * > - All the element types listed above for the has an element in scope algorithm. * > - button in the HTML namespace * * @since 6.4.0 * @since 6.7.0 Supports all required HTML elements. * * @see https://html.spec.whatwg.org/#has-an-element-in-button-scope * * @param string $tag_name Name of tag to check. * @return bool Whether given element is in scope. */ public function has_element_in_button_scope( string $tag_name ): bool { return $this->has_element_in_specific_scope( $tag_name, array( 'APPLET', 'BUTTON', 'CAPTION', 'HTML', 'TABLE', 'TD', 'TH', 'MARQUEE', 'OBJECT', 'TEMPLATE', 'math MI', 'math MO', 'math MN', 'math MS', 'math MTEXT', 'math ANNOTATION-XML', 'svg FOREIGNOBJECT', 'svg DESC', 'svg TITLE', ) ); } /** * Returns whether a particular element is in table scope. * * > The stack of open elements is said to have a particular element * > in table scope when it has that element in the specific scope * > consisting of the following element types: * > * > - html in the HTML namespace * > - table in the HTML namespace * > - template in the HTML namespace * * @since 6.4.0 * @since 6.7.0 Full implementation. * * @see https://html.spec.whatwg.org/#has-an-element-in-table-scope * * @param string $tag_name Name of tag to check. * @return bool Whether given element is in scope. */ public function has_element_in_table_scope( string $tag_name ): bool { return $this->has_element_in_specific_scope( $tag_name, array( 'HTML', 'TABLE', 'TEMPLATE', ) ); } /** * Returns whether a particular element is in select scope. * * This test differs from the others like it, in that its rules are inverted. * Instead of arriving at a match when one of any tag in a termination group * is reached, this one terminates if any other tag is reached. * * > The stack of open elements is said to have a particular element in select scope when it has * > that element in the specific scope consisting of all element types except the following: * > - optgroup in the HTML namespace * > - option in the HTML namespace * * @since 6.4.0 Stub implementation (throws). * @since 6.7.0 Full implementation. * * @see https://html.spec.whatwg.org/#has-an-element-in-select-scope * * @param string $tag_name Name of tag to check. * @return bool Whether the given element is in SELECT scope. */ public function has_element_in_select_scope( string $tag_name ): bool { foreach ( $this->walk_up() as $node ) { if ( $node->node_name === $tag_name ) { return true; } if ( 'OPTION' !== $node->node_name && 'OPTGROUP' !== $node->node_name ) { return false; } } return false; } /** * Returns whether a P is in BUTTON scope. * * @since 6.4.0 * * @see https://html.spec.whatwg.org/#has-an-element-in-button-scope * * @return bool Whether a P is in BUTTON scope. */ public function has_p_in_button_scope(): bool { return $this->has_p_in_button_scope; } /** * Pops a node off of the stack of open elements. * * @since 6.4.0 * * @see https://html.spec.whatwg.org/#stack-of-open-elements * * @return bool Whether a node was popped off of the stack. */ public function pop(): bool { $item = array_pop( $this->stack ); if ( null === $item ) { return false; } $this->after_element_pop( $item ); return true; } /** * Pops nodes off of the stack of open elements until an HTML tag with the given name has been popped. * * @since 6.4.0 * * @see WP_HTML_Open_Elements::pop * * @param string $html_tag_name Name of tag that needs to be popped off of the stack of open elements. * @return bool Whether a tag of the given name was found and popped off of the stack of open elements. */ public function pop_until( string $html_tag_name ): bool { foreach ( $this->walk_up() as $item ) { $this->pop(); if ( 'html' !== $item->namespace ) { continue; } if ( '(internal: H1 through H6 - do not use)' === $html_tag_name && in_array( $item->node_name, array( 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ), true ) ) { return true; } if ( $html_tag_name === $item->node_name ) { return true; } } return false; } /** * Pushes a node onto the stack of open elements. * * @since 6.4.0 * * @see https://html.spec.whatwg.org/#stack-of-open-elements * * @param WP_HTML_Token $stack_item Item to add onto stack. */ public function push( WP_HTML_Token $stack_item ): void { $this->stack[] = $stack_item; $this->after_element_push( $stack_item ); } /** * Removes a specific node from the stack of open elements. * * @since 6.4.0 * * @param WP_HTML_Token $token The node to remove from the stack of open elements. * @return bool Whether the node was found and removed from the stack of open elements. */ public function remove_node( WP_HTML_Token $token ): bool { foreach ( $this->walk_up() as $position_from_end => $item ) { if ( $token->bookmark_name !== $item->bookmark_name ) { continue; } $position_from_start = $this->count() - $position_from_end - 1; array_splice( $this->stack, $position_from_start, 1 ); $this->after_element_pop( $item ); return true; } return false; } /** * Steps through the stack of open elements, starting with the top element * (added first) and walking downwards to the one added last. * * This generator function is designed to be used inside a "foreach" loop. * * Example: * * $html = 'We are here'; * foreach ( $stack->walk_down() as $node ) { * echo "{$node->node_name} -> "; * } * > EM -> STRONG -> A -> * * To start with the most-recently added element and walk towards the top, * see WP_HTML_Open_Elements::walk_up(). * * @since 6.4.0 */ public function walk_down() { $count = count( $this->stack ); for ( $i = 0; $i < $count; $i++ ) { yield $this->stack[ $i ]; } } /** * Steps through the stack of open elements, starting with the bottom element * (added last) and walking upwards to the one added first. * * This generator function is designed to be used inside a "foreach" loop. * * Example: * * $html = 'We are here'; * foreach ( $stack->walk_up() as $node ) { * echo "{$node->node_name} -> "; * } * > A -> STRONG -> EM -> * * To start with the first added element and walk towards the bottom, * see WP_HTML_Open_Elements::walk_down(). * * @since 6.4.0 * @since 6.5.0 Accepts $above_this_node to start traversal above a given node, if it exists. * * @param WP_HTML_Token|null $above_this_node Optional. Start traversing above this node, * if provided and if the node exists. */ public function walk_up( ?WP_HTML_Token $above_this_node = null ) { $has_found_node = null === $above_this_node; for ( $i = count( $this->stack ) - 1; $i >= 0; $i-- ) { $node = $this->stack[ $i ]; if ( ! $has_found_node ) { $has_found_node = $node === $above_this_node; continue; } yield $node; } } /* * Internal helpers. */ /** * Updates internal flags after adding an element. * * Certain conditions (such as "has_p_in_button_scope") are maintained here as * flags that are only modified when adding and removing elements. This allows * the HTML Processor to quickly check for these conditions instead of iterating * over the open stack elements upon each new tag it encounters. These flags, * however, need to be maintained as items are added and removed from the stack. * * @since 6.4.0 * * @param WP_HTML_Token $item Element that was added to the stack of open elements. */ public function after_element_push( WP_HTML_Token $item ): void { $namespaced_name = 'html' === $item->namespace ? $item->node_name : "{$item->namespace} {$item->node_name}"; /* * When adding support for new elements, expand this switch to trap * cases where the precalculated value needs to change. */ switch ( $namespaced_name ) { case 'APPLET': case 'BUTTON': case 'CAPTION': case 'HTML': case 'TABLE': case 'TD': case 'TH': case 'MARQUEE': case 'OBJECT': case 'TEMPLATE': case 'math MI': case 'math MO': case 'math MN': case 'math MS': case 'math MTEXT': case 'math ANNOTATION-XML': case 'svg FOREIGNOBJECT': case 'svg DESC': case 'svg TITLE': $this->has_p_in_button_scope = false; break; case 'P': $this->has_p_in_button_scope = true; break; } if ( null !== $this->push_handler ) { ( $this->push_handler )( $item ); } } /** * Updates internal flags after removing an element. * * Certain conditions (such as "has_p_in_button_scope") are maintained here as * flags that are only modified when adding and removing elements. This allows * the HTML Processor to quickly check for these conditions instead of iterating * over the open stack elements upon each new tag it encounters. These flags, * however, need to be maintained as items are added and removed from the stack. * * @since 6.4.0 * * @param WP_HTML_Token $item Element that was removed from the stack of open elements. */ public function after_element_pop( WP_HTML_Token $item ): void { /* * When adding support for new elements, expand this switch to trap * cases where the precalculated value needs to change. */ switch ( $item->node_name ) { case 'APPLET': case 'BUTTON': case 'CAPTION': case 'HTML': case 'P': case 'TABLE': case 'TD': case 'TH': case 'MARQUEE': case 'OBJECT': case 'TEMPLATE': case 'math MI': case 'math MO': case 'math MN': case 'math MS': case 'math MTEXT': case 'math ANNOTATION-XML': case 'svg FOREIGNOBJECT': case 'svg DESC': case 'svg TITLE': $this->has_p_in_button_scope = $this->has_element_in_button_scope( 'P' ); break; } if ( null !== $this->pop_handler ) { ( $this->pop_handler )( $item ); } } /** * Clear the stack back to a table context. * * > When the steps above require the UA to clear the stack back to a table context, it means * > that the UA must, while the current node is not a table, template, or html element, pop * > elements from the stack of open elements. * * @see https://html.spec.whatwg.org/multipage/parsing.html#clear-the-stack-back-to-a-table-context * * @since 6.7.0 */ public function clear_to_table_context(): void { foreach ( $this->walk_up() as $item ) { if ( 'TABLE' === $item->node_name || 'TEMPLATE' === $item->node_name || 'HTML' === $item->node_name ) { break; } $this->pop(); } } /** * Clear the stack back to a table body context. * * > When the steps above require the UA to clear the stack back to a table body context, it * > means that the UA must, while the current node is not a tbody, tfoot, thead, template, or * > html element, pop elements from the stack of open elements. * * @see https://html.spec.whatwg.org/multipage/parsing.html#clear-the-stack-back-to-a-table-body-context * * @since 6.7.0 */ public function clear_to_table_body_context(): void { foreach ( $this->walk_up() as $item ) { if ( 'TBODY' === $item->node_name || 'TFOOT' === $item->node_name || 'THEAD' === $item->node_name || 'TEMPLATE' === $item->node_name || 'HTML' === $item->node_name ) { break; } $this->pop(); } } /** * Clear the stack back to a table row context. * * > When the steps above require the UA to clear the stack back to a table row context, it * > means that the UA must, while the current node is not a tr, template, or html element, pop * > elements from the stack of open elements. * * @see https://html.spec.whatwg.org/multipage/parsing.html#clear-the-stack-back-to-a-table-row-context * * @since 6.7.0 */ public function clear_to_table_row_context(): void { foreach ( $this->walk_up() as $item ) { if ( 'TR' === $item->node_name || 'TEMPLATE' === $item->node_name || 'HTML' === $item->node_name ) { break; } $this->pop(); } } /** * Wakeup magic method. * * @since 6.6.0 */ public function __wakeup() { throw new \LogicException( __CLASS__ . ' should never be unserialized' ); } } {"id":2894,"date":"2022-09-11T10:03:01","date_gmt":"2022-09-11T10:03:01","guid":{"rendered":"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/"},"modified":"2022-09-11T10:03:01","modified_gmt":"2022-09-11T10:03:01","slug":"%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87","status":"publish","type":"post","link":"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/","title":{"rendered":"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647"},"content":{"rendered":"

\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632<\/a> \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647 \u0633\u0627\u0639\u062a 14:33:01 \u0631\u0648\u0632 \u06f1\u06f4\u06f0\u06f1\/\u06f6\/\u06f2\u06f0 \u0628\u06cc\u0633\u062a \u0634\u0647\u0631\u06cc\u0648\u0631 \u0647\u0632\u0627\u0631 \u0648 \u0686\u0647\u0627\u0631\u0635\u062f \u0648 \u06cc\u06a9 \u0628\u0647 \u0634\u0631\u062d \u062c\u062f\u0648\u0644 \u0632\u06cc\u0631 \u0645\u0648\u0631\u062f \u062f\u0627\u062f \u0648 \u0633\u062a\u062f \u0648\u0627\u0642\u0639 \u0634\u062f.<\/p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0632\u0646\u062f\u0647 \u0627\u0631\u0632<\/h2>\n<\/td>\n<\/tr>\n

306,490<\/td>\n\u062f\u0644\u0627\u0631<\/td>\n308,020<\/td>\n\u06cc\u0648\u0631\u0648<\/td>\n<\/tr>\n
307,220<\/td>\n\u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u062f\u0644\u0627\u0631<\/td>\n303,750<\/td>\n\u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u062f\u0644\u0627\u0631<\/a><\/td>\n<\/tr>\n
0<\/td>\n\u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0648\u0631\u0648<\/td>\n0<\/td>\n\u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0648\u0631\u0648<\/td>\n<\/tr>\n
355,530<\/td>\n\u067e\u0648\u0646\u062f<\/td>\n83,480<\/td>\n\u062f\u0631\u0647\u0645<\/td>\n<\/tr>\n
0<\/td>\n\u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u067e\u0648\u0646\u062f<\/td>\n0<\/td>\n\u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u067e\u0648\u0646\u062f<\/td>\n<\/tr>\n
0<\/td>\n\u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u062f\u0631\u0647\u0645<\/td>\n0<\/td>\n\u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u062f\u0631\u0647\u0645<\/td>\n<\/tr>\n
17,104<\/td>\n\u0644\u06cc\u0631<\/td>\n44,604<\/td>\n\u06cc\u0648\u0627\u0646<\/td>\n<\/tr>\n
0<\/td>\n\u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u0644\u06cc\u0631<\/td>\n0<\/td>\n\u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u0644\u06cc\u0631<\/td>\n<\/tr>\n
0<\/td>\n\u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0648\u0627\u0646<\/td>\n0<\/td>\n\u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0648\u0627\u0646<\/td>\n<\/tr>\n
216,070<\/td>\n\u06cc\u0646<\/td>\n <\/td>\n <\/td>\n<\/tr>\n
0<\/td>\n\u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0646<\/td>\n0<\/td>\n\u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0646<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n\n\n
\n \n
\n \n
\n
\n \n\n
<\/div>\n <\/div>\n
\n \n\n
<\/div>\n <\/div>\n
\n \n\n
<\/div>\n <\/div>\n
\n \n\n
<\/div>\n <\/div>\n
\n \n\n
<\/div>\n <\/div>\n <\/div>\n \n
\n
\n \n\n
<\/div>\n <\/div>\n
\n \n\n
<\/div>\n <\/div>\n
\n \n\n
<\/div>\n <\/div>\n
\n \n\n
<\/div>\n <\/div>\n
\n \n\n
<\/div>\n <\/div>\n <\/div>\n<\/div>\n \n\n
\n Rate this post<\/span>\n <\/div>\n <\/div>\n","protected":false},"excerpt":{"rendered":"

\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647 \u0633\u0627\u0639\u062a 14:33:01 \u0631\u0648\u0632 \u06f1\u06f4\u06f0\u06f1\/\u06f6\/\u06f2\u06f0 \u0628\u06cc\u0633\u062a \u0634\u0647\u0631\u06cc\u0648\u0631 \u0647\u0632\u0627\u0631 \u0648 \u0686\u0647\u0627\u0631\u0635\u062f \u0648 \u06cc\u06a9 \u0628\u0647 \u0634\u0631\u062d \u062c\u062f\u0648\u0644 \u0632\u06cc\u0631 \u0645\u0648\u0631\u062f \u062f\u0627\u062f \u0648 \u0633\u062a\u062f \u0648\u0627\u0642\u0639 \u0634\u062f. \u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0632\u0646\u062f\u0647 \u0627\u0631\u0632 306,490 \u062f\u0644\u0627\u0631 308,020 \u06cc\u0648\u0631\u0648 307,220 \u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u062f\u0644\u0627\u0631 303,750 \u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u062f\u0644\u0627\u0631 0 \u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0648\u0631\u0648 0 \u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0648\u0631\u0648 355,530 \u067e\u0648\u0646\u062f 83,480 \u062f\u0631\u0647\u0645 […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[1],"tags":[39,35,95,45,76,65,63,38,55,66,48,52,68,85,83,59,67,94,51,46,92,70,87,82,75,56,90,80,61,69,71,93,72,84,89,57,50,91,64,53,22,26,32,31,30,28,86,47,77,88,23,25,33,24,29,27,74,60,79,78,49,58,54,73,81,62],"class_list":["post-2894","post","type-post","status-publish","format-standard","hentry","category-1","tag-currency","tag-price","tag-95","tag-45","tag-76","tag-65","tag-63","tag-38","tag-55","tag-66","tag-48","tag-52","tag-68","tag-85","tag-83","tag-59","tag-67","tag-94","tag-51","tag-46","tag-92","tag-70","tag-87","tag-82","tag-75","tag-56","tag-90","tag-80","tag-61","tag-69","tag-71","tag-93","tag-72","tag-84","tag-89","tag-57","tag-50","tag-91","tag-64","tag-53","tag-22","tag-26","tag-32","tag-31","tag-30","tag-28","tag-86","tag-47","tag-77","tag-88","tag-23","tag-25","tag-33","tag-24","tag-29","tag-27","tag-74","tag-60","tag-79","tag-78","tag-49","tag-58","tag-54","tag-73","tag-81","tag-62"],"yoast_head":"\n\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647 - \u0642\u06cc\u0645\u062a \u0637\u0644\u0627<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/talakaran.com\/\u0646\u0631\u062e-\u0642\u06cc\u0645\u062a-\u0627\u0631\u0632-\u0627\u0645\u0631\u0648\u0632-2022-09-11-\u06cc\u06a9\u0634\u0646\u0628\u0647\/\" \/>\n<meta property=\"og:locale\" content=\"fa_IR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647\" \/>\n<meta property=\"og:description\" content=\"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647 \u0633\u0627\u0639\u062a 14:33:01 \u0631\u0648\u0632 \u06f1\u06f4\u06f0\u06f1\/\u06f6\/\u06f2\u06f0 \u0628\u06cc\u0633\u062a \u0634\u0647\u0631\u06cc\u0648\u0631 \u0647\u0632\u0627\u0631 \u0648 \u0686\u0647\u0627\u0631\u0635\u062f \u0648 \u06cc\u06a9 \u0628\u0647 \u0634\u0631\u062d \u062c\u062f\u0648\u0644 \u0632\u06cc\u0631 \u0645\u0648\u0631\u062f \u062f\u0627\u062f \u0648 \u0633\u062a\u062f \u0648\u0627\u0642\u0639 \u0634\u062f. \u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0632\u0646\u062f\u0647 \u0627\u0631\u0632 306,490 \u062f\u0644\u0627\u0631 308,020 \u06cc\u0648\u0631\u0648 307,220 \u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u062f\u0644\u0627\u0631 303,750 \u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u062f\u0644\u0627\u0631 0 \u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0648\u0631\u0648 0 \u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0648\u0631\u0648 355,530 \u067e\u0648\u0646\u062f 83,480 \u062f\u0631\u0647\u0645 […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/talakaran.com\/\u0646\u0631\u062e-\u0642\u06cc\u0645\u062a-\u0627\u0631\u0632-\u0627\u0645\u0631\u0648\u0632-2022-09-11-\u06cc\u06a9\u0634\u0646\u0628\u0647\/\" \/>\n<meta property=\"og:site_name\" content=\"\u0642\u06cc\u0645\u062a \u0637\u0644\u0627\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/talakaran\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-11T10:03:01+00:00\" \/>\n<meta name=\"author\" content=\"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@talakaran\" \/>\n<meta name=\"twitter:site\" content=\"@talakaran\" \/>\n<meta name=\"twitter:label1\" content=\"\u0646\u0648\u0634\u062a\u0647\u200c\u0634\u062f\u0647 \u0628\u062f\u0633\u062a\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/\"},\"author\":{\"name\":\"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646\",\"@id\":\"https:\/\/talakaran.com\/#\/schema\/person\/fa26d40d74389a026c23dfe9b4c0fbd2\"},\"headline\":\"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647\",\"datePublished\":\"2022-09-11T10:03:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/\"},\"wordCount\":2,\"publisher\":{\"@id\":\"https:\/\/talakaran.com\/#organization\"},\"keywords\":[\"currency\",\"price\",\"\u0622\u0628\u0627\u062f\u0627\u0646\",\"\u0622\u062e\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a\",\"\u0622\u0645\u0644\",\"\u0627\u0631\u0627\u06a9\",\"\u0627\u0631\u062f\u0628\u06cc\u0644\",\"\u0627\u0631\u0632\",\"\u0627\u0631\u0648\u0645\u06cc\u0647\",\"\u0627\u0633\u0644\u0627\u0645\u0634\u0647\u0631\",\"\u0627\u0635\u0641\u0647\u0627\u0646\",\"\u0627\u0647\u0648\u0627\u0632\",\"\u0628\u0627\u0628\u0644\",\"\u0628\u062c\u0646\u0648\u0631\u062f\",\"\u0628\u0631\u0648\u062c\u0631\u062f\",\"\u0628\u0646\u062f\u0631\u0639\u0628\u0627\u0633\",\"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646\",\"\u0628\u0648\u0634\u0647\u0631\",\"\u062a\u0628\u0631\u06cc\u0632\",\"\u062a\u0647\u0631\u0627\u0646\",\"\u062c\u06cc\u0631\u0641\u062a\",\"\u062e\u0631\u0645\u200c\u0622\u0628\u0627\u062f\",\"\u062e\u0645\u06cc\u0646\u06cc\u200c\u0634\u0647\u0631\",\"\u062e\u0648\u06cc\",\"\u062f\u0632\u0641\u0648\u0644\",\"\u0631\u0634\u062a\",\"\u0631\u0641\u0633\u0646\u062c\u0627\u0646\",\"\u0631\u06cc\",\"\u0632\u0627\u0647\u062f\u0627\u0646\",\"\u0632\u0646\u062c\u0627\u0646\",\"\u0633\u0627\u0631\u06cc\",\"\u0633\u0628\u0632\u0648\u0627\u0631\",\"\u0633\u0646\u0646\u062f\u062c\",\"\u0633\u06cc\u0631\u062c\u0627\u0646\",\"\u0634\u0647\u0631\u06a9\u0631\u062f\",\"\u0634\u0647\u0631\u06cc\u0627\u0631\",\"\u0634\u06cc\u0631\u0627\u0632\",\"\u0642\u0627\u0626\u0645\u200c\u0634\u0647\u0631\",\"\u0642\u0632\u0648\u06cc\u0646\",\"\u0642\u0645\",\"\u0642\u06cc\u0645\u062a\",\"\u0642\u06cc\u0645\u062a \u0622\u0646\u0644\u0627\u06cc\u0646\",\"\u0642\u06cc\u0645\u062a \u0627\u0645\u0631\u0648\u0632\",\"\u0642\u06cc\u0645\u062a \u0631\u0648\u0632\",\"\u0642\u06cc\u0645\u062a \u0632\u0646\u062f\u0647\",\"\u0642\u06cc\u0645\u062a \u0644\u062d\u0638\u0647 \u0627\u06cc\",\"\u0645\u0631\u0648\u062f\u0634\u062a\",\"\u0645\u0634\u0647\u062f\",\"\u0645\u0644\u0627\u0631\u062f\",\"\u0646\u062c\u0641\u200c\u0622\u0628\u0627\u062f\",\"\u0646\u0631\u062e\",\"\u0646\u0631\u062e \u0622\u0646\u0644\u0627\u06cc\u0646\",\"\u0646\u0631\u062e \u0627\u0645\u0631\u0648\u0632\",\"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a\",\"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0622\u0646\u0644\u0627\u06cc\u0646\",\"\u0646\u0631\u062e \u0644\u062d\u0638\u0647 \u0627\u06cc\",\"\u0646\u06cc\u0634\u0627\u0628\u0648\u0631\",\"\u0647\u0645\u062f\u0627\u0646\",\"\u067e\u0627\u06a9\u062f\u0634\u062a\",\"\u06a9\u0627\u0634\u0627\u0646\",\"\u06a9\u0631\u062c\",\"\u06a9\u0631\u0645\u0627\u0646\",\"\u06a9\u0631\u0645\u0627\u0646\u0634\u0627\u0647\",\"\u06af\u0631\u06af\u0627\u0646\",\"\u06af\u0646\u0628\u062f \u06a9\u0627\u0648\u0648\u0633\",\"\u06cc\u0632\u062f\"],\"articleSection\":[\"\u0642\u06cc\u0645\u062a\"],\"inLanguage\":\"fa-IR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/\",\"url\":\"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/\",\"name\":\"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647 - \u0642\u06cc\u0645\u062a \u0637\u0644\u0627\",\"isPartOf\":{\"@id\":\"https:\/\/talakaran.com\/#website\"},\"datePublished\":\"2022-09-11T10:03:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/#breadcrumb\"},\"inLanguage\":\"fa-IR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/talakaran.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/talakaran.com\/#website\",\"url\":\"https:\/\/talakaran.com\/\",\"name\":\"\u0642\u06cc\u0645\u062a \u062f\u0644\u0627\u0631 \u0642\u06cc\u0645\u062a \u0637\u0644\u0627 \u0642\u06cc\u0645\u062a \u0633\u06a9\u0647\",\"description\":\"\u0642\u06cc\u0645\u062a \u0637\u0644\u0627 \u062f\u0631 \u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646 \u0637\u0644\u0627\u0641\u0631\u0648\u0634\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646\",\"publisher\":{\"@id\":\"https:\/\/talakaran.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/talakaran.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fa-IR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/talakaran.com\/#organization\",\"name\":\"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646\",\"url\":\"https:\/\/talakaran.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fa-IR\",\"@id\":\"https:\/\/talakaran.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/talakaran.com\/wp-content\/uploads\/2020\/07\/\u0637\u0644\u0627-\u06a9\u0627\u0631\u0627\u0627\u0646-logo.jpg\",\"contentUrl\":\"https:\/\/talakaran.com\/wp-content\/uploads\/2020\/07\/\u0637\u0644\u0627-\u06a9\u0627\u0631\u0627\u0627\u0646-logo.jpg\",\"width\":350,\"height\":99,\"caption\":\"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646\"},\"image\":{\"@id\":\"https:\/\/talakaran.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/talakaran\",\"https:\/\/x.com\/talakaran\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/talakaran.com\/#\/schema\/person\/fa26d40d74389a026c23dfe9b4c0fbd2\",\"name\":\"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fa-IR\",\"@id\":\"https:\/\/talakaran.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5d3fd1eb19213af5cdebbffe0026b2a8509ca9a896f274cddecc5e81bd58e715?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5d3fd1eb19213af5cdebbffe0026b2a8509ca9a896f274cddecc5e81bd58e715?s=96&d=mm&r=g\",\"caption\":\"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646\"},\"sameAs\":[\"https:\/\/talakaran.com\"],\"url\":\"https:\/\/talakaran.com\/author\/talakaran\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647 - \u0642\u06cc\u0645\u062a \u0637\u0644\u0627","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/talakaran.com\/\u0646\u0631\u062e-\u0642\u06cc\u0645\u062a-\u0627\u0631\u0632-\u0627\u0645\u0631\u0648\u0632-2022-09-11-\u06cc\u06a9\u0634\u0646\u0628\u0647\/","og_locale":"fa_IR","og_type":"article","og_title":"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647","og_description":"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647 \u0633\u0627\u0639\u062a 14:33:01 \u0631\u0648\u0632 \u06f1\u06f4\u06f0\u06f1\/\u06f6\/\u06f2\u06f0 \u0628\u06cc\u0633\u062a \u0634\u0647\u0631\u06cc\u0648\u0631 \u0647\u0632\u0627\u0631 \u0648 \u0686\u0647\u0627\u0631\u0635\u062f \u0648 \u06cc\u06a9 \u0628\u0647 \u0634\u0631\u062d \u062c\u062f\u0648\u0644 \u0632\u06cc\u0631 \u0645\u0648\u0631\u062f \u062f\u0627\u062f \u0648 \u0633\u062a\u062f \u0648\u0627\u0642\u0639 \u0634\u062f. \u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0632\u0646\u062f\u0647 \u0627\u0631\u0632 306,490 \u062f\u0644\u0627\u0631 308,020 \u06cc\u0648\u0631\u0648 307,220 \u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u062f\u0644\u0627\u0631 303,750 \u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u062f\u0644\u0627\u0631 0 \u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0648\u0631\u0648 0 \u067e\u0627\u06cc\u06cc\u0646\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u06cc\u0648\u0631\u0648 355,530 \u067e\u0648\u0646\u062f 83,480 \u062f\u0631\u0647\u0645 […]","og_url":"https:\/\/talakaran.com\/\u0646\u0631\u062e-\u0642\u06cc\u0645\u062a-\u0627\u0631\u0632-\u0627\u0645\u0631\u0648\u0632-2022-09-11-\u06cc\u06a9\u0634\u0646\u0628\u0647\/","og_site_name":"\u0642\u06cc\u0645\u062a \u0637\u0644\u0627","article_publisher":"https:\/\/facebook.com\/talakaran","article_published_time":"2022-09-11T10:03:01+00:00","author":"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646","twitter_card":"summary_large_image","twitter_creator":"@talakaran","twitter_site":"@talakaran","twitter_misc":{"\u0646\u0648\u0634\u062a\u0647\u200c\u0634\u062f\u0647 \u0628\u062f\u0633\u062a":"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/#article","isPartOf":{"@id":"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/"},"author":{"name":"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646","@id":"https:\/\/talakaran.com\/#\/schema\/person\/fa26d40d74389a026c23dfe9b4c0fbd2"},"headline":"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647","datePublished":"2022-09-11T10:03:01+00:00","mainEntityOfPage":{"@id":"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/"},"wordCount":2,"publisher":{"@id":"https:\/\/talakaran.com\/#organization"},"keywords":["currency","price","\u0622\u0628\u0627\u062f\u0627\u0646","\u0622\u062e\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a","\u0622\u0645\u0644","\u0627\u0631\u0627\u06a9","\u0627\u0631\u062f\u0628\u06cc\u0644","\u0627\u0631\u0632","\u0627\u0631\u0648\u0645\u06cc\u0647","\u0627\u0633\u0644\u0627\u0645\u0634\u0647\u0631","\u0627\u0635\u0641\u0647\u0627\u0646","\u0627\u0647\u0648\u0627\u0632","\u0628\u0627\u0628\u0644","\u0628\u062c\u0646\u0648\u0631\u062f","\u0628\u0631\u0648\u062c\u0631\u062f","\u0628\u0646\u062f\u0631\u0639\u0628\u0627\u0633","\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","\u0628\u0648\u0634\u0647\u0631","\u062a\u0628\u0631\u06cc\u0632","\u062a\u0647\u0631\u0627\u0646","\u062c\u06cc\u0631\u0641\u062a","\u062e\u0631\u0645\u200c\u0622\u0628\u0627\u062f","\u062e\u0645\u06cc\u0646\u06cc\u200c\u0634\u0647\u0631","\u062e\u0648\u06cc","\u062f\u0632\u0641\u0648\u0644","\u0631\u0634\u062a","\u0631\u0641\u0633\u0646\u062c\u0627\u0646","\u0631\u06cc","\u0632\u0627\u0647\u062f\u0627\u0646","\u0632\u0646\u062c\u0627\u0646","\u0633\u0627\u0631\u06cc","\u0633\u0628\u0632\u0648\u0627\u0631","\u0633\u0646\u0646\u062f\u062c","\u0633\u06cc\u0631\u062c\u0627\u0646","\u0634\u0647\u0631\u06a9\u0631\u062f","\u0634\u0647\u0631\u06cc\u0627\u0631","\u0634\u06cc\u0631\u0627\u0632","\u0642\u0627\u0626\u0645\u200c\u0634\u0647\u0631","\u0642\u0632\u0648\u06cc\u0646","\u0642\u0645","\u0642\u06cc\u0645\u062a","\u0642\u06cc\u0645\u062a \u0622\u0646\u0644\u0627\u06cc\u0646","\u0642\u06cc\u0645\u062a \u0627\u0645\u0631\u0648\u0632","\u0642\u06cc\u0645\u062a \u0631\u0648\u0632","\u0642\u06cc\u0645\u062a \u0632\u0646\u062f\u0647","\u0642\u06cc\u0645\u062a \u0644\u062d\u0638\u0647 \u0627\u06cc","\u0645\u0631\u0648\u062f\u0634\u062a","\u0645\u0634\u0647\u062f","\u0645\u0644\u0627\u0631\u062f","\u0646\u062c\u0641\u200c\u0622\u0628\u0627\u062f","\u0646\u0631\u062e","\u0646\u0631\u062e \u0622\u0646\u0644\u0627\u06cc\u0646","\u0646\u0631\u062e \u0627\u0645\u0631\u0648\u0632","\u0646\u0631\u062e \u0642\u06cc\u0645\u062a","\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0622\u0646\u0644\u0627\u06cc\u0646","\u0646\u0631\u062e \u0644\u062d\u0638\u0647 \u0627\u06cc","\u0646\u06cc\u0634\u0627\u0628\u0648\u0631","\u0647\u0645\u062f\u0627\u0646","\u067e\u0627\u06a9\u062f\u0634\u062a","\u06a9\u0627\u0634\u0627\u0646","\u06a9\u0631\u062c","\u06a9\u0631\u0645\u0627\u0646","\u06a9\u0631\u0645\u0627\u0646\u0634\u0627\u0647","\u06af\u0631\u06af\u0627\u0646","\u06af\u0646\u0628\u062f \u06a9\u0627\u0648\u0648\u0633","\u06cc\u0632\u062f"],"articleSection":["\u0642\u06cc\u0645\u062a"],"inLanguage":"fa-IR"},{"@type":"WebPage","@id":"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/","url":"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/","name":"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647 - \u0642\u06cc\u0645\u062a \u0637\u0644\u0627","isPartOf":{"@id":"https:\/\/talakaran.com\/#website"},"datePublished":"2022-09-11T10:03:01+00:00","breadcrumb":{"@id":"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/#breadcrumb"},"inLanguage":"fa-IR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/talakaran.com\/%d9%86%d8%b1%d8%ae-%d9%82%db%8c%d9%85%d8%aa-%d8%a7%d8%b1%d8%b2-%d8%a7%d9%85%d8%b1%d9%88%d8%b2-2022-09-11-%db%8c%da%a9%d8%b4%d9%86%d8%a8%d9%87\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/talakaran.com\/"},{"@type":"ListItem","position":2,"name":"\u0646\u0631\u062e \u0642\u06cc\u0645\u062a \u0627\u0631\u0632 \u0627\u0645\u0631\u0648\u0632 2022\/09\/11 \u06cc\u06a9\u0634\u0646\u0628\u0647"}]},{"@type":"WebSite","@id":"https:\/\/talakaran.com\/#website","url":"https:\/\/talakaran.com\/","name":"\u0642\u06cc\u0645\u062a \u062f\u0644\u0627\u0631 \u0642\u06cc\u0645\u062a \u0637\u0644\u0627 \u0642\u06cc\u0645\u062a \u0633\u06a9\u0647","description":"\u0642\u06cc\u0645\u062a \u0637\u0644\u0627 \u062f\u0631 \u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646 \u0637\u0644\u0627\u0641\u0631\u0648\u0634\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646","publisher":{"@id":"https:\/\/talakaran.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/talakaran.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fa-IR"},{"@type":"Organization","@id":"https:\/\/talakaran.com\/#organization","name":"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646","url":"https:\/\/talakaran.com\/","logo":{"@type":"ImageObject","inLanguage":"fa-IR","@id":"https:\/\/talakaran.com\/#\/schema\/logo\/image\/","url":"https:\/\/talakaran.com\/wp-content\/uploads\/2020\/07\/\u0637\u0644\u0627-\u06a9\u0627\u0631\u0627\u0627\u0646-logo.jpg","contentUrl":"https:\/\/talakaran.com\/wp-content\/uploads\/2020\/07\/\u0637\u0644\u0627-\u06a9\u0627\u0631\u0627\u0627\u0646-logo.jpg","width":350,"height":99,"caption":"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646"},"image":{"@id":"https:\/\/talakaran.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/talakaran","https:\/\/x.com\/talakaran"]},{"@type":"Person","@id":"https:\/\/talakaran.com\/#\/schema\/person\/fa26d40d74389a026c23dfe9b4c0fbd2","name":"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646","image":{"@type":"ImageObject","inLanguage":"fa-IR","@id":"https:\/\/talakaran.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5d3fd1eb19213af5cdebbffe0026b2a8509ca9a896f274cddecc5e81bd58e715?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5d3fd1eb19213af5cdebbffe0026b2a8509ca9a896f274cddecc5e81bd58e715?s=96&d=mm&r=g","caption":"\u0637\u0644\u0627\u06a9\u0627\u0631\u0627\u0646"},"sameAs":["https:\/\/talakaran.com"],"url":"https:\/\/talakaran.com\/author\/talakaran\/"}]}},"_links":{"self":[{"href":"https:\/\/talakaran.com\/wp-json\/wp\/v2\/posts\/2894","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/talakaran.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/talakaran.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/talakaran.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/talakaran.com\/wp-json\/wp\/v2\/comments?post=2894"}],"version-history":[{"count":1,"href":"https:\/\/talakaran.com\/wp-json\/wp\/v2\/posts\/2894\/revisions"}],"predecessor-version":[{"id":2895,"href":"https:\/\/talakaran.com\/wp-json\/wp\/v2\/posts\/2894\/revisions\/2895"}],"wp:attachment":[{"href":"https:\/\/talakaran.com\/wp-json\/wp\/v2\/media?parent=2894"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/talakaran.com\/wp-json\/wp\/v2\/categories?post=2894"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/talakaran.com\/wp-json\/wp\/v2\/tags?post=2894"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}