                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-intablebody
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_TABLE_BODY = 'insertion-mode-in-table-body';

	/**
	 * In row insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-inrow
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_ROW = 'insertion-mode-in-row';

	/**
	 * In cell insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-incell
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_CELL = 'insertion-mode-in-cell';

	/**
	 * In select insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-inselect
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_SELECT = 'insertion-mode-in-select';

	/**
	 * In select in table insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-inselectintable
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_SELECT_IN_TABLE = 'insertion-mode-in-select-in-table';

	/**
	 * In template insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-intemplate
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_TEMPLATE = 'insertion-mode-in-template';

	/**
	 * After body insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-afterbody
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_AFTER_BODY = 'insertion-mode-after-body';

	/**
	 * In frameset insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-inframeset
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_FRAMESET = 'insertion-mode-in-frameset';

	/**
	 * After frameset insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-afterframeset
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_AFTER_FRAMESET = 'insertion-mode-after-frameset';

	/**
	 * After after body insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#the-after-after-body-insertion-mode
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_AFTER_AFTER_BODY = 'insertion-mode-after-after-body';

	/**
	 * After after frameset insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#the-after-after-frameset-insertion-mode
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_AFTER_AFTER_FRAMESET = 'insertion-mode-after-after-frameset';

	/**
	 * The stack of template insertion modes.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#the-insertion-mode:stack-of-template-insertion-modes
	 *
	 * @var array<string>
	 */
	public $stack_of_template_insertion_modes = array();

	/**
	 * Tracks open elements while scanning HTML.
	 *
	 * This property is initialized in the constructor and never null.
	 *
	 * @since 6.4.0
	 *
	 * @see https://html.spec.whatwg.org/#stack-of-open-elements
	 *
	 * @var WP_HTML_Open_Elements
	 */
	public $stack_of_open_elements;

	/**
	 * Tracks open formatting elements, used to handle mis-nested formatting element tags.
	 *
	 * This property is initialized in the constructor and never null.
	 *
	 * @since 6.4.0
	 *
	 * @see https://html.spec.whatwg.org/#list-of-active-formatting-elements
	 *
	 * @var WP_HTML_Active_Formatting_Elements
	 */
	public $active_formatting_elements;

	/**
	 * Refers to the currently-matched tag, if any.
	 *
	 * @since 6.4.0
	 *
	 * @var WP_HTML_Token|null
	 */
	public $current_token = null;

	/**
	 * Tree construction insertion mode.
	 *
	 * @since 6.4.0
	 *
	 * @see https://html.spec.whatwg.org/#insertion-mode
	 *
	 * @var string
	 */
	public $insertion_mode = self::INSERTION_MODE_INITIAL;

	/**
	 * Context node initializing fragment parser, if created as a fragment parser.
	 *
	 * @since 6.4.0
	 * @deprecated 6.8.0 WP_HTML_Processor tracks the context_node internally.
	 *
	 * @var null
	 */
	public $context_node = null;

	/**
	 * The recognized encoding of the input byte stream.
	 *
	 * > The stream of code points that comprises the input to the tokenization
	 * > stage will be initially seen by the user agent as a stream of bytes
	 * > (typically coming over the network or from the local file system).
	 * > The bytes encode the actual characters according to a particular character
	 * > encoding, which the user agent uses to decode the bytes into characters.
	 *
	 * @since 6.7.0
	 *
	 * @var string|null
	 */
	public $encoding = null;

	/**
	 * The parser's confidence in the input encoding.
	 *
	 * > When the HTML parser is decoding an input byte stream, it uses a character
	 * > encoding and a confidence. The confidence is either tentative, certain, or
	 * > irrelevant. The encoding used, and whether the confidence in that encoding
	 * > is tentative or certain, is used during the parsing to determine whether to
	 * > change the encoding. If no encoding is necessary, e.g. because the parser is
	 * > operating on a Unicode stream and doesn't have to use a character encoding
	 * > at all, then the confidence is irrelevant.
	 *
	 * @since 6.7.0
	 *
	 * @var string
	 */
	public $encoding_confidence = 'tentative';

	/**
	 * HEAD element pointer.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/multipage/parsing.html#head-element-pointer
	 *
	 * @var WP_HTML_Token|null
	 */
	public $head_element = null;

	/**
	 * FORM element pointer.
	 *
	 * > points to the last form element that was opened and whose end tag has
	 * > not yet been seen. It is used to make form controls associate with
	 * > forms in the face of dramatically bad markup, for historical reasons.
	 * > It is ignored inside template elements.
	 *
	 * @todo This may be invalidated by a seek operation.
	 *
	 * @see https://html.spec.whatwg.org/#form-element-pointer
	 *
	 * @since 6.7.0
	 *
	 * @var WP_HTML_Token|null
	 */
	public $form_element = null;

	/**
	 * The frameset-ok flag indicates if a `FRAMESET` element is allowed in the current state.
	 *
	 * > The frameset-ok flag is set to "ok" when the parser is created. It is set to "not ok" after certain tokens are seen.
	 *
	 * @since 6.4.0
	 *
	 * @see https://html.spec.whatwg.org/#frameset-ok-flag
	 *
	 * @var bool
	 */
	public $frameset_ok = true;

	/**
	 * Constructor - creates a new and empty state value.
	 *
	 * @since 6.4.0
	 *
	 * @see WP_HTML_Processor
	 */
	public function __construct() {
		$this->stack_of_open_elements     = new WP_HTML_Open_Elements();
		$this->active_formatting_elements = new WP_HTML_Active_Formatting_Elements();
	}
}
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//vasepatnactka.cz/main-sitemap.xsl"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd http://www.google.com/schemas/sitemap-image/1.1 http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<url>
		<loc>https://vasepatnactka.cz/2026/04/16/praha-15-resi-parkovani-devet-konkretnich-kroku-ktere-pomohou-ulevit-sidlistim/</loc>
		<lastmod>2026-04-16T07:58:29+00:00</lastmod>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/detail2.tif</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/BSG-1.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/04/10/dopis-starosty-pozar-radnice-a-navrat-uradu-do-provozu/</loc>
		<lastmod>2026-04-10T15:12:27+00:00</lastmod>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/IMG_9385-scaled.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/IMG_9391-scaled.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/IMG_9397-scaled.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/IMG_9395-scaled.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/IMG_9402-scaled.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/IMG_9403-1-scaled.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/04/08/velikonoce-na-patnactce-prinesly-jarni-atmosferu-a-radost-detem-i-dospelym/</loc>
		<lastmod>2026-04-08T14:17:06+00:00</lastmod>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/WhatsApp-Image-2026-04-07-at-12.50.06-1.jpeg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/WhatsApp-Image-2026-04-07-at-12.50.05.jpeg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/WhatsApp-Image-2026-04-07-at-12.50.04.jpeg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/WhatsApp-Image-2026-04-07-at-12.50.03-2.jpeg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/04/WhatsApp-Image-2026-04-07-at-12.50.03-1.jpeg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/04/03/komentar-zadrzovani-srazkovych-vod-v-krajine-pro-lepsi-klima-a-dokonceni-protipovodnovych-opatreni-v-hostivari-prosazujeme-stale-nejen-po-povodnich/</loc>
		<lastmod>2026-04-07T11:41:38+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/03/30/mista-kolem-kterych-chodime-ale-nezname-jejich-pribeh-na-kacabce/</loc>
		<lastmod>2026-03-30T09:25:56+00:00</lastmod>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/03/Plan-sklepa-na-pivo-z-roku-1920-kopie-1.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/03/1982_kacabka-1.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/03/Snimek-obrazovky-2026-03-30-v-11.19.54.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/03/Snimek-obrazovky-2026-03-30-v-11.19.45.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/03/23/park-u-hasicarny-mecholupy-hledaji-rovnovahu-mezi-pameti-a-zivotem/</loc>
		<lastmod>2026-03-23T13:37:32+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/02/27/sileny-plan-piratu-a-zelenych/</loc>
		<lastmod>2026-03-23T09:05:11+00:00</lastmod>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/01/panel2.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/03/16/odklon-tranzitni-dopravy-i-mistni-korzo-na-ulici-hornomecholupske-se-blizi-stale-ale-neni-vyhrano/</loc>
		<lastmod>2026-03-16T09:55:04+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/03/13/stara-hasicarna-ozila-umenim-galerie-u-botice-hosti-vystavu-zaku-zus/</loc>
		<lastmod>2026-03-13T12:10:25+00:00</lastmod>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/03/e08330ee-228a-4af2-96ce-761309911759.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/03/4da02034-13cf-4ce8-9f5c-9d0e26d76444.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/03/9ea85c4c-c985-4e07-a57b-16b3f835f271.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/03/a6134d79-cf5c-48b4-84a8-04dd1ed54ea2.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/03/09/ruze-a-kolacky-pro-radost-klienti-socialnich-sluzeb-dostali-k-mdz-sladke-prani-jara/</loc>
		<lastmod>2026-03-09T10:35:33+00:00</lastmod>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/03/267c010a-3895-405e-aa5d-635ee7a5076e.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/03/ac615683-29e2-4fce-8ebe-c283728218bf.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/03/cbad6bf2-a52a-4e9a-bffe-3f5446811511.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/02/26/lorem-ipsum-dolor-sit-amet/</loc>
		<lastmod>2026-03-05T15:29:07+00:00</lastmod>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/01/576994011_1228221936026254_8775095728216359609_n-1.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/01/580779039_1228221882692926_5780114403168751954_n.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/01/molo_viz.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/01/559415674_1218837466964701_5939881889488245689_n.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/02/23/projekt-oc-vivo-dlouha-jednani-prinesla-ochranu-zelene/</loc>
		<lastmod>2026-03-02T00:49:32+00:00</lastmod>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/02/pudorys-pod-vivem.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/02/24/chodniky-pred-a-po-rok-oprav-ktery-zmenil-patnactku/</loc>
		<lastmod>2026-03-02T00:49:18+00:00</lastmod>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/02/Image.ashx_.jpeg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/02/Image.ashx-2.jpeg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/02/Snimek-obrazovky-2026-02-16-v-11.35.59.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/2026/02/25/komentar-zlepseni-parkovani-je-slozity-proces-ktery-v-praze-nema-na-ruzich-ustlano/</loc>
		<lastmod>2026-03-02T00:49:05+00:00</lastmod>
		<image:image>
			<image:loc>https://vasepatnactka.cz/wp-content/uploads/2026/02/Parkovani2.png</image:loc>
		</image:image>
	</url>
</urlset>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->