blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
616
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
112
| license_type
stringclasses 2
values | repo_name
stringlengths 5
115
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 777
values | visit_date
timestamp[us]date 2015-08-06 10:31:46
2023-09-06 10:44:38
| revision_date
timestamp[us]date 1970-01-01 02:38:32
2037-05-03 13:00:00
| committer_date
timestamp[us]date 1970-01-01 02:38:32
2023-09-06 01:08:06
| github_id
int64 4.92k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us]date 2012-06-04 01:52:49
2023-09-14 21:59:50
⌀ | gha_created_at
timestamp[us]date 2008-05-22 07:58:19
2023-08-21 12:35:19
⌀ | gha_language
stringclasses 149
values | src_encoding
stringclasses 26
values | language
stringclasses 1
value | is_vendor
bool 2
classes | is_generated
bool 2
classes | length_bytes
int64 3
10.2M
| extension
stringclasses 188
values | content
stringlengths 3
10.2M
| authors
listlengths 1
1
| author_id
stringlengths 1
132
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fd5344b926e350d8600958ffe81b5cb0bb28003e | 942ee5e8d54e8ebe9c5c841fbfdd1da652946944 | /2001-2500/2047.Number of Valid Words in a Sentence.py | 61409d08dd04438bf07ff937138d7d7ef84c61dc | []
| no_license | kaiwensun/leetcode | 0129c174457f32887fbca078fb448adce46dd89d | 6b607f4aae3a4603e61f2e2b7480fdfba1d9b947 | refs/heads/master | 2023-08-31T07:30:50.459062 | 2023-08-27T07:59:16 | 2023-08-27T07:59:16 | 57,526,914 | 69 | 9 | null | 2023-08-20T06:34:41 | 2016-05-01T05:37:29 | Python | UTF-8 | Python | false | false | 751 | py | class Solution:
def countValidWords(self, sentence: str) -> int:
res = 0
def test(word):
if word[-1].isdigit() or word[-1] == '-':
return False
for i, c in enumerate(word[:-1]):
if not ('a' <= c <= 'z' or c == '-'):
return False
hyphon = word.find('-')
if hyphon != -1:
if word.count('-') > 1:
return False
if hyphon == 0 or hyphon == len(word) - 1:
return False
if word[-1] in '!,.':
if len(word) > 1 and word[-2] == '-':
return False
return True
return sum(map(test, sentence.split()))
| [
"[email protected]"
]
| |
18478bb44f33657f03bdf040d15e4e64e04aa750 | 5aca02672a97255956edb21f50de2854e62f6210 | /Projeto/carrinho.py | 3093c1f02058d6a763d8a19d4d1561b9eeec646f | []
| no_license | Pedro-H-Castoldi/descobrindo_Python | ea54a75e577a85fdc1e7284643447fadd950ba6e | 287290c6ee8b34142d5e7c27cdc7b2edebf23819 | refs/heads/master | 2020-09-04T17:39:11.514124 | 2020-04-27T15:55:15 | 2020-04-27T15:55:15 | 219,834,848 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,395 | py | import cliente
from produto import Produto
from compra import Compra
class Carrinho:
def __init__(self):
self.__l_carrinho = []
@property
def l_carrinho(self):
return self.__l_carrinho
@property
def cliente(self):
return self.__cliente
def conferir_cliente(self):
c_cliente = str(input('Insira o nome completo do cliente: ')).title()
c_cliente = cliente.Cliente.cliente_dados(c_cliente)
if c_cliente:
self.__cliente = c_cliente
self.encher_carrinho()
def encher_carrinho(self):
self.__l_carrinho.clear()
while True:
c_produto = str(input('Insira o nome do produto: ')).title()
c_produto = Produto.produto_dados(c_produto)
Produto.ver_estoque(c_produto)
if c_produto:
if c_produto.estoque:
while True:
cont = 0
quant = int(input(f'Quantidade de {c_produto.nome} X {c_produto.quant} : '))
if quant > 0 and c_produto.quant >= quant:
while cont < quant:
cont += 1
self.l_carrinho.append(c_produto)
break
elif quant <= 0:
print('Insira uma quantidade válida.')
else:
print(f'A quantidade pedida é maior que a quantidade em estoque.')
print(f'O produto {c_produto.nome} tem em estoque {c_produto.quant} unidade(s).')
op = int(input(f'1- Tentar novamente | 0- Cancelar: '))
if op != 1:
break
else:
print('Produto faltando.')
if not self.l_carrinho:
op = int(input('1- Continuar comprando | 0- Sair: '))
if op == 0:
break
else:
op = int(input('1- Continuar Comprando | 2- Ir para o Caixa | 0- Desfazer Carrinho: '))
if op == 2:
comprar = Compra(self)
comprar.comprar()
break
elif op == 0:
self.l_carrinho.clear()
break
| [
"[email protected]"
]
| |
06e79f4fad2a731cc1739d26a7409b37dde32769 | ee974d693ca4c4156121f8cb385328b52eaac07c | /env/share/doc/networkx-2.3/examples/graph/plot_erdos_renyi.py | fac52504b6282d6fbd3e5053ad050c7eb81c27b2 | [
"BSD-3-Clause"
]
| permissive | ngonhi/Attendance_Check_System_with_Face_Recognition | f4531cc4dee565d0e45c02217f73f3eda412b414 | 92ff88cbc0c740ad48e149033efd38137c9be88d | refs/heads/main | 2023-03-12T07:03:25.302649 | 2021-02-26T15:37:33 | 2021-02-26T15:37:33 | 341,493,686 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 128 | py | version https://git-lfs.github.com/spec/v1
oid sha256:52554e74245d7822f751aeac81b4fc199ee16f088cc89c0e0df4143f9aa34b7c
size 973
| [
"Nqk180998!"
]
| Nqk180998! |
606c5dd07fdcaf37ce7afc906c9394115452de74 | 58f38f1d69d4bfc650ad18e0045c36ae29c9d84a | /Django基础部分代码/chapter04/orm_intro_demo/book/models.py | f9d8ccf147cc08f68a92fa89d2d320b01ccbd649 | []
| no_license | zjf201811/DjangoWebProject | 0670c61b89387901089bf67cf2423d9341f69913 | fab15784fb326ba4517951e180418ea54de03afe | refs/heads/master | 2020-04-18T12:03:08.798484 | 2019-05-06T03:59:46 | 2019-05-06T03:59:46 | 167,522,193 | 3 | 1 | null | null | null | null | UTF-8 | Python | false | false | 927 | py | from django.db import models
# 如果要将一个普通的类变成一个可以映射到数据库中的ORM模型
# 那么必须要将父类设置为models.Model或者他的子类
class Book(models.Model):
# 1. id:int类型,是自增长的。
id = models.AutoField(primary_key=True)
# 2. name:varchar(100),图书的名字
name = models.CharField(max_length=100,null=False)
# 3. author:varchar(100),图书的作者
author = models.CharField(max_length=100,null=False)
# 4. price:float,图书的价格
price = models.FloatField(null=False,default=0)
class Publisher(models.Model):
name = models.CharField(max_length=100,null=False)
address = models.CharField(max_length=100,null=False)
# 1. 使用makemigrations生成迁移脚本文件
# python manage.py makemigrations
# 2. 使用migrate将新生成的迁移脚本文件映射到数据库中
# python manage.py migrate | [
"[email protected]"
]
| |
7fcbc5d0f076d7dc308177281f13613842aee435 | 3d91b4f3ac42056b1a8205b1f5a62b5ca05ded43 | /expences_tracker/expences_tracker/asgi.py | 493e3e68aa4b22d3960adb960d7b5cb825e3e1da | []
| no_license | olgayordanova/Python_Web | be34027a7755d5c178164995edb25f173a7fcdb4 | 3dfc6df65bffb109d5e26e9d1a496158b196c62f | refs/heads/main | 2023-05-31T03:54:29.515864 | 2021-07-09T11:29:14 | 2021-07-09T11:29:14 | 373,501,975 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 425 | py | """
ASGI config for expences_tracker project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'expences_tracker.settings')
application = get_asgi_application()
| [
"[email protected]"
]
| |
0577c21f81b162c1e5ff6065204cee92f06948df | 2626f6e6803c8c4341d01f57228a0fe117e3680b | /students/rmart300/lesson06_testing/water-regulation/decider.py | 2eb9b68c36c9f1fdd19733e2dd733124b51d7852 | []
| no_license | kmsnyde/SP_Online_Course2_2018 | 9e59362da253cdec558e1c2f39221c174d6216f3 | 7fe8635b47d4792a8575e589797260ad0a2b027e | refs/heads/master | 2020-03-19T17:15:03.945523 | 2018-09-05T22:28:55 | 2018-09-05T22:28:55 | 136,750,231 | 0 | 0 | null | 2018-06-09T19:01:52 | 2018-06-09T19:01:51 | null | UTF-8 | Python | false | false | 3,167 | py | """
Encapsulates decision making in the water-regulation module
"""
class Decider(object):
"""
Encapsulates decision making in the water-regulation module
"""
def __init__(self, target_height, margin):
"""
Create a new decider instance for this tank.
:param target_height: the target height for liquid in this tank
:param margin: the margin of liquid above and below the target height for
which the pump should not turn on. Ex: .05 represents a
5% margin above and below the target_height.
"""
self.target_height = target_height
self.margin = margin
def decide(self, current_height, current_action, actions):
"""
Decide a new action for the pump, given the current height of liquid in the
tank and the current action of the pump.
Note that the new action for the pump MAY be the same as the current action
of the pump.
The *decide* method shall obey the following behaviors:
1. If the pump is off and the height is below the margin region, then the
pump should be turned to PUMP_IN.
2. If the pump is off and the height is above the margin region, then the
pump should be turned to PUMP_OUT.
3. If the pump is off and the height is within the margin region or on
the exact boundary of the margin region, then the pump shall remain at
PUMP_OFF.
4. If the pump is performing PUMP_IN and the height is above the target
height, then the pump shall be turned to PUMP_OFF, otherwise the pump
shall remain at PUMP_IN.
5. If the pump is performing PUMP_OUT and the height is below the target
height, then the pump shall be turned to PUMP_OFF, otherwise, the pump
shall remain at PUMP_OUT.
:param current_height: the current height of liquid in the tank
:param current_action: the current action of the pump
:param actions: a dictionary containing the keys 'PUMP_IN', 'PUMP_OFF',
and 'PUMP_OUT'
:return: The new action for the pump: one of actions['PUMP_IN'], actions['PUMP_OUT'],
actions['PUMP_OFF']
"""
if current_action == actions['PUMP_OFF']:
if current_height < self.target_height - self.margin:
next_action = actions['PUMP_IN']
elif current_height > self.target_height + self.margin:
next_action = actions['PUMP_OUT']
else:
next_action = actions['PUMP_OFF']
elif current_action == actions['PUMP_IN']:
if current_height > self.target_height:
next_action = actions['PUMP_OFF']
else:
next_action = actions['PUMP_IN']
else:
if current_height < self.target_height:
next_action = actions['PUMP_OFF']
else:
next_action = actions['PUMP_OUT']
return next_action
| [
"[email protected]"
]
| |
f64ad10e4891ecd5d12b68ca45714966f1a8b852 | 1cc17b2eb1c885389126299602dbaa3bbd1e6dd7 | /liaoxuefeng_python/base/demo09.py | 0db64ffc3cdfddd6f88c8a49b443f24fc835d0c8 | []
| no_license | shulu/python_note | e611093ff2af321fbc889167424574b214052b44 | 93b101a1723d2d47b435a25e81e447f0d5d95022 | refs/heads/master | 2021-01-02T22:47:53.717930 | 2019-03-26T08:55:48 | 2019-03-26T08:55:48 | 99,391,822 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 237 | py | # -*- coding: utf-8 -*-
def triangles():
L=[1]
while True:
yield L
L = [1] + [ L[x-1] + L[x] for x in range(1,len(L)) ] + [1]
n = 0
for t in triangles():
print(t)
n = n + 1
if n == 10:
break
| [
"[email protected]"
]
| |
86b63a5fdae231a294b699599470adc4a1eaad55 | d094ba0c8a9b1217fbf014aa79a283a49aabe88c | /env/lib/python3.6/site-packages/sklearn/model_selection/_split.py | 2eccb50fcc9769222f8d5adfa50a098a6317079d | [
"Apache-2.0"
]
| permissive | Raniac/NEURO-LEARN | d9274e0baadd97bb02da54bdfcf6ca091fc1c703 | 3c3acc55de8ba741e673063378e6cbaf10b64c7a | refs/heads/master | 2022-12-25T23:46:54.922237 | 2020-09-06T03:15:14 | 2020-09-06T03:15:14 | 182,013,100 | 9 | 2 | Apache-2.0 | 2022-12-09T21:01:00 | 2019-04-18T03:57:00 | CSS | UTF-8 | Python | false | false | 82,452 | py | """
The :mod:`sklearn.model_selection._split` module includes classes and
functions to split the data based on a preset strategy.
"""
# Author: Alexandre Gramfort <[email protected]>,
# Gael Varoquaux <[email protected]>,
# Olivier Grisel <[email protected]>
# Raghav RV <[email protected]>
# License: BSD 3 clause
from __future__ import print_function
from __future__ import division
import warnings
from itertools import chain, combinations
from math import ceil, floor
import numbers
from abc import ABCMeta, abstractmethod
import numpy as np
from ..utils import indexable, check_random_state, safe_indexing
from ..utils.validation import _num_samples, column_or_1d
from ..utils.validation import check_array
from ..utils.multiclass import type_of_target
from ..externals.six import with_metaclass
from ..externals.six.moves import zip
from ..utils.fixes import signature, comb
from ..utils.fixes import _Iterable as Iterable
from ..base import _pprint
__all__ = ['BaseCrossValidator',
'KFold',
'GroupKFold',
'LeaveOneGroupOut',
'LeaveOneOut',
'LeavePGroupsOut',
'LeavePOut',
'RepeatedStratifiedKFold',
'RepeatedKFold',
'ShuffleSplit',
'GroupShuffleSplit',
'StratifiedKFold',
'StratifiedShuffleSplit',
'PredefinedSplit',
'train_test_split',
'check_cv']
NSPLIT_WARNING = (
"You should specify a value for 'n_splits' instead of relying on the "
"default value. The default value will change from 3 to 5 "
"in version 0.22.")
CV_WARNING = (
"You should specify a value for 'cv' instead of relying on the "
"default value. The default value will change from 3 to 5 "
"in version 0.22.")
class BaseCrossValidator(with_metaclass(ABCMeta)):
"""Base class for all cross-validators
Implementations must define `_iter_test_masks` or `_iter_test_indices`.
"""
def __init__(self):
# We need this for the build_repr to work properly in py2.7
# see #6304
pass
def split(self, X, y=None, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
y : array-like, of length n_samples
The target variable for supervised learning problems.
groups : array-like, with shape (n_samples,), optional
Group labels for the samples used while splitting the dataset into
train/test set.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
"""
X, y, groups = indexable(X, y, groups)
indices = np.arange(_num_samples(X))
for test_index in self._iter_test_masks(X, y, groups):
train_index = indices[np.logical_not(test_index)]
test_index = indices[test_index]
yield train_index, test_index
# Since subclasses must implement either _iter_test_masks or
# _iter_test_indices, neither can be abstract.
def _iter_test_masks(self, X=None, y=None, groups=None):
"""Generates boolean masks corresponding to test sets.
By default, delegates to _iter_test_indices(X, y, groups)
"""
for test_index in self._iter_test_indices(X, y, groups):
test_mask = np.zeros(_num_samples(X), dtype=np.bool)
test_mask[test_index] = True
yield test_mask
def _iter_test_indices(self, X=None, y=None, groups=None):
"""Generates integer indices corresponding to test sets."""
raise NotImplementedError
@abstractmethod
def get_n_splits(self, X=None, y=None, groups=None):
"""Returns the number of splitting iterations in the cross-validator"""
def __repr__(self):
return _build_repr(self)
class LeaveOneOut(BaseCrossValidator):
"""Leave-One-Out cross-validator
Provides train/test indices to split data in train/test sets. Each
sample is used once as a test set (singleton) while the remaining
samples form the training set.
Note: ``LeaveOneOut()`` is equivalent to ``KFold(n_splits=n)`` and
``LeavePOut(p=1)`` where ``n`` is the number of samples.
Due to the high number of test sets (which is the same as the
number of samples) this cross-validation method can be very costly.
For large datasets one should favor :class:`KFold`, :class:`ShuffleSplit`
or :class:`StratifiedKFold`.
Read more in the :ref:`User Guide <cross_validation>`.
Examples
--------
>>> from sklearn.model_selection import LeaveOneOut
>>> X = np.array([[1, 2], [3, 4]])
>>> y = np.array([1, 2])
>>> loo = LeaveOneOut()
>>> loo.get_n_splits(X)
2
>>> print(loo)
LeaveOneOut()
>>> for train_index, test_index in loo.split(X):
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
... print(X_train, X_test, y_train, y_test)
TRAIN: [1] TEST: [0]
[[3 4]] [[1 2]] [2] [1]
TRAIN: [0] TEST: [1]
[[1 2]] [[3 4]] [1] [2]
See also
--------
LeaveOneGroupOut
For splitting the data according to explicit, domain-specific
stratification of the dataset.
GroupKFold: K-fold iterator variant with non-overlapping groups.
"""
def _iter_test_indices(self, X, y=None, groups=None):
return range(_num_samples(X))
def get_n_splits(self, X, y=None, groups=None):
"""Returns the number of splitting iterations in the cross-validator
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
y : object
Always ignored, exists for compatibility.
groups : object
Always ignored, exists for compatibility.
Returns
-------
n_splits : int
Returns the number of splitting iterations in the cross-validator.
"""
if X is None:
raise ValueError("The 'X' parameter should not be None.")
return _num_samples(X)
class LeavePOut(BaseCrossValidator):
"""Leave-P-Out cross-validator
Provides train/test indices to split data in train/test sets. This results
in testing on all distinct samples of size p, while the remaining n - p
samples form the training set in each iteration.
Note: ``LeavePOut(p)`` is NOT equivalent to
``KFold(n_splits=n_samples // p)`` which creates non-overlapping test sets.
Due to the high number of iterations which grows combinatorically with the
number of samples this cross-validation method can be very costly. For
large datasets one should favor :class:`KFold`, :class:`StratifiedKFold`
or :class:`ShuffleSplit`.
Read more in the :ref:`User Guide <cross_validation>`.
Parameters
----------
p : int
Size of the test sets.
Examples
--------
>>> from sklearn.model_selection import LeavePOut
>>> X = np.array([[1, 2], [3, 4], [5, 6], [7, 8]])
>>> y = np.array([1, 2, 3, 4])
>>> lpo = LeavePOut(2)
>>> lpo.get_n_splits(X)
6
>>> print(lpo)
LeavePOut(p=2)
>>> for train_index, test_index in lpo.split(X):
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
TRAIN: [2 3] TEST: [0 1]
TRAIN: [1 3] TEST: [0 2]
TRAIN: [1 2] TEST: [0 3]
TRAIN: [0 3] TEST: [1 2]
TRAIN: [0 2] TEST: [1 3]
TRAIN: [0 1] TEST: [2 3]
"""
def __init__(self, p):
self.p = p
def _iter_test_indices(self, X, y=None, groups=None):
for combination in combinations(range(_num_samples(X)), self.p):
yield np.array(combination)
def get_n_splits(self, X, y=None, groups=None):
"""Returns the number of splitting iterations in the cross-validator
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
y : object
Always ignored, exists for compatibility.
groups : object
Always ignored, exists for compatibility.
"""
if X is None:
raise ValueError("The 'X' parameter should not be None.")
return int(comb(_num_samples(X), self.p, exact=True))
class _BaseKFold(with_metaclass(ABCMeta, BaseCrossValidator)):
"""Base class for KFold, GroupKFold, and StratifiedKFold"""
@abstractmethod
def __init__(self, n_splits, shuffle, random_state):
if not isinstance(n_splits, numbers.Integral):
raise ValueError('The number of folds must be of Integral type. '
'%s of type %s was passed.'
% (n_splits, type(n_splits)))
n_splits = int(n_splits)
if n_splits <= 1:
raise ValueError(
"k-fold cross-validation requires at least one"
" train/test split by setting n_splits=2 or more,"
" got n_splits={0}.".format(n_splits))
if not isinstance(shuffle, bool):
raise TypeError("shuffle must be True or False;"
" got {0}".format(shuffle))
self.n_splits = n_splits
self.shuffle = shuffle
self.random_state = random_state
def split(self, X, y=None, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
y : array-like, shape (n_samples,)
The target variable for supervised learning problems.
groups : array-like, with shape (n_samples,), optional
Group labels for the samples used while splitting the dataset into
train/test set.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
"""
X, y, groups = indexable(X, y, groups)
n_samples = _num_samples(X)
if self.n_splits > n_samples:
raise ValueError(
("Cannot have number of splits n_splits={0} greater"
" than the number of samples: n_samples={1}.")
.format(self.n_splits, n_samples))
for train, test in super(_BaseKFold, self).split(X, y, groups):
yield train, test
def get_n_splits(self, X=None, y=None, groups=None):
"""Returns the number of splitting iterations in the cross-validator
Parameters
----------
X : object
Always ignored, exists for compatibility.
y : object
Always ignored, exists for compatibility.
groups : object
Always ignored, exists for compatibility.
Returns
-------
n_splits : int
Returns the number of splitting iterations in the cross-validator.
"""
return self.n_splits
class KFold(_BaseKFold):
"""K-Folds cross-validator
Provides train/test indices to split data in train/test sets. Split
dataset into k consecutive folds (without shuffling by default).
Each fold is then used once as a validation while the k - 1 remaining
folds form the training set.
Read more in the :ref:`User Guide <cross_validation>`.
Parameters
----------
n_splits : int, default=3
Number of folds. Must be at least 2.
.. versionchanged:: 0.20
``n_splits`` default value will change from 3 to 5 in v0.22.
shuffle : boolean, optional
Whether to shuffle the data before splitting into batches.
random_state : int, RandomState instance or None, optional, default=None
If int, random_state is the seed used by the random number generator;
If RandomState instance, random_state is the random number generator;
If None, the random number generator is the RandomState instance used
by `np.random`. Used when ``shuffle`` == True.
Examples
--------
>>> from sklearn.model_selection import KFold
>>> X = np.array([[1, 2], [3, 4], [1, 2], [3, 4]])
>>> y = np.array([1, 2, 3, 4])
>>> kf = KFold(n_splits=2)
>>> kf.get_n_splits(X)
2
>>> print(kf) # doctest: +NORMALIZE_WHITESPACE
KFold(n_splits=2, random_state=None, shuffle=False)
>>> for train_index, test_index in kf.split(X):
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
TRAIN: [2 3] TEST: [0 1]
TRAIN: [0 1] TEST: [2 3]
Notes
-----
The first ``n_samples % n_splits`` folds have size
``n_samples // n_splits + 1``, other folds have size
``n_samples // n_splits``, where ``n_samples`` is the number of samples.
Randomized CV splitters may return different results for each call of
split. You can make the results identical by setting ``random_state``
to an integer.
See also
--------
StratifiedKFold
Takes group information into account to avoid building folds with
imbalanced class distributions (for binary or multiclass
classification tasks).
GroupKFold: K-fold iterator variant with non-overlapping groups.
RepeatedKFold: Repeats K-Fold n times.
"""
def __init__(self, n_splits='warn', shuffle=False,
random_state=None):
if n_splits == 'warn':
warnings.warn(NSPLIT_WARNING, FutureWarning)
n_splits = 3
super(KFold, self).__init__(n_splits, shuffle, random_state)
def _iter_test_indices(self, X, y=None, groups=None):
n_samples = _num_samples(X)
indices = np.arange(n_samples)
if self.shuffle:
check_random_state(self.random_state).shuffle(indices)
n_splits = self.n_splits
fold_sizes = np.full(n_splits, n_samples // n_splits, dtype=np.int)
fold_sizes[:n_samples % n_splits] += 1
current = 0
for fold_size in fold_sizes:
start, stop = current, current + fold_size
yield indices[start:stop]
current = stop
class GroupKFold(_BaseKFold):
"""K-fold iterator variant with non-overlapping groups.
The same group will not appear in two different folds (the number of
distinct groups has to be at least equal to the number of folds).
The folds are approximately balanced in the sense that the number of
distinct groups is approximately the same in each fold.
Parameters
----------
n_splits : int, default=3
Number of folds. Must be at least 2.
.. versionchanged:: 0.20
``n_splits`` default value will change from 3 to 5 in v0.22.
Examples
--------
>>> from sklearn.model_selection import GroupKFold
>>> X = np.array([[1, 2], [3, 4], [5, 6], [7, 8]])
>>> y = np.array([1, 2, 3, 4])
>>> groups = np.array([0, 0, 2, 2])
>>> group_kfold = GroupKFold(n_splits=2)
>>> group_kfold.get_n_splits(X, y, groups)
2
>>> print(group_kfold)
GroupKFold(n_splits=2)
>>> for train_index, test_index in group_kfold.split(X, y, groups):
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
... print(X_train, X_test, y_train, y_test)
...
TRAIN: [0 1] TEST: [2 3]
[[1 2]
[3 4]] [[5 6]
[7 8]] [1 2] [3 4]
TRAIN: [2 3] TEST: [0 1]
[[5 6]
[7 8]] [[1 2]
[3 4]] [3 4] [1 2]
See also
--------
LeaveOneGroupOut
For splitting the data according to explicit domain-specific
stratification of the dataset.
"""
def __init__(self, n_splits='warn'):
if n_splits == 'warn':
warnings.warn(NSPLIT_WARNING, FutureWarning)
n_splits = 3
super(GroupKFold, self).__init__(n_splits, shuffle=False,
random_state=None)
def _iter_test_indices(self, X, y, groups):
if groups is None:
raise ValueError("The 'groups' parameter should not be None.")
groups = check_array(groups, ensure_2d=False, dtype=None)
unique_groups, groups = np.unique(groups, return_inverse=True)
n_groups = len(unique_groups)
if self.n_splits > n_groups:
raise ValueError("Cannot have number of splits n_splits=%d greater"
" than the number of groups: %d."
% (self.n_splits, n_groups))
# Weight groups by their number of occurrences
n_samples_per_group = np.bincount(groups)
# Distribute the most frequent groups first
indices = np.argsort(n_samples_per_group)[::-1]
n_samples_per_group = n_samples_per_group[indices]
# Total weight of each fold
n_samples_per_fold = np.zeros(self.n_splits)
# Mapping from group index to fold index
group_to_fold = np.zeros(len(unique_groups))
# Distribute samples by adding the largest weight to the lightest fold
for group_index, weight in enumerate(n_samples_per_group):
lightest_fold = np.argmin(n_samples_per_fold)
n_samples_per_fold[lightest_fold] += weight
group_to_fold[indices[group_index]] = lightest_fold
indices = group_to_fold[groups]
for f in range(self.n_splits):
yield np.where(indices == f)[0]
def split(self, X, y=None, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
y : array-like, shape (n_samples,), optional
The target variable for supervised learning problems.
groups : array-like, with shape (n_samples,)
Group labels for the samples used while splitting the dataset into
train/test set.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
"""
return super(GroupKFold, self).split(X, y, groups)
class StratifiedKFold(_BaseKFold):
"""Stratified K-Folds cross-validator
Provides train/test indices to split data in train/test sets.
This cross-validation object is a variation of KFold that returns
stratified folds. The folds are made by preserving the percentage of
samples for each class.
Read more in the :ref:`User Guide <cross_validation>`.
Parameters
----------
n_splits : int, default=3
Number of folds. Must be at least 2.
.. versionchanged:: 0.20
``n_splits`` default value will change from 3 to 5 in v0.22.
shuffle : boolean, optional
Whether to shuffle each stratification of the data before splitting
into batches.
random_state : int, RandomState instance or None, optional, default=None
If int, random_state is the seed used by the random number generator;
If RandomState instance, random_state is the random number generator;
If None, the random number generator is the RandomState instance used
by `np.random`. Used when ``shuffle`` == True.
Examples
--------
>>> from sklearn.model_selection import StratifiedKFold
>>> X = np.array([[1, 2], [3, 4], [1, 2], [3, 4]])
>>> y = np.array([0, 0, 1, 1])
>>> skf = StratifiedKFold(n_splits=2)
>>> skf.get_n_splits(X, y)
2
>>> print(skf) # doctest: +NORMALIZE_WHITESPACE
StratifiedKFold(n_splits=2, random_state=None, shuffle=False)
>>> for train_index, test_index in skf.split(X, y):
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
TRAIN: [1 3] TEST: [0 2]
TRAIN: [0 2] TEST: [1 3]
Notes
-----
Train and test sizes may be different in each fold, with a difference of at
most ``n_classes``.
See also
--------
RepeatedStratifiedKFold: Repeats Stratified K-Fold n times.
"""
def __init__(self, n_splits='warn', shuffle=False, random_state=None):
if n_splits == 'warn':
warnings.warn(NSPLIT_WARNING, FutureWarning)
n_splits = 3
super(StratifiedKFold, self).__init__(n_splits, shuffle, random_state)
def _make_test_folds(self, X, y=None):
rng = self.random_state
y = np.asarray(y)
type_of_target_y = type_of_target(y)
allowed_target_types = ('binary', 'multiclass')
if type_of_target_y not in allowed_target_types:
raise ValueError(
'Supported target types are: {}. Got {!r} instead.'.format(
allowed_target_types, type_of_target_y))
y = column_or_1d(y)
n_samples = y.shape[0]
unique_y, y_inversed = np.unique(y, return_inverse=True)
y_counts = np.bincount(y_inversed)
min_groups = np.min(y_counts)
if np.all(self.n_splits > y_counts):
raise ValueError("n_splits=%d cannot be greater than the"
" number of members in each class."
% (self.n_splits))
if self.n_splits > min_groups:
warnings.warn(("The least populated class in y has only %d"
" members, which is too few. The minimum"
" number of members in any class cannot"
" be less than n_splits=%d."
% (min_groups, self.n_splits)), Warning)
# pre-assign each sample to a test fold index using individual KFold
# splitting strategies for each class so as to respect the balance of
# classes
# NOTE: Passing the data corresponding to ith class say X[y==class_i]
# will break when the data is not 100% stratifiable for all classes.
# So we pass np.zeroes(max(c, n_splits)) as data to the KFold
per_cls_cvs = [
KFold(self.n_splits, shuffle=self.shuffle,
random_state=rng).split(np.zeros(max(count, self.n_splits)))
for count in y_counts]
test_folds = np.zeros(n_samples, dtype=np.int)
for test_fold_indices, per_cls_splits in enumerate(zip(*per_cls_cvs)):
for cls, (_, test_split) in zip(unique_y, per_cls_splits):
cls_test_folds = test_folds[y == cls]
# the test split can be too big because we used
# KFold(...).split(X[:max(c, n_splits)]) when data is not 100%
# stratifiable for all the classes
# (we use a warning instead of raising an exception)
# If this is the case, let's trim it:
test_split = test_split[test_split < len(cls_test_folds)]
cls_test_folds[test_split] = test_fold_indices
test_folds[y == cls] = cls_test_folds
return test_folds
def _iter_test_masks(self, X, y=None, groups=None):
test_folds = self._make_test_folds(X, y)
for i in range(self.n_splits):
yield test_folds == i
def split(self, X, y, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
Note that providing ``y`` is sufficient to generate the splits and
hence ``np.zeros(n_samples)`` may be used as a placeholder for
``X`` instead of actual training data.
y : array-like, shape (n_samples,)
The target variable for supervised learning problems.
Stratification is done based on the y labels.
groups : object
Always ignored, exists for compatibility.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
Notes
-----
Randomized CV splitters may return different results for each call of
split. You can make the results identical by setting ``random_state``
to an integer.
"""
y = check_array(y, ensure_2d=False, dtype=None)
return super(StratifiedKFold, self).split(X, y, groups)
class TimeSeriesSplit(_BaseKFold):
"""Time Series cross-validator
Provides train/test indices to split time series data samples
that are observed at fixed time intervals, in train/test sets.
In each split, test indices must be higher than before, and thus shuffling
in cross validator is inappropriate.
This cross-validation object is a variation of :class:`KFold`.
In the kth split, it returns first k folds as train set and the
(k+1)th fold as test set.
Note that unlike standard cross-validation methods, successive
training sets are supersets of those that come before them.
Read more in the :ref:`User Guide <cross_validation>`.
Parameters
----------
n_splits : int, default=3
Number of splits. Must be at least 2.
.. versionchanged:: 0.20
``n_splits`` default value will change from 3 to 5 in v0.22.
max_train_size : int, optional
Maximum size for a single training set.
Examples
--------
>>> from sklearn.model_selection import TimeSeriesSplit
>>> X = np.array([[1, 2], [3, 4], [1, 2], [3, 4], [1, 2], [3, 4]])
>>> y = np.array([1, 2, 3, 4, 5, 6])
>>> tscv = TimeSeriesSplit(n_splits=5)
>>> print(tscv) # doctest: +NORMALIZE_WHITESPACE
TimeSeriesSplit(max_train_size=None, n_splits=5)
>>> for train_index, test_index in tscv.split(X):
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
TRAIN: [0] TEST: [1]
TRAIN: [0 1] TEST: [2]
TRAIN: [0 1 2] TEST: [3]
TRAIN: [0 1 2 3] TEST: [4]
TRAIN: [0 1 2 3 4] TEST: [5]
Notes
-----
The training set has size ``i * n_samples // (n_splits + 1)
+ n_samples % (n_splits + 1)`` in the ``i``th split,
with a test set of size ``n_samples//(n_splits + 1)``,
where ``n_samples`` is the number of samples.
"""
def __init__(self, n_splits='warn', max_train_size=None):
if n_splits == 'warn':
warnings.warn(NSPLIT_WARNING, FutureWarning)
n_splits = 3
super(TimeSeriesSplit, self).__init__(n_splits,
shuffle=False,
random_state=None)
self.max_train_size = max_train_size
def split(self, X, y=None, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
y : array-like, shape (n_samples,)
Always ignored, exists for compatibility.
groups : array-like, with shape (n_samples,)
Always ignored, exists for compatibility.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
"""
X, y, groups = indexable(X, y, groups)
n_samples = _num_samples(X)
n_splits = self.n_splits
n_folds = n_splits + 1
if n_folds > n_samples:
raise ValueError(
("Cannot have number of folds ={0} greater"
" than the number of samples: {1}.").format(n_folds,
n_samples))
indices = np.arange(n_samples)
test_size = (n_samples // n_folds)
test_starts = range(test_size + n_samples % n_folds,
n_samples, test_size)
for test_start in test_starts:
if self.max_train_size and self.max_train_size < test_start:
yield (indices[test_start - self.max_train_size:test_start],
indices[test_start:test_start + test_size])
else:
yield (indices[:test_start],
indices[test_start:test_start + test_size])
class LeaveOneGroupOut(BaseCrossValidator):
"""Leave One Group Out cross-validator
Provides train/test indices to split data according to a third-party
provided group. This group information can be used to encode arbitrary
domain specific stratifications of the samples as integers.
For instance the groups could be the year of collection of the samples
and thus allow for cross-validation against time-based splits.
Read more in the :ref:`User Guide <cross_validation>`.
Examples
--------
>>> from sklearn.model_selection import LeaveOneGroupOut
>>> X = np.array([[1, 2], [3, 4], [5, 6], [7, 8]])
>>> y = np.array([1, 2, 1, 2])
>>> groups = np.array([1, 1, 2, 2])
>>> logo = LeaveOneGroupOut()
>>> logo.get_n_splits(X, y, groups)
2
>>> logo.get_n_splits(groups=groups) # 'groups' is always required
2
>>> print(logo)
LeaveOneGroupOut()
>>> for train_index, test_index in logo.split(X, y, groups):
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
... print(X_train, X_test, y_train, y_test)
TRAIN: [2 3] TEST: [0 1]
[[5 6]
[7 8]] [[1 2]
[3 4]] [1 2] [1 2]
TRAIN: [0 1] TEST: [2 3]
[[1 2]
[3 4]] [[5 6]
[7 8]] [1 2] [1 2]
"""
def _iter_test_masks(self, X, y, groups):
if groups is None:
raise ValueError("The 'groups' parameter should not be None.")
# We make a copy of groups to avoid side-effects during iteration
groups = check_array(groups, copy=True, ensure_2d=False, dtype=None)
unique_groups = np.unique(groups)
if len(unique_groups) <= 1:
raise ValueError(
"The groups parameter contains fewer than 2 unique groups "
"(%s). LeaveOneGroupOut expects at least 2." % unique_groups)
for i in unique_groups:
yield groups == i
def get_n_splits(self, X=None, y=None, groups=None):
"""Returns the number of splitting iterations in the cross-validator
Parameters
----------
X : object
Always ignored, exists for compatibility.
y : object
Always ignored, exists for compatibility.
groups : array-like, with shape (n_samples,)
Group labels for the samples used while splitting the dataset into
train/test set. This 'groups' parameter must always be specified to
calculate the number of splits, though the other parameters can be
omitted.
Returns
-------
n_splits : int
Returns the number of splitting iterations in the cross-validator.
"""
if groups is None:
raise ValueError("The 'groups' parameter should not be None.")
groups = check_array(groups, ensure_2d=False, dtype=None)
return len(np.unique(groups))
def split(self, X, y=None, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
y : array-like, of length n_samples, optional
The target variable for supervised learning problems.
groups : array-like, with shape (n_samples,)
Group labels for the samples used while splitting the dataset into
train/test set.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
"""
return super(LeaveOneGroupOut, self).split(X, y, groups)
class LeavePGroupsOut(BaseCrossValidator):
"""Leave P Group(s) Out cross-validator
Provides train/test indices to split data according to a third-party
provided group. This group information can be used to encode arbitrary
domain specific stratifications of the samples as integers.
For instance the groups could be the year of collection of the samples
and thus allow for cross-validation against time-based splits.
The difference between LeavePGroupsOut and LeaveOneGroupOut is that
the former builds the test sets with all the samples assigned to
``p`` different values of the groups while the latter uses samples
all assigned the same groups.
Read more in the :ref:`User Guide <cross_validation>`.
Parameters
----------
n_groups : int
Number of groups (``p``) to leave out in the test split.
Examples
--------
>>> from sklearn.model_selection import LeavePGroupsOut
>>> X = np.array([[1, 2], [3, 4], [5, 6]])
>>> y = np.array([1, 2, 1])
>>> groups = np.array([1, 2, 3])
>>> lpgo = LeavePGroupsOut(n_groups=2)
>>> lpgo.get_n_splits(X, y, groups)
3
>>> lpgo.get_n_splits(groups=groups) # 'groups' is always required
3
>>> print(lpgo)
LeavePGroupsOut(n_groups=2)
>>> for train_index, test_index in lpgo.split(X, y, groups):
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
... print(X_train, X_test, y_train, y_test)
TRAIN: [2] TEST: [0 1]
[[5 6]] [[1 2]
[3 4]] [1] [1 2]
TRAIN: [1] TEST: [0 2]
[[3 4]] [[1 2]
[5 6]] [2] [1 1]
TRAIN: [0] TEST: [1 2]
[[1 2]] [[3 4]
[5 6]] [1] [2 1]
See also
--------
GroupKFold: K-fold iterator variant with non-overlapping groups.
"""
def __init__(self, n_groups):
self.n_groups = n_groups
def _iter_test_masks(self, X, y, groups):
if groups is None:
raise ValueError("The 'groups' parameter should not be None.")
groups = check_array(groups, copy=True, ensure_2d=False, dtype=None)
unique_groups = np.unique(groups)
if self.n_groups >= len(unique_groups):
raise ValueError(
"The groups parameter contains fewer than (or equal to) "
"n_groups (%d) numbers of unique groups (%s). LeavePGroupsOut "
"expects that at least n_groups + 1 (%d) unique groups be "
"present" % (self.n_groups, unique_groups, self.n_groups + 1))
combi = combinations(range(len(unique_groups)), self.n_groups)
for indices in combi:
test_index = np.zeros(_num_samples(X), dtype=np.bool)
for l in unique_groups[np.array(indices)]:
test_index[groups == l] = True
yield test_index
def get_n_splits(self, X=None, y=None, groups=None):
"""Returns the number of splitting iterations in the cross-validator
Parameters
----------
X : object
Always ignored, exists for compatibility.
y : object
Always ignored, exists for compatibility.
groups : array-like, with shape (n_samples,)
Group labels for the samples used while splitting the dataset into
train/test set. This 'groups' parameter must always be specified to
calculate the number of splits, though the other parameters can be
omitted.
Returns
-------
n_splits : int
Returns the number of splitting iterations in the cross-validator.
"""
if groups is None:
raise ValueError("The 'groups' parameter should not be None.")
groups = check_array(groups, ensure_2d=False, dtype=None)
return int(comb(len(np.unique(groups)), self.n_groups, exact=True))
def split(self, X, y=None, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
y : array-like, of length n_samples, optional
The target variable for supervised learning problems.
groups : array-like, with shape (n_samples,)
Group labels for the samples used while splitting the dataset into
train/test set.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
"""
return super(LeavePGroupsOut, self).split(X, y, groups)
class _RepeatedSplits(with_metaclass(ABCMeta)):
"""Repeated splits for an arbitrary randomized CV splitter.
Repeats splits for cross-validators n times with different randomization
in each repetition.
Parameters
----------
cv : callable
Cross-validator class.
n_repeats : int, default=10
Number of times cross-validator needs to be repeated.
random_state : int, RandomState instance or None, optional, default=None
If int, random_state is the seed used by the random number generator;
If RandomState instance, random_state is the random number generator;
If None, the random number generator is the RandomState instance used
by `np.random`.
**cvargs : additional params
Constructor parameters for cv. Must not contain random_state
and shuffle.
"""
def __init__(self, cv, n_repeats=10, random_state=None, **cvargs):
if not isinstance(n_repeats, (np.integer, numbers.Integral)):
raise ValueError("Number of repetitions must be of Integral type.")
if n_repeats <= 0:
raise ValueError("Number of repetitions must be greater than 0.")
if any(key in cvargs for key in ('random_state', 'shuffle')):
raise ValueError(
"cvargs must not contain random_state or shuffle.")
self.cv = cv
self.n_repeats = n_repeats
self.random_state = random_state
self.cvargs = cvargs
def split(self, X, y=None, groups=None):
"""Generates indices to split data into training and test set.
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
y : array-like, of length n_samples
The target variable for supervised learning problems.
groups : array-like, with shape (n_samples,), optional
Group labels for the samples used while splitting the dataset into
train/test set.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
"""
n_repeats = self.n_repeats
rng = check_random_state(self.random_state)
for idx in range(n_repeats):
cv = self.cv(random_state=rng, shuffle=True,
**self.cvargs)
for train_index, test_index in cv.split(X, y, groups):
yield train_index, test_index
def get_n_splits(self, X=None, y=None, groups=None):
"""Returns the number of splitting iterations in the cross-validator
Parameters
----------
X : object
Always ignored, exists for compatibility.
``np.zeros(n_samples)`` may be used as a placeholder.
y : object
Always ignored, exists for compatibility.
``np.zeros(n_samples)`` may be used as a placeholder.
groups : array-like, with shape (n_samples,), optional
Group labels for the samples used while splitting the dataset into
train/test set.
Returns
-------
n_splits : int
Returns the number of splitting iterations in the cross-validator.
"""
rng = check_random_state(self.random_state)
cv = self.cv(random_state=rng, shuffle=True,
**self.cvargs)
return cv.get_n_splits(X, y, groups) * self.n_repeats
class RepeatedKFold(_RepeatedSplits):
"""Repeated K-Fold cross validator.
Repeats K-Fold n times with different randomization in each repetition.
Read more in the :ref:`User Guide <cross_validation>`.
Parameters
----------
n_splits : int, default=5
Number of folds. Must be at least 2.
n_repeats : int, default=10
Number of times cross-validator needs to be repeated.
random_state : int, RandomState instance or None, optional, default=None
If int, random_state is the seed used by the random number generator;
If RandomState instance, random_state is the random number generator;
If None, the random number generator is the RandomState instance used
by `np.random`.
Examples
--------
>>> from sklearn.model_selection import RepeatedKFold
>>> X = np.array([[1, 2], [3, 4], [1, 2], [3, 4]])
>>> y = np.array([0, 0, 1, 1])
>>> rkf = RepeatedKFold(n_splits=2, n_repeats=2, random_state=2652124)
>>> for train_index, test_index in rkf.split(X):
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
...
TRAIN: [0 1] TEST: [2 3]
TRAIN: [2 3] TEST: [0 1]
TRAIN: [1 2] TEST: [0 3]
TRAIN: [0 3] TEST: [1 2]
Notes
-----
Randomized CV splitters may return different results for each call of
split. You can make the results identical by setting ``random_state``
to an integer.
See also
--------
RepeatedStratifiedKFold: Repeats Stratified K-Fold n times.
"""
def __init__(self, n_splits=5, n_repeats=10, random_state=None):
super(RepeatedKFold, self).__init__(
KFold, n_repeats, random_state, n_splits=n_splits)
class RepeatedStratifiedKFold(_RepeatedSplits):
"""Repeated Stratified K-Fold cross validator.
Repeats Stratified K-Fold n times with different randomization in each
repetition.
Read more in the :ref:`User Guide <cross_validation>`.
Parameters
----------
n_splits : int, default=5
Number of folds. Must be at least 2.
n_repeats : int, default=10
Number of times cross-validator needs to be repeated.
random_state : None, int or RandomState, default=None
Random state to be used to generate random state for each
repetition.
Examples
--------
>>> from sklearn.model_selection import RepeatedStratifiedKFold
>>> X = np.array([[1, 2], [3, 4], [1, 2], [3, 4]])
>>> y = np.array([0, 0, 1, 1])
>>> rskf = RepeatedStratifiedKFold(n_splits=2, n_repeats=2,
... random_state=36851234)
>>> for train_index, test_index in rskf.split(X, y):
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
...
TRAIN: [1 2] TEST: [0 3]
TRAIN: [0 3] TEST: [1 2]
TRAIN: [1 3] TEST: [0 2]
TRAIN: [0 2] TEST: [1 3]
Notes
-----
Randomized CV splitters may return different results for each call of
split. You can make the results identical by setting ``random_state``
to an integer.
See also
--------
RepeatedKFold: Repeats K-Fold n times.
"""
def __init__(self, n_splits=5, n_repeats=10, random_state=None):
super(RepeatedStratifiedKFold, self).__init__(
StratifiedKFold, n_repeats, random_state, n_splits=n_splits)
class BaseShuffleSplit(with_metaclass(ABCMeta)):
"""Base class for ShuffleSplit and StratifiedShuffleSplit"""
def __init__(self, n_splits=10, test_size="default", train_size=None,
random_state=None):
_validate_shuffle_split_init(test_size, train_size)
self.n_splits = n_splits
self.test_size = test_size
self.train_size = train_size
self.random_state = random_state
def split(self, X, y=None, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
y : array-like, shape (n_samples,)
The target variable for supervised learning problems.
groups : array-like, with shape (n_samples,), optional
Group labels for the samples used while splitting the dataset into
train/test set.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
Notes
-----
Randomized CV splitters may return different results for each call of
split. You can make the results identical by setting ``random_state``
to an integer.
"""
X, y, groups = indexable(X, y, groups)
for train, test in self._iter_indices(X, y, groups):
yield train, test
@abstractmethod
def _iter_indices(self, X, y=None, groups=None):
"""Generate (train, test) indices"""
def get_n_splits(self, X=None, y=None, groups=None):
"""Returns the number of splitting iterations in the cross-validator
Parameters
----------
X : object
Always ignored, exists for compatibility.
y : object
Always ignored, exists for compatibility.
groups : object
Always ignored, exists for compatibility.
Returns
-------
n_splits : int
Returns the number of splitting iterations in the cross-validator.
"""
return self.n_splits
def __repr__(self):
return _build_repr(self)
class ShuffleSplit(BaseShuffleSplit):
"""Random permutation cross-validator
Yields indices to split data into training and test sets.
Note: contrary to other cross-validation strategies, random splits
do not guarantee that all folds will be different, although this is
still very likely for sizeable datasets.
Read more in the :ref:`User Guide <cross_validation>`.
Parameters
----------
n_splits : int, default 10
Number of re-shuffling & splitting iterations.
test_size : float, int, None, default=0.1
If float, should be between 0.0 and 1.0 and represent the proportion
of the dataset to include in the test split. If int, represents the
absolute number of test samples. If None, the value is set to the
complement of the train size. By default (the parameter is
unspecified), the value is set to 0.1.
The default will change in version 0.21. It will remain 0.1 only
if ``train_size`` is unspecified, otherwise it will complement
the specified ``train_size``.
train_size : float, int, or None, default=None
If float, should be between 0.0 and 1.0 and represent the
proportion of the dataset to include in the train split. If
int, represents the absolute number of train samples. If None,
the value is automatically set to the complement of the test size.
random_state : int, RandomState instance or None, optional (default=None)
If int, random_state is the seed used by the random number generator;
If RandomState instance, random_state is the random number generator;
If None, the random number generator is the RandomState instance used
by `np.random`.
Examples
--------
>>> from sklearn.model_selection import ShuffleSplit
>>> X = np.array([[1, 2], [3, 4], [5, 6], [7, 8], [3, 4], [5, 6]])
>>> y = np.array([1, 2, 1, 2, 1, 2])
>>> rs = ShuffleSplit(n_splits=5, test_size=.25, random_state=0)
>>> rs.get_n_splits(X)
5
>>> print(rs)
ShuffleSplit(n_splits=5, random_state=0, test_size=0.25, train_size=None)
>>> for train_index, test_index in rs.split(X):
... print("TRAIN:", train_index, "TEST:", test_index)
... # doctest: +ELLIPSIS
TRAIN: [1 3 0 4] TEST: [5 2]
TRAIN: [4 0 2 5] TEST: [1 3]
TRAIN: [1 2 4 0] TEST: [3 5]
TRAIN: [3 4 1 0] TEST: [5 2]
TRAIN: [3 5 1 0] TEST: [2 4]
>>> rs = ShuffleSplit(n_splits=5, train_size=0.5, test_size=.25,
... random_state=0)
>>> for train_index, test_index in rs.split(X):
... print("TRAIN:", train_index, "TEST:", test_index)
... # doctest: +ELLIPSIS
TRAIN: [1 3 0] TEST: [5 2]
TRAIN: [4 0 2] TEST: [1 3]
TRAIN: [1 2 4] TEST: [3 5]
TRAIN: [3 4 1] TEST: [5 2]
TRAIN: [3 5 1] TEST: [2 4]
"""
def _iter_indices(self, X, y=None, groups=None):
n_samples = _num_samples(X)
n_train, n_test = _validate_shuffle_split(n_samples,
self.test_size,
self.train_size)
rng = check_random_state(self.random_state)
for i in range(self.n_splits):
# random partition
permutation = rng.permutation(n_samples)
ind_test = permutation[:n_test]
ind_train = permutation[n_test:(n_test + n_train)]
yield ind_train, ind_test
class GroupShuffleSplit(ShuffleSplit):
'''Shuffle-Group(s)-Out cross-validation iterator
Provides randomized train/test indices to split data according to a
third-party provided group. This group information can be used to encode
arbitrary domain specific stratifications of the samples as integers.
For instance the groups could be the year of collection of the samples
and thus allow for cross-validation against time-based splits.
The difference between LeavePGroupsOut and GroupShuffleSplit is that
the former generates splits using all subsets of size ``p`` unique groups,
whereas GroupShuffleSplit generates a user-determined number of random
test splits, each with a user-determined fraction of unique groups.
For example, a less computationally intensive alternative to
``LeavePGroupsOut(p=10)`` would be
``GroupShuffleSplit(test_size=10, n_splits=100)``.
Note: The parameters ``test_size`` and ``train_size`` refer to groups, and
not to samples, as in ShuffleSplit.
Parameters
----------
n_splits : int (default 5)
Number of re-shuffling & splitting iterations.
test_size : float, int, None, optional
If float, should be between 0.0 and 1.0 and represent the proportion
of the dataset to include in the test split. If int, represents the
absolute number of test samples. If None, the value is set to the
complement of the train size. By default, the value is set to 0.2.
The default will change in version 0.21. It will remain 0.2 only
if ``train_size`` is unspecified, otherwise it will complement
the specified ``train_size``.
train_size : float, int, or None, default is None
If float, should be between 0.0 and 1.0 and represent the
proportion of the groups to include in the train split. If
int, represents the absolute number of train groups. If None,
the value is automatically set to the complement of the test size.
random_state : int, RandomState instance or None, optional (default=None)
If int, random_state is the seed used by the random number generator;
If RandomState instance, random_state is the random number generator;
If None, the random number generator is the RandomState instance used
by `np.random`.
'''
def __init__(self, n_splits=5, test_size="default", train_size=None,
random_state=None):
if test_size == "default":
if train_size is not None:
warnings.warn("From version 0.21, test_size will always "
"complement train_size unless both "
"are specified.",
FutureWarning)
test_size = 0.2
super(GroupShuffleSplit, self).__init__(
n_splits=n_splits,
test_size=test_size,
train_size=train_size,
random_state=random_state)
def _iter_indices(self, X, y, groups):
if groups is None:
raise ValueError("The 'groups' parameter should not be None.")
groups = check_array(groups, ensure_2d=False, dtype=None)
classes, group_indices = np.unique(groups, return_inverse=True)
for group_train, group_test in super(
GroupShuffleSplit, self)._iter_indices(X=classes):
# these are the indices of classes in the partition
# invert them into data indices
train = np.flatnonzero(np.in1d(group_indices, group_train))
test = np.flatnonzero(np.in1d(group_indices, group_test))
yield train, test
def split(self, X, y=None, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
y : array-like, shape (n_samples,), optional
The target variable for supervised learning problems.
groups : array-like, with shape (n_samples,)
Group labels for the samples used while splitting the dataset into
train/test set.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
Notes
-----
Randomized CV splitters may return different results for each call of
split. You can make the results identical by setting ``random_state``
to an integer.
"""
return super(GroupShuffleSplit, self).split(X, y, groups)
def _approximate_mode(class_counts, n_draws, rng):
"""Computes approximate mode of multivariate hypergeometric.
This is an approximation to the mode of the multivariate
hypergeometric given by class_counts and n_draws.
It shouldn't be off by more than one.
It is the mostly likely outcome of drawing n_draws many
samples from the population given by class_counts.
Parameters
----------
class_counts : ndarray of int
Population per class.
n_draws : int
Number of draws (samples to draw) from the overall population.
rng : random state
Used to break ties.
Returns
-------
sampled_classes : ndarray of int
Number of samples drawn from each class.
np.sum(sampled_classes) == n_draws
Examples
--------
>>> from sklearn.model_selection._split import _approximate_mode
>>> _approximate_mode(class_counts=np.array([4, 2]), n_draws=3, rng=0)
array([2, 1])
>>> _approximate_mode(class_counts=np.array([5, 2]), n_draws=4, rng=0)
array([3, 1])
>>> _approximate_mode(class_counts=np.array([2, 2, 2, 1]),
... n_draws=2, rng=0)
array([0, 1, 1, 0])
>>> _approximate_mode(class_counts=np.array([2, 2, 2, 1]),
... n_draws=2, rng=42)
array([1, 1, 0, 0])
"""
rng = check_random_state(rng)
# this computes a bad approximation to the mode of the
# multivariate hypergeometric given by class_counts and n_draws
continuous = n_draws * class_counts / class_counts.sum()
# floored means we don't overshoot n_samples, but probably undershoot
floored = np.floor(continuous)
# we add samples according to how much "left over" probability
# they had, until we arrive at n_samples
need_to_add = int(n_draws - floored.sum())
if need_to_add > 0:
remainder = continuous - floored
values = np.sort(np.unique(remainder))[::-1]
# add according to remainder, but break ties
# randomly to avoid biases
for value in values:
inds, = np.where(remainder == value)
# if we need_to_add less than what's in inds
# we draw randomly from them.
# if we need to add more, we add them all and
# go to the next value
add_now = min(len(inds), need_to_add)
inds = rng.choice(inds, size=add_now, replace=False)
floored[inds] += 1
need_to_add -= add_now
if need_to_add == 0:
break
return floored.astype(np.int)
class StratifiedShuffleSplit(BaseShuffleSplit):
"""Stratified ShuffleSplit cross-validator
Provides train/test indices to split data in train/test sets.
This cross-validation object is a merge of StratifiedKFold and
ShuffleSplit, which returns stratified randomized folds. The folds
are made by preserving the percentage of samples for each class.
Note: like the ShuffleSplit strategy, stratified random splits
do not guarantee that all folds will be different, although this is
still very likely for sizeable datasets.
Read more in the :ref:`User Guide <cross_validation>`.
Parameters
----------
n_splits : int, default 10
Number of re-shuffling & splitting iterations.
test_size : float, int, None, optional
If float, should be between 0.0 and 1.0 and represent the proportion
of the dataset to include in the test split. If int, represents the
absolute number of test samples. If None, the value is set to the
complement of the train size. By default, the value is set to 0.1.
The default will change in version 0.21. It will remain 0.1 only
if ``train_size`` is unspecified, otherwise it will complement
the specified ``train_size``.
train_size : float, int, or None, default is None
If float, should be between 0.0 and 1.0 and represent the
proportion of the dataset to include in the train split. If
int, represents the absolute number of train samples. If None,
the value is automatically set to the complement of the test size.
random_state : int, RandomState instance or None, optional (default=None)
If int, random_state is the seed used by the random number generator;
If RandomState instance, random_state is the random number generator;
If None, the random number generator is the RandomState instance used
by `np.random`.
Examples
--------
>>> from sklearn.model_selection import StratifiedShuffleSplit
>>> X = np.array([[1, 2], [3, 4], [1, 2], [3, 4], [1, 2], [3, 4]])
>>> y = np.array([0, 0, 0, 1, 1, 1])
>>> sss = StratifiedShuffleSplit(n_splits=5, test_size=0.5, random_state=0)
>>> sss.get_n_splits(X, y)
5
>>> print(sss) # doctest: +ELLIPSIS
StratifiedShuffleSplit(n_splits=5, random_state=0, ...)
>>> for train_index, test_index in sss.split(X, y):
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
TRAIN: [5 2 3] TEST: [4 1 0]
TRAIN: [5 1 4] TEST: [0 2 3]
TRAIN: [5 0 2] TEST: [4 3 1]
TRAIN: [4 1 0] TEST: [2 3 5]
TRAIN: [0 5 1] TEST: [3 4 2]
"""
def __init__(self, n_splits=10, test_size="default", train_size=None,
random_state=None):
super(StratifiedShuffleSplit, self).__init__(
n_splits, test_size, train_size, random_state)
def _iter_indices(self, X, y, groups=None):
n_samples = _num_samples(X)
y = check_array(y, ensure_2d=False, dtype=None)
n_train, n_test = _validate_shuffle_split(n_samples, self.test_size,
self.train_size)
if y.ndim == 2:
# for multi-label y, map each distinct row to a string repr
# using join because str(row) uses an ellipsis if len(row) > 1000
y = np.array([' '.join(row.astype('str')) for row in y])
classes, y_indices = np.unique(y, return_inverse=True)
n_classes = classes.shape[0]
class_counts = np.bincount(y_indices)
if np.min(class_counts) < 2:
raise ValueError("The least populated class in y has only 1"
" member, which is too few. The minimum"
" number of groups for any class cannot"
" be less than 2.")
if n_train < n_classes:
raise ValueError('The train_size = %d should be greater or '
'equal to the number of classes = %d' %
(n_train, n_classes))
if n_test < n_classes:
raise ValueError('The test_size = %d should be greater or '
'equal to the number of classes = %d' %
(n_test, n_classes))
# Find the sorted list of instances for each class:
# (np.unique above performs a sort, so code is O(n logn) already)
class_indices = np.split(np.argsort(y_indices, kind='mergesort'),
np.cumsum(class_counts)[:-1])
rng = check_random_state(self.random_state)
for _ in range(self.n_splits):
# if there are ties in the class-counts, we want
# to make sure to break them anew in each iteration
n_i = _approximate_mode(class_counts, n_train, rng)
class_counts_remaining = class_counts - n_i
t_i = _approximate_mode(class_counts_remaining, n_test, rng)
train = []
test = []
for i in range(n_classes):
permutation = rng.permutation(class_counts[i])
perm_indices_class_i = class_indices[i].take(permutation,
mode='clip')
train.extend(perm_indices_class_i[:n_i[i]])
test.extend(perm_indices_class_i[n_i[i]:n_i[i] + t_i[i]])
train = rng.permutation(train)
test = rng.permutation(test)
yield train, test
def split(self, X, y, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : array-like, shape (n_samples, n_features)
Training data, where n_samples is the number of samples
and n_features is the number of features.
Note that providing ``y`` is sufficient to generate the splits and
hence ``np.zeros(n_samples)`` may be used as a placeholder for
``X`` instead of actual training data.
y : array-like, shape (n_samples,)
The target variable for supervised learning problems.
Stratification is done based on the y labels.
groups : object
Always ignored, exists for compatibility.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
Notes
-----
Randomized CV splitters may return different results for each call of
split. You can make the results identical by setting ``random_state``
to an integer.
"""
y = check_array(y, ensure_2d=False, dtype=None)
return super(StratifiedShuffleSplit, self).split(X, y, groups)
def _validate_shuffle_split_init(test_size, train_size):
"""Validation helper to check the test_size and train_size at init
NOTE This does not take into account the number of samples which is known
only at split
"""
if test_size == "default":
if train_size is not None:
warnings.warn("From version 0.21, test_size will always "
"complement train_size unless both "
"are specified.",
FutureWarning)
test_size = 0.1
if test_size is None and train_size is None:
raise ValueError('test_size and train_size can not both be None')
if test_size is not None:
if np.asarray(test_size).dtype.kind == 'f':
if test_size >= 1.:
raise ValueError(
'test_size=%f should be smaller '
'than 1.0 or be an integer' % test_size)
elif np.asarray(test_size).dtype.kind != 'i':
# int values are checked during split based on the input
raise ValueError("Invalid value for test_size: %r" % test_size)
if train_size is not None:
if np.asarray(train_size).dtype.kind == 'f':
if train_size >= 1.:
raise ValueError("train_size=%f should be smaller "
"than 1.0 or be an integer" % train_size)
elif (np.asarray(test_size).dtype.kind == 'f' and
(train_size + test_size) > 1.):
raise ValueError('The sum of test_size and train_size = %f, '
'should be smaller than 1.0. Reduce '
'test_size and/or train_size.' %
(train_size + test_size))
elif np.asarray(train_size).dtype.kind != 'i':
# int values are checked during split based on the input
raise ValueError("Invalid value for train_size: %r" % train_size)
def _validate_shuffle_split(n_samples, test_size, train_size):
"""
Validation helper to check if the test/test sizes are meaningful wrt to the
size of the data (n_samples)
"""
if (test_size is not None and
np.asarray(test_size).dtype.kind == 'i' and
test_size >= n_samples):
raise ValueError('test_size=%d should be smaller than the number of '
'samples %d' % (test_size, n_samples))
if (train_size is not None and
np.asarray(train_size).dtype.kind == 'i' and
train_size >= n_samples):
raise ValueError("train_size=%d should be smaller than the number of"
" samples %d" % (train_size, n_samples))
if test_size == "default":
test_size = 0.1
if np.asarray(test_size).dtype.kind == 'f':
n_test = ceil(test_size * n_samples)
elif np.asarray(test_size).dtype.kind == 'i':
n_test = float(test_size)
if train_size is None:
n_train = n_samples - n_test
elif np.asarray(train_size).dtype.kind == 'f':
n_train = floor(train_size * n_samples)
else:
n_train = float(train_size)
if test_size is None:
n_test = n_samples - n_train
if n_train + n_test > n_samples:
raise ValueError('The sum of train_size and test_size = %d, '
'should be smaller than the number of '
'samples %d. Reduce test_size and/or '
'train_size.' % (n_train + n_test, n_samples))
return int(n_train), int(n_test)
class PredefinedSplit(BaseCrossValidator):
"""Predefined split cross-validator
Provides train/test indices to split data into train/test sets using a
predefined scheme specified by the user with the ``test_fold`` parameter.
Read more in the :ref:`User Guide <cross_validation>`.
Parameters
----------
test_fold : array-like, shape (n_samples,)
The entry ``test_fold[i]`` represents the index of the test set that
sample ``i`` belongs to. It is possible to exclude sample ``i`` from
any test set (i.e. include sample ``i`` in every training set) by
setting ``test_fold[i]`` equal to -1.
Examples
--------
>>> from sklearn.model_selection import PredefinedSplit
>>> X = np.array([[1, 2], [3, 4], [1, 2], [3, 4]])
>>> y = np.array([0, 0, 1, 1])
>>> test_fold = [0, 1, -1, 1]
>>> ps = PredefinedSplit(test_fold)
>>> ps.get_n_splits()
2
>>> print(ps) # doctest: +NORMALIZE_WHITESPACE +ELLIPSIS
PredefinedSplit(test_fold=array([ 0, 1, -1, 1]))
>>> for train_index, test_index in ps.split():
... print("TRAIN:", train_index, "TEST:", test_index)
... X_train, X_test = X[train_index], X[test_index]
... y_train, y_test = y[train_index], y[test_index]
TRAIN: [1 2 3] TEST: [0]
TRAIN: [0 2] TEST: [1 3]
"""
def __init__(self, test_fold):
self.test_fold = np.array(test_fold, dtype=np.int)
self.test_fold = column_or_1d(self.test_fold)
self.unique_folds = np.unique(self.test_fold)
self.unique_folds = self.unique_folds[self.unique_folds != -1]
def split(self, X=None, y=None, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : object
Always ignored, exists for compatibility.
y : object
Always ignored, exists for compatibility.
groups : object
Always ignored, exists for compatibility.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
"""
ind = np.arange(len(self.test_fold))
for test_index in self._iter_test_masks():
train_index = ind[np.logical_not(test_index)]
test_index = ind[test_index]
yield train_index, test_index
def _iter_test_masks(self):
"""Generates boolean masks corresponding to test sets."""
for f in self.unique_folds:
test_index = np.where(self.test_fold == f)[0]
test_mask = np.zeros(len(self.test_fold), dtype=np.bool)
test_mask[test_index] = True
yield test_mask
def get_n_splits(self, X=None, y=None, groups=None):
"""Returns the number of splitting iterations in the cross-validator
Parameters
----------
X : object
Always ignored, exists for compatibility.
y : object
Always ignored, exists for compatibility.
groups : object
Always ignored, exists for compatibility.
Returns
-------
n_splits : int
Returns the number of splitting iterations in the cross-validator.
"""
return len(self.unique_folds)
class _CVIterableWrapper(BaseCrossValidator):
"""Wrapper class for old style cv objects and iterables."""
def __init__(self, cv):
self.cv = list(cv)
def get_n_splits(self, X=None, y=None, groups=None):
"""Returns the number of splitting iterations in the cross-validator
Parameters
----------
X : object
Always ignored, exists for compatibility.
y : object
Always ignored, exists for compatibility.
groups : object
Always ignored, exists for compatibility.
Returns
-------
n_splits : int
Returns the number of splitting iterations in the cross-validator.
"""
return len(self.cv)
def split(self, X=None, y=None, groups=None):
"""Generate indices to split data into training and test set.
Parameters
----------
X : object
Always ignored, exists for compatibility.
y : object
Always ignored, exists for compatibility.
groups : object
Always ignored, exists for compatibility.
Yields
------
train : ndarray
The training set indices for that split.
test : ndarray
The testing set indices for that split.
"""
for train, test in self.cv:
yield train, test
def check_cv(cv='warn', y=None, classifier=False):
"""Input checker utility for building a cross-validator
Parameters
----------
cv : int, cross-validation generator or an iterable, optional
Determines the cross-validation splitting strategy.
Possible inputs for cv are:
- None, to use the default 3-fold cross-validation,
- integer, to specify the number of folds.
- :term:`CV splitter`,
- An iterable yielding (train, test) splits as arrays of indices.
For integer/None inputs, if classifier is True and ``y`` is either
binary or multiclass, :class:`StratifiedKFold` is used. In all other
cases, :class:`KFold` is used.
Refer :ref:`User Guide <cross_validation>` for the various
cross-validation strategies that can be used here.
.. versionchanged:: 0.20
``cv`` default value will change from 3-fold to 5-fold in v0.22.
y : array-like, optional
The target variable for supervised learning problems.
classifier : boolean, optional, default False
Whether the task is a classification task, in which case
stratified KFold will be used.
Returns
-------
checked_cv : a cross-validator instance.
The return value is a cross-validator which generates the train/test
splits via the ``split`` method.
"""
if cv is None or cv == 'warn':
warnings.warn(CV_WARNING, FutureWarning)
cv = 3
if isinstance(cv, numbers.Integral):
if (classifier and (y is not None) and
(type_of_target(y) in ('binary', 'multiclass'))):
return StratifiedKFold(cv)
else:
return KFold(cv)
if not hasattr(cv, 'split') or isinstance(cv, str):
if not isinstance(cv, Iterable) or isinstance(cv, str):
raise ValueError("Expected cv as an integer, cross-validation "
"object (from sklearn.model_selection) "
"or an iterable. Got %s." % cv)
return _CVIterableWrapper(cv)
return cv # New style cv objects are passed without any modification
def train_test_split(*arrays, **options):
"""Split arrays or matrices into random train and test subsets
Quick utility that wraps input validation and
``next(ShuffleSplit().split(X, y))`` and application to input data
into a single call for splitting (and optionally subsampling) data in a
oneliner.
Read more in the :ref:`User Guide <cross_validation>`.
Parameters
----------
*arrays : sequence of indexables with same length / shape[0]
Allowed inputs are lists, numpy arrays, scipy-sparse
matrices or pandas dataframes.
test_size : float, int or None, optional (default=0.25)
If float, should be between 0.0 and 1.0 and represent the proportion
of the dataset to include in the test split. If int, represents the
absolute number of test samples. If None, the value is set to the
complement of the train size. By default, the value is set to 0.25.
The default will change in version 0.21. It will remain 0.25 only
if ``train_size`` is unspecified, otherwise it will complement
the specified ``train_size``.
train_size : float, int, or None, (default=None)
If float, should be between 0.0 and 1.0 and represent the
proportion of the dataset to include in the train split. If
int, represents the absolute number of train samples. If None,
the value is automatically set to the complement of the test size.
random_state : int, RandomState instance or None, optional (default=None)
If int, random_state is the seed used by the random number generator;
If RandomState instance, random_state is the random number generator;
If None, the random number generator is the RandomState instance used
by `np.random`.
shuffle : boolean, optional (default=True)
Whether or not to shuffle the data before splitting. If shuffle=False
then stratify must be None.
stratify : array-like or None (default=None)
If not None, data is split in a stratified fashion, using this as
the class labels.
Returns
-------
splitting : list, length=2 * len(arrays)
List containing train-test split of inputs.
.. versionadded:: 0.16
If the input is sparse, the output will be a
``scipy.sparse.csr_matrix``. Else, output type is the same as the
input type.
Examples
--------
>>> import numpy as np
>>> from sklearn.model_selection import train_test_split
>>> X, y = np.arange(10).reshape((5, 2)), range(5)
>>> X
array([[0, 1],
[2, 3],
[4, 5],
[6, 7],
[8, 9]])
>>> list(y)
[0, 1, 2, 3, 4]
>>> X_train, X_test, y_train, y_test = train_test_split(
... X, y, test_size=0.33, random_state=42)
...
>>> X_train
array([[4, 5],
[0, 1],
[6, 7]])
>>> y_train
[2, 0, 3]
>>> X_test
array([[2, 3],
[8, 9]])
>>> y_test
[1, 4]
>>> train_test_split(y, shuffle=False)
[[0, 1, 2], [3, 4]]
"""
n_arrays = len(arrays)
if n_arrays == 0:
raise ValueError("At least one array required as input")
test_size = options.pop('test_size', 'default')
train_size = options.pop('train_size', None)
random_state = options.pop('random_state', None)
stratify = options.pop('stratify', None)
shuffle = options.pop('shuffle', True)
if options:
raise TypeError("Invalid parameters passed: %s" % str(options))
if test_size == 'default':
test_size = None
if train_size is not None:
warnings.warn("From version 0.21, test_size will always "
"complement train_size unless both "
"are specified.",
FutureWarning)
if test_size is None and train_size is None:
test_size = 0.25
arrays = indexable(*arrays)
if shuffle is False:
if stratify is not None:
raise ValueError(
"Stratified train/test split is not implemented for "
"shuffle=False")
n_samples = _num_samples(arrays[0])
n_train, n_test = _validate_shuffle_split(n_samples, test_size,
train_size)
train = np.arange(n_train)
test = np.arange(n_train, n_train + n_test)
else:
if stratify is not None:
CVClass = StratifiedShuffleSplit
else:
CVClass = ShuffleSplit
cv = CVClass(test_size=test_size,
train_size=train_size,
random_state=random_state)
train, test = next(cv.split(X=arrays[0], y=stratify))
return list(chain.from_iterable((safe_indexing(a, train),
safe_indexing(a, test)) for a in arrays))
# Tell nose that train_test_split is not a test
train_test_split.__test__ = False
def _build_repr(self):
# XXX This is copied from BaseEstimator's get_params
cls = self.__class__
init = getattr(cls.__init__, 'deprecated_original', cls.__init__)
# Ignore varargs, kw and default values and pop self
init_signature = signature(init)
# Consider the constructor parameters excluding 'self'
if init is object.__init__:
args = []
else:
args = sorted([p.name for p in init_signature.parameters.values()
if p.name != 'self' and p.kind != p.VAR_KEYWORD])
class_name = self.__class__.__name__
params = dict()
for key in args:
# We need deprecation warnings to always be on in order to
# catch deprecated param values.
# This is set in utils/__init__.py but it gets overwritten
# when running under python3 somehow.
warnings.simplefilter("always", DeprecationWarning)
try:
with warnings.catch_warnings(record=True) as w:
value = getattr(self, key, None)
if len(w) and w[0].category == DeprecationWarning:
# if the parameter is deprecated, don't show it
continue
finally:
warnings.filters.pop(0)
params[key] = value
return '%s(%s)' % (class_name, _pprint(params, offset=len(class_name)))
| [
"[email protected]"
]
| |
50db569d619ceba40e29f9e252fb82e4831c1d5e | 08fee9b4e4704249d7e49797af05712ca226d177 | /eemont/.ipynb_checkpoints/common-checkpoint.py | 2edd5f026a742936bb7204b308bbb0f8256badc0 | [
"MIT"
]
| permissive | ntag1618/eemont | 81a36818c2d45af37a7e1661d90ae692a0183d48 | e1c9b58837a9626890a087120b2a1c4b764d85c3 | refs/heads/master | 2023-04-06T19:25:00.368693 | 2021-04-17T01:09:13 | 2021-04-17T01:09:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 49,358 | py | import ee
import warnings
from box import Box
def _get_expression_map(img, platformDict):
'''Gets the dictionary required for the map parameter in ee.Image.expression() method.
Parameters
----------
img : ee.Image
Image to get the dictionary from.
platformDict : dict
Dictionary retrieved from the _get_platform() method.
Returns
-------
dict
Map dictionary for ee.Image.expression.
'''
def lookupS2(img):
return {
'A': img.select('B1'),
'B': img.select('B2'),
'G': img.select('B3'),
'R': img.select('B4'),
'RE1': img.select('B5'),
'RE2': img.select('B6'),
'RE3': img.select('B7'),
'N' : img.select('B8'),
'RE4': img.select('B8A'),
'WV' : img.select('B9'),
'S1': img.select('B11'),
'S2': img.select('B12')
}
def lookupL8(img):
return {
'A': img.select('B1'),
'B': img.select('B2'),
'G': img.select('B3'),
'R': img.select('B4'),
'N': img.select('B5'),
'S1': img.select('B6'),
'S2': img.select('B7'),
'T1' : img.select('B10'),
'T2': img.select('B11')
}
def lookupL457(img):
return {
'B': img.select('B1'),
'G': img.select('B2'),
'R': img.select('B3'),
'N': img.select('B4'),
'S1': img.select('B5'),
'T1': img.select('B6'),
'S2': img.select('B7')
}
def lookupMOD09GQ(img):
return {
'R': img.select('sur_refl_b01'),
'N': img.select('sur_refl_b02')
}
def lookupMOD09GA(img):
return {
'B': img.select('sur_refl_b03'),
'G': img.select('sur_refl_b04'),
'R': img.select('sur_refl_b01'),
'N': img.select('sur_refl_b02'),
'S1': img.select('sur_refl_b06'),
'S2': img.select('sur_refl_b07')
}
def lookupMCD43A4(img):
return {
'B': img.select('Nadir_Reflectance_Band3'),
'G': img.select('Nadir_Reflectance_Band4'),
'R': img.select('Nadir_Reflectance_Band1'),
'N': img.select('Nadir_Reflectance_Band2'),
'S1': img.select('Nadir_Reflectance_Band6'),
'S2': img.select('Nadir_Reflectance_Band7')
}
lookupPlatform = {
'COPERNICUS/S2': lookupS2,
'LANDSAT/LC08': lookupL8,
'LANDSAT/LE07': lookupL457,
'LANDSAT/LT05': lookupL457,
'LANDSAT/LT04': lookupL457,
'MODIS/006/MOD09GQ': lookupMOD09GQ,
'MODIS/006/MYD09GQ': lookupMOD09GQ,
'MODIS/006/MOD09GA': lookupMOD09GA,
'MODIS/006/MYD09GA': lookupMOD09GA,
'MODIS/006/MOD09Q1': lookupMOD09GQ,
'MODIS/006/MYD09Q1': lookupMOD09GQ,
'MODIS/006/MOD09A1': lookupMOD09GA,
'MODIS/006/MYD09A1': lookupMOD09GA,
'MODIS/006/MCD43A4': lookupMCD43A4
}
if platformDict['platform'] not in list(lookupPlatform.keys()):
raise Exception("Sorry, satellite platform not supported for index computation!")
return lookupPlatform[platformDict['platform']](img)
def _get_indices():
'''Retrieves the dictionary of indices used for the index() method in ee.Image and ee.ImageCollection classes.
Returns
-------
dict
Indices.
'''
vegetationIndices = {
'BNDVI' : {
'formula' : '(N - B)/(N + B)',
'description' : 'Blue Normalized Difference Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','B'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=135',
'contributor' : 'davemlz'
},
'CIG' : {
'formula' : '(N / G) - 1.0',
'description' : 'Blue Normalized Difference Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','G'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=128',
'contributor' : 'davemlz'
},
'CVI' : {
'formula' : '(N * R) / (G ** 2.0)',
'description' : 'Chlorophyll Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','R','G'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=391',
'contributor' : 'davemlz'
},
'EVI' : {
'formula' : 'g * (N - R) / (N + C1 * R - C2 * B + L)',
'description' : 'Enhanced Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','g','R','C1','C2','B','L'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=16',
'contributor' : 'davemlz'
},
'EVI2' : {
'formula' : 'g * (N - R) / (N + 2.4 * R + L)',
'description' : 'Two-Band Enhanced Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','g','R','L'],
'reference' : 'https://doi.org/10.1016/j.rse.2008.06.006',
'contributor' : 'davemlz'
},
'GARI' : {
'formula' : '(N - (G - (B - R))) / (N - (G + (B - R)))',
'description' : 'Green Atmospherically Resistant Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','G','B','R'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=363',
'contributor' : 'davemlz'
},
'GBNDVI' : {
'formula' : '(N - (G + B))/(N + (G + B))',
'description' : 'Green-Blue Normalized Difference Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','B','G'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=186',
'contributor' : 'davemlz'
},
'GEMI' : {
'formula' : '((2.0*((N ** 2.0)-(R ** 2.0)) + 1.5*N + 0.5*R)/(N + R + 0.5))*(1.0 - 0.25*((2.0 * ((N ** 2.0) - (R ** 2)) + 1.5 * N + 0.5 * R)/(N + R + 0.5)))-((R - 0.125)/(1 - R))',
'description' : 'Global Environment Monitoring Index',
'type' : 'vegetation',
'requires' : ['N','R'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=25',
'contributor' : 'davemlz'
},
'GLI' : {
'formula' : '(2.0 * G - R - B) / (2.0 * G + R + B)',
'description' : 'Green Leaf Index',
'type' : 'vegetation',
'requires' : ['G','B','R'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=375',
'contributor' : 'davemlz'
},
'GNDVI' : {
'formula' : '(N - G)/(N + G)',
'description' : 'Green Normalized Difference Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','G'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=401',
'contributor' : 'davemlz'
},
'GRNDVI' : {
'formula' : '(N - (G + R))/(N + (G + R))',
'description' : 'Green-Red Normalized Difference Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','G','R'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=185',
'contributor' : 'davemlz'
},
'GVMI' : {
'formula' : '((N + 0.1) - (S2 + 0.02)) / ((N + 0.1) + (S2 + 0.02))',
'description' : 'Global Vegetation Moisture Index',
'type' : 'vegetation',
'requires' : ['N','S2'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=372',
'contributor' : 'davemlz'
},
'MNDVI' : {
'formula' : '(N - S2)/(N + S2)',
'description' : 'Modified Normalized Difference Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','S2'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=245',
'contributor' : 'davemlz'
},
'NDVI' : {
'formula' : '(N - R)/(N + R)',
'description' : 'Normalized Difference Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','R'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=58',
'contributor' : 'davemlz'
},
'NGRDI' : {
'formula' : '(G - R) / (G + R)',
'description' : 'Normalized Green Red Difference Index',
'type' : 'vegetation',
'requires' : ['G','R'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=390',
'contributor' : 'davemlz'
},
'RVI' : {
'formula' : 'N / R',
'description' : 'Ratio Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','R'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=72',
'contributor' : 'davemlz'
},
'SAVI' : {
'formula' : '(1.0 + L) * (N - R) / (N + R + L)',
'description' : 'Soil-Adjusted Vegetation Index',
'type' : 'vegetation',
'requires' : ['N','R','L'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=87',
'contributor' : 'davemlz'
},
'VARI' : {
'formula' : '(G - R) / (G + R - B)',
'description' : 'Visible Atmospherically Resistant Index',
'type' : 'vegetation',
'requires' : ['G','R','B'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=356',
'contributor' : 'davemlz'
},
}
burnIndices = {
'BAI' : {
'formula' : '1.0 / ((0.1 - R) ** 2.0 + (0.06 - N) ** 2.0)',
'description' : 'Burned Area Index',
'type' : 'burn',
'requires' : ['N','R'],
'reference' : 'https://digital.csic.es/bitstream/10261/6426/1/Martin_Isabel_Serie_Geografica.pdf',
'contributor' : 'davemlz'
},
'BAIS2' : {
'formula' : '(1.0 - ((RE2 * RE3 * RE4) / R) ** 0.5) * (((S2 - RE4)/(S2 + RE4) ** 0.5) + 1.0)',
'description' : 'Burned Area Index for Sentinel 2',
'type' : 'burn',
'requires' : ['RE2','RE3','RE4','R','S2'],
'reference' : 'https://doi.org/10.3390/ecrs-2-05177',
'contributor' : 'davemlz'
},
'CSIT' : {
'formula' : 'N / (S2 * T1 / 10000.0)',
'description' : 'Char Soil Index Thermal',
'type' : 'burn',
'requires' : ['N','S2','T1'],
'reference' : 'https://doi.org/10.1080/01431160600954704',
'contributor' : 'davemlz'
},
'NBR' : {
'formula' : '(N - S2) / (N + S2)',
'description' : 'Normalized Burn Ratio',
'type' : 'burn',
'requires' : ['N','S2'],
'reference' : 'https://www.indexdatabase.de/db/i-single.php?id=53',
'contributor' : 'davemlz'
},
'NBRT' : {
'formula' : '(N - (S2 * T1 / 10000.0)) / (N + (S2 * T1 / 10000.0))',
'description' : 'Normalized Burn Ratio Thermal',
'type' : 'burn',
'requires' : ['N','S2','T1'],
'reference' : 'https://doi.org/10.1080/01431160500239008',
'contributor' : 'davemlz'
},
'NDVIT' : {
'formula' : '(N - (R * T1 / 10000.0))/(N + (R * T1 / 10000.0))',
'description' : 'Normalized Difference Vegetation Index Thermal',
'type' : 'burn',
'requires' : ['N','R','T1'],
'reference' : 'https://doi.org/10.1080/01431160600954704',
'contributor' : 'davemlz'
},
'SAVIT' : {
'formula' : '(1.0 + L) * (N - (R * T1 / 10000.0)) / (N + (R * T1 / 10000.0) + L)',
'description' : 'Soil-Adjusted Vegetation Index Thermal',
'type' : 'burn',
'requires' : ['N','R','L','T1'],
'reference' : 'https://doi.org/10.1080/01431160600954704',
'contributor' : 'davemlz'
},
}
waterIndices = {
'MNDWI' : {
'formula' : '(G - S1) / (G + S1)',
'description' : 'Modified Normalized Difference Water Index',
'type' : 'water',
'requires' : ['G','S1'],
'reference' : 'https://doi.org/10.1080/01431160600589179',
'contributor' : 'davemlz'
},
'NDWI' : {
'formula' : '(G - N) / (G + N)',
'description' : 'Normalized Difference Water Index',
'type' : 'water',
'requires' : ['G','N'],
'reference' : 'https://doi.org/10.1080/01431169608948714',
'contributor' : 'davemlz'
},
}
snowIndices = {
'NDSI' : {
'formula' : '(G - S1) / (G + S1)',
'description' : 'Normalized Difference Snow Index',
'type' : 'snow',
'requires' : ['G','S1'],
'reference' : 'https://doi.org/10.1109/IGARSS.1994.399618',
'contributor' : 'davemlz'
},
}
droughtIndices = {
'NDDI' : {
'formula' : '(((N - R)/(N + R)) - ((G - N)/(G + N)))/(((N - R)/(N + R)) + ((G - N)/(G + N)))',
'description' : 'Normalized Difference Drought Index',
'type' : 'drought',
'requires' : ['N','R','G'],
'reference' : 'https://doi.org/10.1029/2006GL029127',
'contributor' : 'davemlz'
},
}
kernelIndices = {
'kEVI' : {
'formula' : 'g * (kNN - kNR) / (kNN + C1 * kNR - C2 * kNB + kNL)',
'description' : 'Kernel Enhanced Vegetation Index',
'type' : 'kernel',
'requires' : ['kNN','g','kNR','C1','C2','kNB','kNL'],
'reference' : 'https://doi.org/10.1126/sciadv.abc7447',
'contributor' : 'davemlz'
},
'kNDVI' : {
'formula' : '(kNN - kNR)/(kNN + kNR)',
'description' : 'Kernel Normalized Difference Vegetation Index',
'type' : 'kernel',
'requires' : ['kNN','kNR'],
'reference' : 'https://doi.org/10.1126/sciadv.abc7447',
'contributor' : 'davemlz'
},
'kRVI' : {
'formula' : 'kNN / kNR',
'description' : 'Kernel Ratio Vegetation Index',
'type' : 'kernel',
'requires' : ['kNN','kNR'],
'reference' : 'https://doi.org/10.1126/sciadv.abc7447',
'contributor' : 'davemlz'
},
'kVARI' : {
'formula' : '(kGG - kGR) / (kGG + kGR - kGB)',
'description' : 'Kernel Visible Atmospherically Resistant Index',
'type' : 'kernel',
'requires' : ['kGG','kGR','kGB'],
'reference' : 'https://doi.org/10.1126/sciadv.abc7447',
'contributor' : 'davemlz'
},
}
indices = {**vegetationIndices, **burnIndices, **waterIndices, **snowIndices, **droughtIndices, **kernelIndices}
return indices
def _get_kernel_image(img,lookup,kernel,sigma,a,b):
'''Creates an ee.Image representing a kernel computed on bands [a] and [b].
Parameters
----------
img : ee.Image
Image to compute the kernel on.
lookup : dict
Dictionary retrieved from _get_expression_map().
kernel : str
Kernel to use.
sigma : str | float
Length-scale parameter. Used for kernel = 'RBF'.
a : str
Key of the first band to use.
b : str
Key of the second band to use.
Returns
-------
ee.Image
Kernel image.
'''
if a not in list(lookup.keys()) or b not in list(lookup.keys()):
return None
else:
lookupab = {
'a': lookup[a],
'b': lookup[b]
}
if isinstance(sigma,str):
lookup = {**lookup, **lookupab, 'sigma': img.expression(sigma,lookupab)}
else:
lookup = {**lookup, **lookupab, 'sigma': sigma}
kernels = {
'linear' : 'a * b',
'RBF': 'exp((-1.0 * (a - b) ** 2.0)/(2.0 * sigma ** 2.0))',
'poly': '((a * b) + c) ** p',
}
return img.expression(kernels[kernel],lookup)
def _remove_none_dict(dictionary):
'''Removes elements from a dictionary with None values.
Parameters
----------
dictionary : dict
Returns
-------
dict
Curated dictionary.
'''
newDictionary = dict(dictionary)
for key in dictionary.keys():
if dictionary[key] is None:
del newDictionary[key]
return newDictionary
def _get_kernel_parameters(img,lookup,kernel,sigma):
'''Gets the additional kernel parameters to compute kernel indices.
Parameters
----------
img : ee.Image
Image to compute the kernel parameters on.
lookup : dict
Dictionary retrieved from _get_expression_map().
kernel : str
Kernel to use.
sigma : str | float
Length-scale parameter. Used for kernel = 'RBF'.
Returns
-------
dict
Kernel parameters.
'''
kernelParameters = {
'kNN' : _get_kernel_image(img,lookup,kernel,sigma,'N','N'),
'kNR' : _get_kernel_image(img,lookup,kernel,sigma,'N','R'),
'kNB' : _get_kernel_image(img,lookup,kernel,sigma,'N','B'),
'kNL' : _get_kernel_image(img,lookup,kernel,sigma,'N','L'),
'kGG' : _get_kernel_image(img,lookup,kernel,sigma,'G','G'),
'kGR' : _get_kernel_image(img,lookup,kernel,sigma,'G','R'),
'kGB' : _get_kernel_image(img,lookup,kernel,sigma,'G','B'),
}
return kernelParameters
def _index(self,index,G,C1,C2,L,kernel,sigma,p,c):
'''Computes one or more spectral indices (indices are added as bands) for an image oir image collection.
Parameters
----------
self : ee.Image | ee.ImageCollection
Image to compute indices on. Must be scaled to [0,1]. Check the supported platforms in User Guide > Spectral Indices > Supported Platforms.
index : string | list[string]
Index or list of indices to compute.
G : float
Gain factor. Used just for index = 'EVI'.
C1 : float
Coefficient 1 for the aerosol resistance term. Used just for index = 'EVI'.
C2 : float
Coefficient 2 for the aerosol resistance term. Used just for index = 'EVI'.
L : float
Canopy background adjustment. Used just for index = ['EVI','SAVI'].
kernel : str
Kernel used for kernel indices.
sigma : str | float
Length-scale parameter. Used for kernel = 'RBF'. If str, this must be an expression including 'a' and 'b'. If numeric, this must be positive.
p : float
Kernel degree. Used for kernel = 'poly'.
c : float
Free parameter that trades off the influence of higher-order versus lower-order terms. Used for kernel = 'poly'. This must be greater than or equal to 0.
Returns
-------
ee.Image | ee.ImageCollection
Image (or Image Collection) with the computed spectral index, or indices, as new bands.
'''
platformDict = _get_platform(self)
if isinstance(sigma,int) or isinstance(sigma,float):
if sigma < 0:
raise Exception('[sigma] must be positive!')
if p <= 0 or c < 0:
raise Exception('[p] and [c] must be positive!')
additionalParameters = {
'g': float(G),
'C1': float(C1),
'C2': float(C2),
'L': float(L),
'p': float(p),
'c': float(c)
}
spectralIndices = _get_indices()
indicesNames = list(spectralIndices.keys())
if not isinstance(index, list):
if index == 'all':
index = list(spectralIndices.keys())
elif index in ['vegetation','burn','water','snow','drought','kernel']:
temporalListOfIndices = []
for idx in indicesNames:
if spectralIndices[idx]['type'] == index:
temporalListOfIndices.append(idx)
index = temporalListOfIndices
else:
index = [index]
for idx in index:
if idx not in list(spectralIndices.keys()):
warnings.warn("Index " + idx + " is not a built-in index and it won't be computed!",Warning)
else:
def temporalIndex(img):
lookupDic = _get_expression_map(img, platformDict)
lookupDic = {**lookupDic, **additionalParameters}
kernelParameters = _get_kernel_parameters(img,lookupDic,kernel,sigma)
lookupDic = {**lookupDic, **kernelParameters}
lookupDicCurated = _remove_none_dict(lookupDic)
if all(band in list(lookupDicCurated.keys()) for band in spectralIndices[idx]['requires']):
return img.addBands(img.expression(spectralIndices[idx]['formula'],lookupDicCurated).rename(idx))
else:
warnings.warn("This platform doesn't have the required bands for " + idx + " computation!",Warning)
return img
if isinstance(self,ee.imagecollection.ImageCollection):
self = self.map(temporalIndex)
elif isinstance(self,ee.image.Image):
self = temporalIndex(self)
return self
def indices():
'''Gets the dictionary of available indices as a Box object.
Returns
-------
Box
Dictionary of available indices. For each index, the keys 'description', 'formula', 'requires', 'reference' and 'contributor' can be checked.
See Also
--------
listIndices : Gets the list of available indices.
Examples
--------
>>> import eemont
>>> indices = eemont.indices()
>>> indices.BAIS2.description
'Burned Area Index for Sentinel 2'
>>> indices.BAIS2.formula
'(1.0 - ((RE2 * RE3 * RE4) / R) ** 0.5) * (((S2 - RE4)/(S2 + RE4) ** 0.5) + 1.0)'
>>> indices.BAIS2.reference
'https://doi.org/10.3390/ecrs-2-05177'
'''
return Box(_get_indices(),frozen_box = True)
def listIndices():
'''Gets the list of available indices.
Returns
-------
list
List of available indices.
See Also
--------
indices : Gets the dictionary of available indices as a Box object.
Examples
--------
>>> import eemont
>>> eemont.listIndices()
['BNDVI','CIG','CVI','EVI','EVI2','GBNDVI','GNDVI',...]
'''
return list(_get_indices().keys())
def _get_platform(args):
'''Gets the platform (satellite) of an image (or image collection) and wheter if it is a Surface Reflectance product.
Parameters
----------
args : ee.Image | ee.ImageCollection
Image to get platform.
Returns
-------
dict
Platform and product of the image (or image collection).
'''
platforms = [
'COPERNICUS/S3',
'COPERNICUS/S2',
'LANDSAT/LC08',
'LANDSAT/LE07',
'LANDSAT/LT05',
'LANDSAT/LT04',
'MODIS/006/MCD43A4',
'MODIS/006/MCD43A3',
'MODIS/006/MOD09GQ',
'MODIS/006/MOD10A1',
'MODIS/006/MOD11A1',
'MODIS/006/MOD09GA',
'MODIS/006/MODOCGA',
'MODIS/006/MOD14A1',
'MODIS/006/MCD43A1',
'MODIS/006/MCD15A3H',
'MODIS/006/MOD09Q1',
'MODIS/006/MOD09A1',
'MODIS/006/MOD11A2',
'MODIS/006/MOD17A2H',
'MODIS/006/MOD16A2',
'MODIS/006/MOD13Q1',
'MODIS/006/MOD13A1',
'MODIS/006/MOD13A2',
'MODIS/061/MOD08_M3',
'MODIS/006/MOD17A3HGF',
'MODIS/006/MYD09GQ',
'MODIS/006/MYD10A1',
'MODIS/006/MYD11A1',
'MODIS/006/MYD09GA',
'MODIS/006/MYDOCGA',
'MODIS/006/MYD14A1',
'MODIS/006/MYD09Q1',
'MODIS/006/MYD09A1',
'MODIS/006/MYD11A2',
'MODIS/006/MYD17A2H',
'MODIS/006/MYD13Q1',
'MODIS/006/MYD13A1',
'MODIS/006/MYD13A2',
'MODIS/061/MYD08_M3',
'MODIS/006/MYD17A3HGF',
'NOAA/VIIRS/001/VNP09GA',
'NOAA/VIIRS/001/VNP13A1'
]
if isinstance(args, ee.imagecollection.ImageCollection):
imgID = args.first().get('system:id').getInfo()
elif isinstance(args, ee.image.Image):
imgID = args.get('system:id').getInfo()
else:
raise Exception("Sorry, just ee.Image or ee.ImageCollection classes supported!")
plt = None
for platform in platforms:
if platform in imgID:
plt = platform
if '_SR' in imgID:
platformDict = {'platform': plt, 'sr': True}
else:
platformDict = {'platform': plt, 'sr': False}
if plt is None:
raise Exception("Sorry, satellite platform not supported!")
return platformDict
def _get_scale_method(platformDict):
'''Gets the scale algorithms for the scale() method in ee.Imge and ee.ImageCollection.
Parameters
----------
platformDict : dict
Dictionary retrieved from the _get_platform() method.
Returns
-------
dict
Lookup dictionary for scale algorithms.
'''
def S3(img):
scalars = [
0.0139465,
0.0133873,
0.0121481,
0.0115198,
0.0100953,
0.0123538,
0.00879161,
0.00876539,
0.0095103,
0.00773378,
0.00675523,
0.0071996,
0.00749684,
0.0086512,
0.00526779,
0.00530267,
0.00493004,
0.00549962,
0.00502847,
0.00326378,
0.00324118
]
scaled = img.select(['Oa.*']).multiply(scalars).addBands(img.select('quality_flags'))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def S2(img):
scaled = img.select(['B.*']).divide(1e4)
scaled = scaled.addBands(img.select(['Q.*']))
if platformDict['sr']:
scaled = scaled.addBands(img.select(['AOT','WVP']).divide(1e3))
scaled = scaled.addBands(img.select(['T.*']))
scaled = scaled.addBands(img.select('SCL'))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def L8(img):
if platformDict['sr']:
scaled = img.select(['B[1-9]']).divide(1e4)
scaled = scaled.addBands(img.select(['B10','B11']).divide(10))
scaled = scaled.addBands(img.select(['sr_aerosol','pixel_qa','radsat_qa']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
else:
warnings.warn("TOA reflectance for Landsat 8 is already scaled!",Warning)
pass
def L457(img):
if platformDict['sr']:
scaled = img.select(['B[1-5]','B7']).divide(1e4)
scaled = scaled.addBands(img.select(['B6']).divide(10))
scaled = scaled.addBands(img.select(['sr_atmos_opacity']).divide(1e3))
scaled = scaled.addBands(img.select(['sr_cloud_qa','pixel_qa','radsat_qa']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
else:
warnings.warn("TOA reflectance for Landsat 4, 5 and 7 is already scaled!",Warning)
pass
def MCD43A4(img):
scaled = img.select(['Nadir.*']).divide(1e4)
scaled = scaled.addBands(img.select(['BRDF.*']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MCD43A3(img):
scaled = img.select(['Albedo.*']).divide(1e3)
scaled = scaled.addBands(img.select(['BRDF.*']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD09GQ(img):
scaled = img.select(['sur.*']).divide(1e4)
scaled = scaled.addBands(img.select(['obscov']).divide(100))
scaled = scaled.addBands(img.select(['num_observations','QC_250m','iobs_res','orbit_pnt','granule_pnt']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD10A1(img):
scaled = img.select(['NDSI']).divide(1e4)
scaled = scaled.addBands(img.select(['NDSI_Snow.*']))
scaled = scaled.addBands(img.select(['Snow.*']))
scaled = scaled.addBands(img.select(['orbit_pnt','granule_pnt']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD11A1(img):
scaled = img.select(['LST.*']).multiply(0.02)
scaled = scaled.addBands(img.select(['Day_view_time','Night_view_time']).multiply(0.1))
scaled = scaled.addBands(img.select(['Emis.*']).multiply(0.002))
scaled = scaled.addBands(img.select(['Clear.*']).multiply(0.0005))
scaled = scaled.addBands(img.select(['QC_Day','Day_view_angle','QC_Night','Night_view_angle']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD09GA(img):
scaled = img.select(['sur.*']).multiply(0.0001)
scaled = scaled.addBands(img.select(['Sensor.*']).multiply(0.01))
scaled = scaled.addBands(img.select(['Solar.*']).multiply(0.01))
scaled = scaled.addBands(img.select(['Range']).multiply(25))
scaled = scaled.addBands(img.select(['num_observations_1km','state_1km','gflags','orbit_pnt','granule_pnt','num_observations_500m','QC_500m','obscov_500m','iobs_res','q_scan']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MODOCGA(img):
scaled = img.select(['sur.*']).multiply(0.0001)
scaled = scaled.addBands(img.select(['num_observations','orbit_pnt','granule_pnt']))
scaled = scaled.addBands(img.select(['QC.*']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD14A1(img):
scaled = img.select(['MaxFRP']).multiply(0.1)
scaled = scaled.addBands(img.select(['FireMask','sample','QA']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MCD43A1(img):
scaled = img.select(['BRDF_Albedo_Parameters.*']).multiply(0.001)
scaled = scaled.addBands(img.select(['BRDF_Albedo_Band.*']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MCD15A3H(img):
scaled = img.select(['Fpar','FparStdDev']).multiply(0.01)
scaled = scaled.addBands(img.select(['Lai','LaiStdDev']).multiply(0.1))
scaled = scaled.addBands(img.select(['FparLai_QC','FparExtra_QC']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD09Q1(img):
scaled = img.select(['sur.*']).divide(1e4)
scaled = scaled.addBands(img.select(['State','QA']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD09A1(img):
scaled = img.select(['sur.*']).divide(1e4)
scaled = scaled.addBands(img.select(['SolarZenith','ViewZenith','RelativeAzimuth']).multiply(0.01))
scaled = scaled.addBands(img.select(['QA','StateQA','DayOfYear']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD11A2(img):
scaled = img.select(['LST.*']).multiply(0.02)
scaled = scaled.addBands(img.select(['Day_view_time','Night_view_time']).multiply(0.1))
scaled = scaled.addBands(img.select(['Emis.*']).multiply(0.002).add(0.49))
scaled = scaled.addBands(img.select(['Day_view_angl','Night_view_angl']).subtract(65))
scaled = scaled.addBands(img.select(['QC_Day','QC_Night','Clear_sky_days','Clear_sky_nights']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD17A2H(img):
scaled = img.select(['Gpp','PsnNet']).multiply(0.0001)
scaled = scaled.addBands(img.select(['Psn_QC']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD16A2(img):
scaled = img.select(['ET','PET']).multiply(0.1)
scaled = scaled.addBands(img.select(['LE','PLE']).multiply(0.0001))
scaled = scaled.addBands(img.select(['ET_QC']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD13Q1(img):
scaled = img.select(['NDVI','EVI']).multiply(0.0001)
scaled = scaled.addBands(img.select(['sur.*']).multiply(0.0001))
scaled = scaled.addBands(img.select(['ViewZenith','SolarZenith','RelativeAzimuth']).multiply(0.01))
scaled = scaled.addBands(img.select(['DetailedQA','DayOfYear','SummaryQA']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD13A1(img):
scaled = img.select(['NDVI','EVI']).multiply(0.0001)
scaled = scaled.addBands(img.select(['sur.*']).multiply(0.0001))
scaled = scaled.addBands(img.select(['ViewZenith','SolarZenith','RelativeAzimuth']).multiply(0.01))
scaled = scaled.addBands(img.select(['DetailedQA','DayOfYear','SummaryQA']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD13A2(img):
scaled = img.select(['NDVI','EVI']).multiply(0.0001)
scaled = scaled.addBands(img.select(['sur.*']).multiply(0.0001))
scaled = scaled.addBands(img.select(['ViewZenith','SolarZenith','RelativeAzimuth']).multiply(0.01))
scaled = scaled.addBands(img.select(['DetailedQA','DayOfYear','SummaryQA']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD08_M3(img):
scaled = img.select(['Aerosol.*']).multiply(0.001)
scaled = scaled.addBands(img.select(['Cirrus.*']).multiply(0.0001))
scaled = scaled.addBands(img.select(['Cloud_Optical_Thickness_Liquid_Log.*']).multiply(0.001))
scaled = scaled.addBands(img.select(['Cloud_Optical_Thickness_Liquid_Mean_Uncertainty']).multiply(0.01))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def MOD17A3HGF(img):
scaled = img.select(['Npp']).multiply(0.0001)
scaled = scaled.addBands(img.select(['Npp_QC']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def VNP09GA(img):
scaled = img.select(['M.*','I.*']).multiply(0.0001)
scaled = scaled.addBands(img.select(['Sensor.*','Solar.*']).multiply(0.01))
scaled = scaled.addBands(img.select(['iobs_res','num.*','o.*','QF.*']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
def VNP13A1(img):
scaled = img.select(['EVI','EVI2','NDVI']).multiply(0.0001)
scaled = scaled.addBands(img.select(['NIR.*','SWIR.*','VI.*','red.*','green.*','blue.*','composite.*','pixel.*','relative.*','sun.*','view.*']))
return ee.Image(scaled.copyProperties(img,img.propertyNames()))
lookup = {
'COPERNICUS/S3': S3,
'COPERNICUS/S2': S2,
'LANDSAT/LC08': L8,
'LANDSAT/LE07': L457,
'LANDSAT/LT05': L457,
'LANDSAT/LT04': L457,
'MODIS/006/MCD43A4': MCD43A4,
'MODIS/006/MCD43A3': MCD43A3,
'MODIS/006/MOD09GQ': MOD09GQ,
'MODIS/006/MOD10A1': MOD10A1,
'MODIS/006/MOD11A1': MOD11A1,
'MODIS/006/MOD09GA': MOD09GA,
'MODIS/006/MODOCGA': MODOCGA,
'MODIS/006/MOD14A1': MOD14A1,
'MODIS/006/MCD43A1': MCD43A1,
'MODIS/006/MCD15A3H': MCD15A3H,
'MODIS/006/MOD09Q1': MOD09Q1,
'MODIS/006/MOD09A1': MOD09A1,
'MODIS/006/MOD11A2': MOD11A2,
'MODIS/006/MOD17A2H': MOD17A2H,
'MODIS/006/MOD16A2': MOD16A2,
'MODIS/006/MOD13Q1': MOD13Q1,
'MODIS/006/MOD13A1': MOD13A1,
'MODIS/006/MOD13A2': MOD13A2,
'MODIS/061/MOD08_M3': MOD08_M3,
'MODIS/006/MOD17A3HGF': MOD17A3HGF,
'MODIS/006/MYD09GQ': MOD09GQ,
'MODIS/006/MYD10A1': MOD10A1,
'MODIS/006/MYD11A1': MOD11A1,
'MODIS/006/MYD09GA': MOD09GA,
'MODIS/006/MYDOCGA': MODOCGA,
'MODIS/006/MYD14A1': MOD14A1,
'MODIS/006/MYD09Q1': MOD09Q1,
'MODIS/006/MYD09A1': MOD09A1,
'MODIS/006/MYD11A2': MOD11A2,
'MODIS/006/MYD17A2H': MOD17A2H,
'MODIS/006/MYD13Q1': MOD13Q1,
'MODIS/006/MYD13A1': MOD13A1,
'MODIS/006/MYD13A2': MOD13A2,
'MODIS/061/MYD08_M3': MOD08_M3,
'MODIS/006/MYD17A3HGF': MOD17A3HGF,
'NOAA/VIIRS/001/VNP09GA': VNP09GA,
'NOAA/VIIRS/001/VNP13A1': VNP13A1
}
return lookup
def _scale(self):
'''Scales bands on an image or image collection.
Parameters
----------
self : ee.Image | ee.ImageCollection
Image or iage collection to scale.
Returns
-------
ee.Image | ee.ImageCollection
Scaled image or image collection.
'''
platformDict = _get_platform(self)
lookup = _get_scale_method(platformDict)
if platformDict['platform'] not in list(lookup.keys()):
raise Exception("Sorry, satellite platform not supported for scaling!")
if isinstance(self,ee.image.Image):
scaled = lookup[platformDict['platform']](self)
elif isinstance(self,ee.imagecollection.ImageCollection):
scaled = self.map(lookup[platformDict['platform']])
return scaled
def _maskClouds(self,method,prob,maskCirrus,maskShadows,scaledImage,dark,cloudDist,buffer,cdi):
'''Masks clouds and shadows in an image or image collection (valid just for Surface Reflectance products).
Parameters
----------
self : ee.Image | ee.ImageCollection
Image or image collection to mask.
method : string, default = 'cloud_prob'
Method used to mask clouds.\n
Available options:
- 'cloud_prob' : Use cloud probability.
- 'qa' : Use Quality Assessment band.
This parameter is ignored for Landsat products.
prob : numeric [0, 100], default = 60
Cloud probability threshold. Valid just for method = 'prob'. This parameter is ignored for Landsat products.
maskCirrus : boolean, default = True
Whether to mask cirrus clouds. Valid just for method = 'qa'. This parameter is ignored for Landsat products.
maskShadows : boolean, default = True
Whether to mask cloud shadows. For more info see 'Braaten, J. 2020. Sentinel-2 Cloud Masking with s2cloudless. Google Earth Engine, Community Tutorials'.
scaledImage : boolean, default = False
Whether the pixel values are scaled to the range [0,1] (reflectance values). This parameter is ignored for Landsat products.
dark : float [0,1], default = 0.15
NIR threshold. NIR values below this threshold are potential cloud shadows. This parameter is ignored for Landsat products.
cloudDist : int, default = 1000
Maximum distance in meters (m) to look for cloud shadows from cloud edges. This parameter is ignored for Landsat products.
buffer : int, default = 250
Distance in meters (m) to dilate cloud and cloud shadows objects. This parameter is ignored for Landsat products.
cdi : float [-1,1], default = None
Cloud Displacement Index threshold. Values below this threshold are considered potential clouds.
A cdi = None means that the index is not used. For more info see 'Frantz, D., HaS, E., Uhl, A., Stoffels, J., Hill, J. 2018. Improvement of the Fmask algorithm for Sentinel-2 images:
Separating clouds from bright surfaces based on parallax effects. Remote Sensing of Environment 2015: 471-481'.
This parameter is ignored for Landsat products.
Returns
-------
ee.Image | ee.ImageCollection
Cloud-shadow masked image or image collection.
'''
def S3(args):
qa = args.select('quality_flags')
notCloud = qa.bitwiseAnd(1 << 27).eq(0);
return args.updateMask(notCloud)
def S2(args):
def cloud_prob(img):
clouds = ee.Image(img.get('cloud_mask')).select('probability')
isCloud = clouds.gte(prob).rename('CLOUD_MASK')
return img.addBands(isCloud)
def QA(img):
qa = img.select('QA60')
cloudBitMask = 1 << 10
isCloud = qa.bitwiseAnd(cloudBitMask).eq(0)
if maskCirrus:
cirrusBitMask = 1 << 11
isCloud = isCloud.And(qa.bitwiseAnd(cirrusBitMask).eq(0))
isCloud = isCloud.Not().rename('CLOUD_MASK')
return img.addBands(isCloud)
def CDI(img):
idx = img.get('system:index')
S2TOA = ee.ImageCollection('COPERNICUS/S2').filter(ee.Filter.eq('system:index',idx)).first()
CloudDisplacementIndex = ee.Algorithms.Sentinel2.CDI(S2TOA)
isCloud = CloudDisplacementIndex.lt(cdi).rename('CLOUD_MASK_CDI')
return img.addBands(isCloud)
def get_shadows(img):
notWater = img.select('SCL').neq(6)
if not scaledImage:
darkPixels = img.select('B8').lt(dark * 1e4).multiply(notWater)
else:
darkPixels = img.select('B8').lt(dark).multiply(notWater)
shadowAzimuth = ee.Number(90).subtract(ee.Number(img.get('MEAN_SOLAR_AZIMUTH_ANGLE')))
cloudProjection = img.select('CLOUD_MASK').directionalDistanceTransform(shadowAzimuth,cloudDist/10)
cloudProjection = cloudProjection.reproject(crs = img.select(0).projection(),scale = 10).select('distance').mask()
isShadow = cloudProjection.multiply(darkPixels).rename('SHADOW_MASK')
return img.addBands(isShadow)
def clean_dilate(img):
isCloudShadow = img.select('CLOUD_MASK')
if cdi != None:
isCloudShadow = isCloudShadow.And(img.select('CLOUD_MASK_CDI'))
if maskShadows:
isCloudShadow = isCloudShadow.add(img.select('SHADOW_MASK')).gt(0)
isCloudShadow = isCloudShadow.focal_min(20,units = 'meters').focal_max(buffer*2/10,units = 'meters').rename('CLOUD_SHADOW_MASK')
return img.addBands(isCloudShadow)
def apply_mask(img):
return img.updateMask(img.select('CLOUD_SHADOW_MASK').Not())
if isinstance(self,ee.image.Image):
if method == 'cloud_prob':
S2Clouds = ee.ImageCollection('COPERNICUS/S2_CLOUD_PROBABILITY')
fil = ee.Filter.equals(leftField = 'system:index',rightField = 'system:index')
S2WithCloudMask = ee.Join.saveFirst('cloud_mask').apply(ee.ImageCollection(args),S2Clouds,fil)
S2Masked = ee.ImageCollection(S2WithCloudMask).map(cloud_prob).first()
elif method == 'qa':
S2Masked = QA(args)
if cdi != None:
S2Masked = CDI(S2Masked)
if maskShadows:
S2Masked = get_shadows(S2Masked)
S2Masked = apply_mask(clean_dilate(S2Masked))
elif isinstance(self,ee.imagecollection.ImageCollection):
if method == 'cloud_prob':
S2Clouds = ee.ImageCollection('COPERNICUS/S2_CLOUD_PROBABILITY')
fil = ee.Filter.equals(leftField = 'system:index',rightField = 'system:index')
S2WithCloudMask = ee.Join.saveFirst('cloud_mask').apply(args,S2Clouds,fil)
S2Masked = ee.ImageCollection(S2WithCloudMask).map(cloud_prob)
elif method == 'qa':
S2Masked = args.map(QA)
if cdi != None:
S2Masked = S2Masked.map(CDI)
if maskShadows:
S2Masked = S2Masked.map(get_shadows)
S2Masked = S2Masked.map(clean_dilate).map(apply_mask)
return S2Masked
def L8(args):
cloudsBitMask = (1 << 5)
qa = args.select('pixel_qa')
mask = qa.bitwiseAnd(cloudsBitMask).eq(0)
if maskShadows:
cloudShadowBitMask = (1 << 3)
mask = mask.And(qa.bitwiseAnd(cloudShadowBitMask).eq(0))
return args.updateMask(mask)
def L457(args):
qa = args.select('pixel_qa')
cloud = qa.bitwiseAnd(1 << 5).And(qa.bitwiseAnd(1 << 7))
if maskShadows:
cloud = cloud.Or(qa.bitwiseAnd(1 << 3))
mask2 = args.mask().reduce(ee.Reducer.min());
return args.updateMask(cloud.Not()).updateMask(mask2)
def MOD09GA(args):
qa = args.select('state_1km')
notCloud = qa.bitwiseAnd(1 << 0).eq(0)
if maskShadows:
notCloud = notCloud.And(qa.bitwiseAnd(1 << 2).eq(0))
if maskCirrus:
notCloud = notCloud.And(qa.bitwiseAnd(1 << 8).eq(0))
return args.updateMask(notCloud)
def MCD15A3H(args):
qa = args.select('FparExtra_QC')
notCloud = qa.bitwiseAnd(1 << 5).eq(0)
if maskShadows:
notCloud = notCloud.And(qa.bitwiseAnd(1 << 6).eq(0))
if maskCirrus:
notCloud = notCloud.And(qa.bitwiseAnd(1 << 4).eq(0))
return args.updateMask(notCloud)
def MOD09Q1(args):
qa = args.select('State')
notCloud = qa.bitwiseAnd(1 << 0).eq(0)
if maskShadows:
notCloud = notCloud.And(qa.bitwiseAnd(1 << 2).eq(0))
if maskCirrus:
notCloud = notCloud.And(qa.bitwiseAnd(1 << 8).eq(0))
return args.updateMask(notCloud)
def MOD09A1(args):
qa = args.select('StateQA')
notCloud = qa.bitwiseAnd(1 << 0).eq(0)
if maskShadows:
notCloud = notCloud.And(qa.bitwiseAnd(1 << 2).eq(0))
if maskCirrus:
notCloud = notCloud.And(qa.bitwiseAnd(1 << 8).eq(0))
return args.updateMask(notCloud)
def MOD17A2H(args):
qa = args.select('Psn_QC')
notCloud = qa.bitwiseAnd(1 << 3).eq(0)
return args.updateMask(notCloud)
def MOD16A2(args):
qa = args.select('ET_QC')
notCloud = qa.bitwiseAnd(1 << 3).eq(0)
return args.updateMask(notCloud)
def MOD13Q1A1(args):
qa = args.select('SummaryQA')
notCloud = qa.bitwiseAnd(1 << 0).eq(0)
return args.updateMask(notCloud)
def MOD13A2(args):
qa = args.select('SummaryQA')
notCloud = qa.eq(0)
return args.updateMask(notCloud)
def VNP09GA(args):
qf1 = args.select('QF1')
qf2 = args.select('QF2')
notCloud = qf1.bitwiseAnd(1 << 2).eq(0)
if maskShadows:
notCloud = notCloud.And(qf2.bitwiseAnd(1 << 3).eq(0))
if maskCirrus:
notCloud = notCloud.And(qf2.bitwiseAnd(1 << 6).eq(0))
notCloud = notCloud.And(qf2.bitwiseAnd(1 << 7).eq(0))
return args.updateMask(notCloud)
def VNP13A1(args):
qa = args.select('pixel_reliability')
notCloud = qa.neq(9)
if maskShadows:
notCloud = notCloud.And(qa.neq(7))
return args.updateMask(notCloud)
lookup = {
'COPERNICUS/S3': S3,
'COPERNICUS/S2': S2,
'LANDSAT/LC08': L8,
'LANDSAT/LE07': L457,
'LANDSAT/LT05': L457,
'LANDSAT/LT04': L457,
'MODIS/006/MOD09GA': MOD09GA,
'MODIS/006/MCD15A3H': MCD15A3H,
'MODIS/006/MOD09Q1': MOD09Q1,
'MODIS/006/MOD09A1': MOD09A1,
'MODIS/006/MOD17A2H': MOD17A2H,
'MODIS/006/MOD16A2': MOD16A2,
'MODIS/006/MOD13Q1': MOD13Q1A1,
'MODIS/006/MOD13A1': MOD13Q1A1,
'MODIS/006/MOD13A2': MOD13A2,
'MODIS/006/MYD09GA': MOD09GA,
'MODIS/006/MYD09Q1': MOD09Q1,
'MODIS/006/MYD09A1': MOD09A1,
'MODIS/006/MYD17A2H': MOD17A2H,
'MODIS/006/MYD16A2': MOD16A2,
'MODIS/006/MYD13Q1': MOD13Q1A1,
'MODIS/006/MYD13A1': MOD13Q1A1,
'MODIS/006/MYD13A2': MOD13A2,
'NOAA/VIIRS/001/VNP09GA': VNP09GA,
'NOAA/VIIRS/001/VNP13A1': VNP13A1
}
platformDict = _get_platform(self)
if platformDict['platform'] not in list(lookup.keys()):
raise Exception("Sorry, satellite platform not supported for cloud masking!")
if isinstance(self,ee.image.Image):
masked = lookup[platformDict['platform']](self)
elif isinstance(self,ee.imagecollection.ImageCollection):
if platformDict['platform'] == 'COPERNICUS/S2':
masked = lookup[platformDict['platform']](self)
else:
masked = self.map(lookup[platformDict['platform']])
return masked | [
"[email protected]"
]
| |
31cacdabc898c72256c2b0a4659c67b8430622fd | ff768174490619c119d166273365dcc480e7201c | /tuiuiu/tuiuiuadmin/__init__.py | b0d735aa8ad231893e317bbee17f3854072723f8 | [
"BSD-3-Clause",
"LicenseRef-scancode-public-domain"
]
| permissive | caputomarcos/tuiuiu.io | 15ea9323be09b69efb6b88490c2bb558ffb4cc55 | d8fb57cf95487e7fe1454b2130ef18acc916da46 | refs/heads/master | 2022-03-02T12:56:43.889894 | 2017-09-23T22:53:51 | 2017-09-23T22:53:51 | 102,543,365 | 3 | 1 | NOASSERTION | 2022-02-02T10:46:32 | 2017-09-06T00:30:06 | Python | UTF-8 | Python | false | false | 68 | py | default_app_config = 'tuiuiu.tuiuiuadmin.apps.TuiuiuAdminAppConfig'
| [
"[email protected]"
]
| |
629ad7161947983e30003f917353693a04574f14 | ad1d46b4ec75ef1f00520ff246d0706c6bb7770e | /content/chapters/how-to-browse-sequences/25.py | e0850b41997e10de7e8f2f2fdf52af7e4fd0a553 | []
| no_license | roberto-arista/PythonForDesigners | 036f69bae73095b6f49254255fc473a8ab7ee7bb | 1a781ea7c7ee21e9c64771ba3bf5634ad550692c | refs/heads/master | 2022-02-24T15:28:04.167558 | 2021-09-07T10:37:01 | 2021-09-07T10:37:01 | 168,937,263 | 103 | 37 | null | 2022-02-11T02:24:01 | 2019-02-03T11:17:51 | Python | UTF-8 | Python | false | false | 234 | py | linesAmount = 4
newPage(100, 100)
stroke(0)
for eachLineIndex in range(linesAmount):
# the width() function provides the canvas width in pts
quota = width()/(linesAmount+1)*(eachLineIndex+1)
line((20, quota), (80, quota)) | [
"[email protected]"
]
| |
4ba530650c4721fb280087ccbc644b3749bde818 | f159aeec3408fe36a9376c50ebb42a9174d89959 | /908.Smallest-Range-I.py | 3508da6f00d256b33a6feb475eb1f2fc769042a6 | [
"MIT"
]
| permissive | mickey0524/leetcode | 83b2d11ab226fad5da7198bb37eeedcd8d17635a | fc5b1744af7be93f4dd01d6ad58d2bd12f7ed33f | refs/heads/master | 2023-09-04T00:01:13.138858 | 2023-08-27T07:43:53 | 2023-08-27T07:43:53 | 140,945,128 | 27 | 9 | null | null | null | null | UTF-8 | Python | false | false | 428 | py | # https://leetcode.com/problems/monotonic-array/description/
#
# algorithms
# Easy (65.12%)
# Total Accepted: 2.8k
# Total Submissions: 4.3k
class Solution(object):
def smallestRangeI(self, A, K):
"""
:type A: List[int]
:type K: int
:rtype: int
"""
if len(A) == 1:
return 0
diff = max(A) - min(A)
return 0 if diff <= 2 * K else diff - 2 * K
| [
"[email protected]"
]
| |
fa3751191ddf11b217c6eb670413a9adf50781c4 | cb61ba31b27b232ebc8c802d7ca40c72bcdfe152 | /leetcode/MaxSubArray/solution.py | bce136e8c8ff078608c00208d22aac159de2eb60 | [
"Apache-2.0"
]
| permissive | saisankargochhayat/algo_quest | c7c48187c76b5cd7c2ec3f0557432606e9096241 | a24f9a22c019ab31d56bd5a7ca5ba790d54ce5dc | refs/heads/master | 2021-07-04T15:21:33.606174 | 2021-02-07T23:42:43 | 2021-02-07T23:42:43 | 67,831,927 | 5 | 1 | Apache-2.0 | 2019-10-28T03:51:03 | 2016-09-09T20:51:29 | Python | UTF-8 | Python | false | false | 1,926 | py | # https://leetcode.com/problems/maximum-subarray/
class Solution:
def find_max_subarray(self, A, low, high):
# means only one element present.
if high == low:
return (low, high, A[low])
else:
mid = (low + high) // 2
left_low, left_high, left_sum = self.find_max_subarray(A, low, mid)
right_low, right_high, right_sum = self.find_max_subarray(A, mid+1, high)
cross_low, cross_high, cross_sum = self.find_max_crossing_subarray(A, low, mid, high)
if left_sum >= right_sum and left_sum >= cross_sum:
return (left_low, left_high, left_sum)
elif right_sum >= left_sum and right_sum >= cross_sum:
return (right_low, right_high, right_sum)
else:
return (cross_low, cross_high, cross_sum)
def find_max_crossing_subarray(self, A, low, mid, high):
left_sum = -(math.inf)
sum = 0
max_left, max_right = 0, 0
for i in range(mid, low-1, -1):
sum = sum + A[i]
if sum > left_sum:
left_sum = sum
max_left = i
right_sum = -(math.inf)
sum = 0
for j in range(mid+1, high+1):
sum = sum + A[j]
if sum > right_sum:
right_sum = sum
max_right = j
return (max_left, max_right, left_sum+right_sum)
def maxSubArray(self, nums: List[int]) -> int:
# bestSum = min(nums)
# tailSum = 0
# for n in nums:
# tailSum += n
# bestSum = max(tailSum, bestSum)
# tailSum = max(tailSum, 0)
# return bestSum
# divide and conquer soln below
max_left, max_right, max_sum = self.find_max_subarray(nums, 0, len(nums)-1)
#print(max_left, max_right)
return max_sum
| [
"[email protected]"
]
| |
2dd0237030d554f35a13f1533f56214f68389736 | a3d72c9d47a3711ff1a7213da25bacdcb3a7aa32 | /stickerfinder/models/inline_query.py | 230faf23540fc4f4ecebb19740a86738467102a4 | [
"MIT"
]
| permissive | crashcoredump/sticker-finder | 225a46c586d1b2b8764cf325e296186cbece5edd | 8158724ebc3e8346012d0ede05a75bb8f9f5f7eb | refs/heads/master | 2020-08-26T23:28:56.991893 | 2019-10-23T22:34:58 | 2019-10-23T22:34:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,059 | py | """The sqlite model for a inline search."""
from sqlalchemy.orm import relationship
from sqlalchemy import (
Column,
func,
ForeignKey,
)
from sqlalchemy.types import (
BigInteger,
DateTime,
String,
)
from stickerfinder.db import base
from stickerfinder.config import config
class InlineQuery(base):
"""The model for a inline search."""
SET_MODE = 'sticker_set'
STICKER_MODE = 'sticker'
__tablename__ = 'inline_query'
id = Column(BigInteger, primary_key=True)
query = Column(String, nullable=False)
mode = Column(String, nullable=False, default='sticker')
created_at = Column(DateTime, server_default=func.now(), nullable=False)
user_id = Column(BigInteger, ForeignKey('user.id'), index=True)
sticker_file_id = Column(String, ForeignKey('sticker.file_id',
onupdate='cascade',
ondelete='cascade'), index=True)
user = relationship("User")
sticker = relationship("Sticker")
requests = relationship("InlineQueryRequest",
order_by="asc(InlineQueryRequest.created_at)")
def __init__(self, query, user):
"""Create a new change."""
self.query = query
self.user = user
self.bot = config['telegram']['bot_name']
def __repr__(self):
"""Print as string."""
return f'InlineQuery: {self.query}, user: {self.user_id}'
@staticmethod
def get_or_create(session, query_id, query, user):
"""Get or create the InlineQuery."""
if query_id:
# Save this inline search for performance measurement
inline_query = session.query(InlineQuery).get(query_id)
else:
# We have an offset request of an existing InlineQuery.
# Reuse the existing one and add the new InlineQueryRequest to this query.
inline_query = InlineQuery(query, user)
session.add(inline_query)
session.commit()
return inline_query
| [
"[email protected]"
]
| |
ddc1c06504ccf03d4fbc43b58ce23bf3214722c4 | a838d4bed14d5df5314000b41f8318c4ebe0974e | /sdk/network/azure-mgmt-network/azure/mgmt/network/v2019_12_01/aio/operations/_load_balancer_outbound_rules_operations.py | a935428adfd54b2ec8269ea28f4fc210338347e3 | [
"MIT",
"LicenseRef-scancode-generic-cla",
"LGPL-2.1-or-later"
]
| permissive | scbedd/azure-sdk-for-python | ee7cbd6a8725ddd4a6edfde5f40a2a589808daea | cc8bdfceb23e5ae9f78323edc2a4e66e348bb17a | refs/heads/master | 2023-09-01T08:38:56.188954 | 2021-06-17T22:52:28 | 2021-06-17T22:52:28 | 159,568,218 | 2 | 0 | MIT | 2019-08-11T21:16:01 | 2018-11-28T21:34:49 | Python | UTF-8 | Python | false | false | 8,668 | py | # coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar
import warnings
from azure.core.async_paging import AsyncItemPaged, AsyncList
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
from azure.core.pipeline import PipelineResponse
from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest
from azure.mgmt.core.exceptions import ARMErrorFormat
from ... import models as _models
T = TypeVar('T')
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
class LoadBalancerOutboundRulesOperations:
"""LoadBalancerOutboundRulesOperations async operations.
You should not instantiate this class directly. Instead, you should create a Client instance that
instantiates it for you and attaches it as an attribute.
:ivar models: Alias to model classes used in this operation group.
:type models: ~azure.mgmt.network.v2019_12_01.models
:param client: Client for service requests.
:param config: Configuration of service client.
:param serializer: An object model serializer.
:param deserializer: An object model deserializer.
"""
models = _models
def __init__(self, client, config, serializer, deserializer) -> None:
self._client = client
self._serialize = serializer
self._deserialize = deserializer
self._config = config
def list(
self,
resource_group_name: str,
load_balancer_name: str,
**kwargs
) -> AsyncIterable["_models.LoadBalancerOutboundRuleListResult"]:
"""Gets all the outbound rules in a load balancer.
:param resource_group_name: The name of the resource group.
:type resource_group_name: str
:param load_balancer_name: The name of the load balancer.
:type load_balancer_name: str
:keyword callable cls: A custom type or function that will be passed the direct response
:return: An iterator like instance of either LoadBalancerOutboundRuleListResult or the result of cls(response)
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2019_12_01.models.LoadBalancerOutboundRuleListResult]
:raises: ~azure.core.exceptions.HttpResponseError
"""
cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerOutboundRuleListResult"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
api_version = "2019-12-01"
accept = "application/json"
def prepare_request(next_link=None):
# Construct headers
header_parameters = {} # type: Dict[str, Any]
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
if not next_link:
# Construct URL
url = self.list.metadata['url'] # type: ignore
path_format_arguments = {
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'),
'loadBalancerName': self._serialize.url("load_balancer_name", load_balancer_name, 'str'),
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'),
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {} # type: Dict[str, Any]
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
request = self._client.get(url, query_parameters, header_parameters)
else:
url = next_link
query_parameters = {} # type: Dict[str, Any]
request = self._client.get(url, query_parameters, header_parameters)
return request
async def extract_data(pipeline_response):
deserialized = self._deserialize('LoadBalancerOutboundRuleListResult', pipeline_response)
list_of_elem = deserialized.value
if cls:
list_of_elem = cls(list_of_elem)
return deserialized.next_link or None, AsyncList(list_of_elem)
async def get_next(next_link=None):
request = prepare_request(next_link)
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
response = pipeline_response.http_response
if response.status_code not in [200]:
map_error(status_code=response.status_code, response=response, error_map=error_map)
raise HttpResponseError(response=response, error_format=ARMErrorFormat)
return pipeline_response
return AsyncItemPaged(
get_next, extract_data
)
list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/outboundRules'} # type: ignore
async def get(
self,
resource_group_name: str,
load_balancer_name: str,
outbound_rule_name: str,
**kwargs
) -> "_models.OutboundRule":
"""Gets the specified load balancer outbound rule.
:param resource_group_name: The name of the resource group.
:type resource_group_name: str
:param load_balancer_name: The name of the load balancer.
:type load_balancer_name: str
:param outbound_rule_name: The name of the outbound rule.
:type outbound_rule_name: str
:keyword callable cls: A custom type or function that will be passed the direct response
:return: OutboundRule, or the result of cls(response)
:rtype: ~azure.mgmt.network.v2019_12_01.models.OutboundRule
:raises: ~azure.core.exceptions.HttpResponseError
"""
cls = kwargs.pop('cls', None) # type: ClsType["_models.OutboundRule"]
error_map = {
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
api_version = "2019-12-01"
accept = "application/json"
# Construct URL
url = self.get.metadata['url'] # type: ignore
path_format_arguments = {
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'),
'loadBalancerName': self._serialize.url("load_balancer_name", load_balancer_name, 'str'),
'outboundRuleName': self._serialize.url("outbound_rule_name", outbound_rule_name, 'str'),
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'),
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {} # type: Dict[str, Any]
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
# Construct headers
header_parameters = {} # type: Dict[str, Any]
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
request = self._client.get(url, query_parameters, header_parameters)
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
response = pipeline_response.http_response
if response.status_code not in [200]:
map_error(status_code=response.status_code, response=response, error_map=error_map)
raise HttpResponseError(response=response, error_format=ARMErrorFormat)
deserialized = self._deserialize('OutboundRule', pipeline_response)
if cls:
return cls(pipeline_response, deserialized, {})
return deserialized
get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/outboundRules/{outboundRuleName}'} # type: ignore
| [
"[email protected]"
]
| |
706a7e2dc2373a17d9f2086ca67c6b7d99a8d8af | a8e4280db883d41c0fbf4d45fb034a924a659c24 | /sequence/BioReaders.pyx | 7aa9fb546bcd2a97017d0707eaf278d1637c101c | []
| permissive | Magdoll/cDNA_Cupcake | 62dde8da3f695e27b4d69c1f1c4d795feb81379d | 81b7e7f6aeb53e15c11dd30a68a498a58e5f390a | refs/heads/master | 2023-08-09T14:26:17.094176 | 2022-10-10T21:39:50 | 2022-10-10T21:39:50 | 58,404,754 | 247 | 104 | BSD-3-Clause-Clear | 2023-07-24T01:43:30 | 2016-05-09T20:08:59 | Python | UTF-8 | Python | false | false | 18,541 | pyx | import re, sys
from collections import namedtuple
from exceptions import StopIteration
Interval = namedtuple('Interval', ['start', 'end'])
def iter_cigar_string(cigar_string):
num = cigar_string[0]
for s in cigar_string[1:]:
if str.isalpha(s):
yield int(num), s
num = ''
else:
num += s
class SimpleSAMReader:
"""
A simplified SAM reader meant for speed. Skips CIGAR & FLAG parsing; identity/coverage calculation.
"""
SAMheaders = ['@HD', '@SQ', '@RG', '@PG', '@CO']
def __init__(self, filename, has_header):
self.filename = filename
self.f = open(filename)
self.header = ''
if has_header:
while True:
cur = self.f.tell()
line = self.f.readline()
if line[:3] not in SimpleSAMReader.SAMheaders:
break
self.header += line
self.f.seek(cur)
def __iter__(self):
return self
def next(self):
line = self.f.readline().strip()
if len(line) == 0:
raise StopIteration
return SimpleSAMRecord(line)
class SimpleSAMRecord:
cigar_rex = re.compile('(\d+)([MIDSHN])')
SAMflag = namedtuple('SAMflag', ['is_paired', 'strand', 'PE_read_num'])
def __init__(self, record_line):
"""
Simple bare bones version: only has
qID, sID, sStart, sEnd, qStart, qEnd, cigar
Simplified assumptions:
-- must be end-to-end alignment (so qStart always 0)
-- must be unspliced (no 'N' in cigar string)
"""
self.qID = None
self.sID = None
self.sStart = None
self.sEnd = None
self.qStart = 0
self.qEnd = None # length of SEQ
self.cigar = None
self.process(record_line)
def __str__(self):
msg = \
"""
qID: {q}
sID: {s}
sStart-sEnd: {ss}-{se}
qStart-qEnd: {qs}-{qe}
cigar: {c}
""".format(q=self.qID, s=self.sID, \
ss=self.sStart, se=self.sEnd, qs=self.qStart, qe=self.qEnd, c=self.cigar)
return msg
def parse_cigar(self, cigar, start):
"""
M - match
I - insertion w.r.t. to ref
D - deletion w.r.t. to ref
N - skipped (which means splice junction)
S - soft clipped
H - hard clipped (not shown in SEQ)
ex: 50M43N3D
NOTE: sets qStart & qEnd, which are often incorrect because of different ways to write CIGAR strings
instead rely on XS/XE flags (from blasr or pbalign.py) to overwrite this later!!!
Returns: genomic segment locations (using <start> as offset)
"""
cur_end = start
q_aln_len = 0
#for num, type in SimpleSAMRecord.cigar_rex.findall(cigar):
for num, type in iter_cigar_string(cigar):
if type == 'I':
q_aln_len += num
elif type == 'M':
cur_end += num
q_aln_len += num
elif type == 'D':
cur_end += num
self.qEnd = self.qStart + q_aln_len
self.sEnd = cur_end
def process(self, record_line):
"""
Only process cigar to get qEnd and sEnd
"""
raw = record_line.split('\t')
self.qID = raw[0]
self.sID = raw[2]
if self.sID == '*': # means no match! STOP here
return
self.sStart = int(raw[3]) - 1
self.cigar = raw[5]
self.parse_cigar(self.cigar, self.sStart)
#self.flag = SimpleSAMRecord.parse_sam_flag(int(raw[1]))
class SAMReader:
SAMheaders = ['@HD', '@SQ', '@RG', '@PG', '@CO']
def __init__(self, filename, has_header, ref_len_dict=None, query_len_dict=None):
self.filename = filename
self.f = open(filename)
self.header = ''
self.ref_len_dict = ref_len_dict
self.query_len_dict = query_len_dict
if has_header:
while True:
cur = self.f.tell()
line = self.f.readline()
if line[:3] not in SAMReader.SAMheaders:
break
self.header += line
self.f.seek(cur)
def __iter__(self):
return self
def next(self):
line = self.f.readline().strip()
if len(line) == 0:
raise StopIteration
return SAMRecord(line, self.ref_len_dict, self.query_len_dict)
class SAMRecord:
SAMflag = namedtuple('SAMflag', ['is_paired', 'strand', 'PE_read_num'])
def __init__(self, record_line=None, ref_len_dict=None, query_len_dict=None):
"""
Designed to handle BowTie SAM output for unaligned reads (PE read not yet supported)
Can handle map to transfrag (no splicing) and genome (splicing)
"""
self.qID = None
self.sID = None
self.sStart = None
self.sEnd = None
self.segments = None
self.num_nonmatches = None
self.num_ins = None
self.num_del = None
self.num_mat_or_sub = None
self.qCoverage = None
self.sCoverage = None
self.sLen = None
self.qLen = None
# qStart, qEnd might get changed in parse_cigar
self.qStart = 0
self.qEnd = None # length of SEQ
self.cigar = None
self.flag = None
self.identity = None
self.record_line = record_line
if record_line is not None:
self.process(record_line, ref_len_dict, query_len_dict)
def __str__(self):
msg =\
"""
qID: {q}
sID: {s}
cigar: {c}
sStart-sEnd: {ss}-{se}
qStart-qEnd: {qs}-{qe}
segments: {seg}
flag: {f}
coverage (of query): {qcov}
coverage (of subject): {scov}
alignment identity: {iden}
""".format(q=self.qID, s=self.sID, seg=self.segments, c=self.cigar, f=self.flag,\
ss=self.sStart, se=self.sEnd, qs=self.qStart, qe=self.qEnd, iden=self.identity,\
qcov=self.qCoverage, scov=self.sCoverage)
return msg
def __eq__(self, other):
return self.qID == other.qID and self.sID == other.sID and\
self.sStart == other.sStart and self.sEnd == other.sEnd and\
self.segments == other.segments and self.qCoverage == other.qCoverage and\
self.sCoverage == other.sCoverage and self.qLen == other.qLen and\
self.sLen == other.sLen and self.qStart == other.qStart and\
self.cigar == other.cigar and self.flag == other.flag and self.identity == other.identity
def process(self, record_line, ref_len_dict, query_len_dict):
"""
If SAM is from pbalign.py output, then have flags:
XS: 1-based qStart, XE: 1-based qEnd, XQ: query length, NM: number of non-matches
ignore_XQ should be False for BLASR/pbalign.py's SAM, True for GMAP's SAM
0. qID
1. flag
2. sID
3. 1-based offset sStart
4. mapping quality (ignore)
5. cigar
6. name of ref of mate alignment (ignore)
7. 1-based offset sStart of mate (ignore)
8. inferred fragment length (ignore)
9. sequence (ignore)
10. read qual (ignore)
11. optional fields
"""
raw = record_line.split('\t')
self.qID = raw[0]
self.sID = raw[2]
if self.sID == '*': # means no match! STOP here
return
self.sStart = int(raw[3]) - 1
self.cigar = raw[5]
self.segments = self.parse_cigar(self.cigar, self.sStart)
self.sEnd = self.segments[-1].end
self.flag = SAMRecord.parse_sam_flag(int(raw[1]))
# process optional fields
# XM: number of mismatches
# NM: edit distance (sub/ins/del)
for x in raw[11:]:
if x.startswith('NM:i:'):
self.num_nonmatches = int(x[5:])
if ref_len_dict is not None:
self.sCoverage = (self.sEnd - self.sStart) * 1. / ref_len_dict[self.sID]
self.sLen = ref_len_dict[self.sID]
if self.flag.strand == '-' and self.qLen is not None:
self.qStart, self.qEnd = self.qLen - self.qEnd, self.qLen - self.qStart
if query_len_dict is not None: # over write qLen and qCoverage, should be done LAST
self.qLen = query_len_dict[self.qID]
self.qCoverage = (self.qEnd - self.qStart) * 1. / self.qLen
if self.num_nonmatches is not None:
self.identity = 1. - (self.num_nonmatches * 1. / (self.num_del + self.num_ins + self.num_mat_or_sub))
def parse_cigar(self, cigar, start):
"""
M - match
I - insertion w.r.t. to ref
D - deletion w.r.t. to ref
N - skipped (which means splice junction)
S - soft clipped
H - hard clipped (not shown in SEQ)
ex: 50M43N3D
NOTE: sets qStart & qEnd, which are often incorrect because of different ways to write CIGAR strings
Returns: genomic segment locations (using <start> as offset)
"""
segments = []
cur_start = start
cur_end = start
first_thing = True
q_aln_len = 0
self.num_del = 0
self.num_ins = 0
self.num_mat_or_sub = 0
for num, type in iter_cigar_string(cigar):
if type == 'H' or type == 'S':
if first_thing:
self.qStart += num
elif type == 'I':
q_aln_len += num
self.num_ins += num
elif type == 'M':
cur_end += num
q_aln_len += num
self.num_mat_or_sub += num
elif type == 'D':
cur_end += num
self.num_del += num
elif type == 'N': # junction, make a new segment
segments.append(Interval(cur_start, cur_end))
cur_start = cur_end + num
cur_end = cur_start
first_thing = False
if cur_start != cur_end:
segments.append(Interval(cur_start, cur_end))
self.qEnd = self.qStart + q_aln_len
return segments
@classmethod
def parse_sam_flag(self, flag):
"""
1 -- read is one of a pair
2 -- alignment is one end of proper PE alignment (IGNORE)
4 -- read has no reported alignments (IGNORE)
8 -- read is one of a pair and has no reported alignments (IGNORE)
16 -- reverse ref strand
32 -- other mate is aligned to ref strand
64 -- first mate in pair
128 -- second mate in pair
256 -- not primary alignment
Return: SAMflag
"""
PE_read_num = 0
strand = '+'
if flag > 1024: #PCR or optical duplicate, should never see this...
flag -= 1024
if flag > 512: #not passing QC, should never see this
flag -= 512
if flag >= 256: #secondary alignment, OK to see this if option given in BowTie
flag -= 256
if flag >= 128:
PE_read_num = 2
flag -= 128
elif flag >= 64:
PE_read_num = 1
flag -= 64
if flag >= 32:
flag -= 32
if flag >= 16:
strand = '-'
flag -= 16
if flag >= 8:
flag -= 8
if flag >= 4:
flag -= 4
if flag >= 2:
flag -= 2
assert flag == 0 or flag == 1
is_paired = flag == 1
return SAMRecord.SAMflag(is_paired, strand, PE_read_num)
class BLASRSAMReader(SAMReader):
def next(self):
line = self.f.readline().strip()
if len(line) == 0:
raise StopIteration
return BLASRSAMRecord(line, self.ref_len_dict, self.query_len_dict)
class BLASRSAMRecord(SAMRecord):
def process(self, record_line, ref_len_dict=None, query_len_dict=None):
"""
SAM files from pbalign.py have following optional fields:
XS: 1-based qStart, XE: 1-based qEnd, XQ: query length, NM: number of non-matches
0. qID
1. flag
2. sID
3. 1-based offset sStart
4. mapping quality (ignore)
5. cigar
6. name of ref of mate alignment (ignore)
7. 1-based offset sStart of mate (ignore)
8. inferred fragment length (ignore)
9. sequence (ignore)
10. read qual (ignore)
11. optional fields
"""
raw = record_line.split('\t')
self.qID = raw[0]
self.sID = raw[2]
if self.sID == '*': # means no match! STOP here
return
self.sStart = int(raw[3]) - 1
self.cigar = raw[5]
self.segments = self.parse_cigar(self.cigar, self.sStart)
self.sEnd = self.segments[-1].end
self.flag = SAMRecord.parse_sam_flag(int(raw[1]))
# In Yuan Li's BLASR-to-SAM, XQ:i:<subread length>
# see https://github.com/PacificBiosciences/blasr/blob/master/common/datastructures/alignmentset/SAMAlignment.h
for x in raw[11:]:
if x.startswith('XQ:i:'): # XQ should come last, after XS and XE
_qLen = int(x[5:])
if _qLen > 0: # this is for GMAP's SAM, which has XQ:i:0
self.qLen = _qLen
elif x.startswith('XS:i:'): # must be PacBio's SAM, need to update qStart
qs = int(x[5:]) - 1 # XS is 1-based
if qs > 0:
print "qStart:", self.qStart
assert self.qStart == 0
self.qStart = qs
self.qEnd += qs
elif x.startswith('XE:i:'): # must be PacBio's SAM and comes after XS:i:
qe = int(x[5:]) # XE is 1-based
assert self.qEnd - self.qStart == qe - 1 # qEnd should've been updated already, confirm this
elif x.startswith('NM:i:'): # number of non-matches
self.num_nonmatches = int(x[5:])
self.identity = 1. - (self.num_nonmatches * 1. / (self.num_del + self.num_ins + self.num_mat_or_sub))
if ref_len_dict is not None:
self.sCoverage = (self.sEnd - self.sStart) * 1. / ref_len_dict[self.sID]
self.sLen = ref_len_dict[self.sID]
if self.flag.strand == '-' and self.qLen is not None:
self.qStart, self.qEnd = self.qLen - self.qEnd, self.qLen - self.qStart
if self.qLen is not None:
self.qCoverage = (self.qEnd - self.qStart) * 1. / self.qLen
if query_len_dict is not None: # over write qLen and qCoverage, should be done LAST
try:
self.qLen = query_len_dict[self.qID]
except KeyError: # HACK for blasr's extended qID
self.qLen = query_len_dict[self.qID[:self.qID.rfind('/')]]
self.qCoverage = (self.qEnd - self.qStart) * 1. / self.qLen
class GMAPSAMReader(SAMReader):
def next(self):
while True:
line = self.f.readline().strip()
if len(line) == 0:
raise StopIteration
if not line.startswith('@'): # header can occur at file end if the SAM was sorted
break
return GMAPSAMRecord(line, self.ref_len_dict, self.query_len_dict)
class GMAPSAMRecord(SAMRecord):
def process(self, record_line, ref_len_dict=None, query_len_dict=None):
"""
SAM files from pbalign.py have following optional fields:
XS: 1-based qStart, XE: 1-based qEnd, XQ: query length, NM: number of non-matches
0. qID
1. flag
2. sID
3. 1-based offset sStart
4. mapping quality (ignore)
5. cigar
6. name of ref of mate alignment (ignore)
7. 1-based offset sStart of mate (ignore)
8. inferred fragment length (ignore)
9. sequence (ignore)
10. read qual (ignore)
11. optional fields
"""
raw = record_line.split('\t')
self.qID = raw[0]
self.sID = raw[2]
if self.sID == '*': # means no match! STOP here
return
self.sStart = int(raw[3]) - 1
self.cigar = raw[5]
self.segments = self.parse_cigar(self.cigar, self.sStart)
self.sEnd = self.segments[-1].end
self.flag = SAMRecord.parse_sam_flag(int(raw[1])) # strand can be overwritten by XS:A flag
self._flag_strand = self.flag.strand # serve as backup for debugging
# In Yuan Li's BLASR-to-SAM, XQ:i:<subread length>
# see https://github.com/PacificBiosciences/blasr/blob/master/common/datastructures/alignmentset/SAMAlignment.h
for x in raw[11:]:
if x.startswith('NM:i:'): # number of non-matches
self.num_nonmatches = int(x[5:])
self.identity = 1. - (self.num_nonmatches * 1. / (self.num_del + self.num_ins + self.num_mat_or_sub))
elif x.startswith('XS:A:'): # strand ifnormation
_s = x[5:]
if _s!='?':
self._flag_strand = self.flag.strand # serve as backup for debugging
self.flag = SAMRecord.SAMflag(self.flag.is_paired, _s, self.flag.PE_read_num)
if ref_len_dict is not None:
self.sCoverage = (self.sEnd - self.sStart) * 1. / ref_len_dict[self.sID]
self.sLen = ref_len_dict[self.sID]
if self.flag.strand == '-' and self.qLen is not None:
self.qStart, self.qEnd = self.qLen - self.qEnd, self.qLen - self.qStart
if self.qLen is not None:
self.qCoverage = (self.qEnd - self.qStart) * 1. / self.qLen
if query_len_dict is not None: # over write qLen and qCoverage, should be done LAST
try:
self.qLen = query_len_dict[self.qID]
except KeyError: # HACK for blasr's extended qID
k = self.qID.rfind('/')
if k >= 0:
self.qLen = query_len_dict[self.qID[:self.qID.rfind('/')]]
else:
self.qLen = query_len_dict[self.qID]
self.qCoverage = (self.qEnd - self.qStart) * 1. / self.qLen
| [
"[email protected]"
]
| |
31eb8b24eda1dbf4057a135e2c336137d0af9db9 | 7f523c407d45d116860eff67f079e807f2b53339 | /src/third_party/beaengine/tests/0f70.py | a4f621255a6e3e54afb502cf9a0a799e38f7204f | [
"MIT",
"LGPL-3.0-only",
"LGPL-2.0-or-later"
]
| permissive | 0vercl0k/rp | a352c96bfe3715eb9ce8c5942831123e65289dac | b24e7f58a594aaf0ce3771745bf06862f6ecc074 | refs/heads/master | 2023-08-30T08:03:14.842828 | 2023-08-09T00:41:00 | 2023-08-09T00:41:00 | 3,554,173 | 1,557 | 239 | MIT | 2023-08-09T00:41:02 | 2012-02-26T19:26:33 | C++ | UTF-8 | Python | false | false | 10,145 | py | #!/usr/bin/python
# -*- coding: utf-8 -*-
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>
#
# @author : [email protected]
from headers.BeaEnginePython import *
from nose.tools import *
class TestSuite:
def test(self):
# NP 0F 70 /r ib
# PSHUFW mm1, mm2/m64, imm8
Buffer = bytes.fromhex('0f702011')
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0xf70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'pshufw')
assert_equal(myDisasm.repr(), 'pshufw mm4, qword ptr [rax], 11h')
# F2 0F 70 /r ib
# PSHUFLW xmm1, xmm2/m128, imm8
Buffer = bytes.fromhex('f20f702011')
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0xf70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'pshuflw')
assert_equal(myDisasm.repr(), 'pshuflw xmm4, xmmword ptr [rax], 11h')
# VEX.128.F2.0F.WIG 70 /r ib
# VPSHUFLW xmm1, xmm2/m128, imm8
myVEX = VEX('VEX.128.F2.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myVEX.c4()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshuflw')
assert_equal(myDisasm.repr(), 'vpshuflw xmm12, xmmword ptr [r8], 11h')
# VEX.256.F2.0F.WIG 70 /r ib
# VPSHUFLW ymm1, ymm2/m256, imm8
myVEX = VEX('VEX.256.F2.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myVEX.c4()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshuflw')
assert_equal(myDisasm.repr(), 'vpshuflw ymm12, ymmword ptr [r8], 11h')
# EVEX.128.F2.0F.WIG 70 /r ib
# VPSHUFLW xmm1 {k1}{z}, xmm2/m128, imm8
myEVEX = EVEX('EVEX.128.F2.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myEVEX.prefix()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshuflw')
assert_equal(myDisasm.repr(), 'vpshuflw xmm28, xmmword ptr [r8], 11h')
# EVEX.256.F2.0F.WIG 70 /r ib
# VPSHUFLW ymm1 {k1}{z}, ymm2/m256, imm8
myEVEX = EVEX('EVEX.256.F2.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myEVEX.prefix()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshuflw')
assert_equal(myDisasm.repr(), 'vpshuflw ymm28, ymmword ptr [r8], 11h')
# EVEX.512.F2.0F.WIG 70 /r ib
# VPSHUFLW zmm1 {k1}{z}, zmm2/m512, imm8
myEVEX = EVEX('EVEX.512.F2.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myEVEX.prefix()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshuflw')
assert_equal(myDisasm.repr(), 'vpshuflw zmm28, zmmword ptr [r8], 11h')
# F3 0F 70 /r ib
# PSHUFHW xmm1, xmm2/m128, imm8
Buffer = bytes.fromhex('f30f702011')
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0xf70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'pshufhw')
assert_equal(myDisasm.repr(), 'pshufhw xmm4, xmmword ptr [rax], 11h')
# VEX.128.F3.0F.WIG 70 /r ib
# VPSHUFHW xmm1, xmm2/m128, imm8
myVEX = VEX('VEX.128.F3.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myVEX.c4()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufhw')
assert_equal(myDisasm.repr(), 'vpshufhw xmm12, xmmword ptr [r8], 11h')
# VEX.256.F3.0F.WIG 70 /r ib
# VPSHUFHW ymm1, ymm2/m256, imm8
myVEX = VEX('VEX.256.F3.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myVEX.c4()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufhw')
assert_equal(myDisasm.repr(), 'vpshufhw ymm12, ymmword ptr [r8], 11h')
# EVEX.128.F3.0F.WIG 70 /r ib
# VPSHUFHW xmm1 {k1}{z}, xmm2/m128, imm8
myEVEX = EVEX('EVEX.128.F3.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myEVEX.prefix()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufhw')
assert_equal(myDisasm.repr(), 'vpshufhw xmm28, xmmword ptr [r8], 11h')
# EVEX.256.F3.0F.WIG 70 /r ib
# VPSHUFHW ymm1 {k1}{z}, ymm2/m256, imm8
myEVEX = EVEX('EVEX.256.F3.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myEVEX.prefix()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufhw')
assert_equal(myDisasm.repr(), 'vpshufhw ymm28, ymmword ptr [r8], 11h')
# EVEX.512.F3.0F.WIG 70 /r ib
# VPSHUFHW zmm1 {k1}{z}, zmm2/m512, imm8
myEVEX = EVEX('EVEX.512.F3.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myEVEX.prefix()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufhw')
assert_equal(myDisasm.repr(), 'vpshufhw zmm28, zmmword ptr [r8], 11h')
# 66 0F 70 /r ib
# PSHUFD xmm1, xmm2/m128, imm8
Buffer = bytes.fromhex('660f702011')
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0xf70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'pshufd')
assert_equal(myDisasm.repr(), 'pshufd xmm4, xmmword ptr [rax], 11h')
# VEX.128.66.0F.WIG 70 /r ib
# VPSHUFD xmm1, xmm2/m128, imm8
myVEX = VEX('VEX.128.66.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myVEX.c4()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufd')
assert_equal(myDisasm.repr(), 'vpshufd xmm12, xmmword ptr [r8], 11h')
# VEX.256.66.0F.WIG 70 /r ib
# VPSHUFD ymm1, ymm2/m256, imm8
myVEX = VEX('VEX.256.66.0F.WIG')
Buffer = bytes.fromhex('{}702011'.format(myVEX.c4()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufd')
assert_equal(myDisasm.repr(), 'vpshufd ymm12, ymmword ptr [r8], 11h')
# EVEX.128.66.0F.W0 70 /r ib
# VPSHUFD xmm1 {k1}{z}, xmm2/m128/m32bcst,imm8
myEVEX = EVEX('EVEX.128.66.0F.W0')
Buffer = bytes.fromhex('{}702011'.format(myEVEX.prefix()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufd')
assert_equal(myDisasm.repr(), 'vpshufd xmm28, xmmword ptr [r8], 11h')
# EVEX.256.66.0F.W0 70 /r ib
# VPSHUFD ymm1 {k1}{z}, ymm2/m256/m32bcst,imm8
myEVEX = EVEX('EVEX.256.66.0F.W0')
Buffer = bytes.fromhex('{}702011'.format(myEVEX.prefix()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufd')
assert_equal(myDisasm.repr(), 'vpshufd ymm28, ymmword ptr [r8], 11h')
# EVEX.512.66.0F.W0 70 /r ib
# VPSHUFD zmm1 {k1}{z}, zmm2/m512/m32bcst, imm8
myEVEX = EVEX('EVEX.512.66.0F.W0')
Buffer = bytes.fromhex('{}702011'.format(myEVEX.prefix()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufd')
assert_equal(myDisasm.repr(), 'vpshufd zmm28, zmmword ptr [r8], 11h')
# If VEX.vvvv ≠ 1111B or EVEX.vvvv ≠ 1111B , #UD
myEVEX = EVEX('EVEX.512.66.0F.W0')
myEVEX.vvvv = 0b1110
Buffer = bytes.fromhex('{}702011'.format(myEVEX.prefix()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufd')
assert_equal(myDisasm.infos.Reserved_.ERROR_OPCODE, UD_)
myVEX = VEX('VEX.256.66.0F.WIG')
myVEX.vvvv = 0b1110
Buffer = bytes.fromhex('{}702011'.format(myVEX.c4()))
myDisasm = Disasm(Buffer)
myDisasm.read()
assert_equal(myDisasm.infos.Instruction.Opcode, 0x70)
assert_equal(myDisasm.infos.Instruction.Mnemonic, b'vpshufd')
assert_equal(myDisasm.infos.Reserved_.ERROR_OPCODE, UD_)
| [
"[email protected]"
]
| |
56ff8207e78b231e1fea0c024582ba1d89105dca | 2b86301d5ad3fecaa5a300cabfe6b4dfc82b78ed | /venv/Lib/site-packages/adodbapi/process_connect_string.py | a8dab5a10443ed24537ce76705a9c1de02f5ef71 | [
"MIT",
"LGPL-2.1-only",
"LGPL-2.0-or-later"
]
| permissive | sserrot/champion_relationships | 72823bbe73e15973007e032470d7efdf72af3be0 | 91315d6b7f6e7e678d9f8083b4b3e63574e97d2b | refs/heads/master | 2022-12-21T05:15:36.780768 | 2021-12-05T15:19:09 | 2021-12-05T15:19:09 | 71,414,425 | 1 | 2 | MIT | 2022-12-18T07:42:59 | 2016-10-20T01:35:56 | Python | UTF-8 | Python | false | false | 5,376 | py | """ a clumsy attempt at a macro language to let the programmer execute code on the server (ex: determine 64bit)"""
from . import is64bit as is64bit
def macro_call(macro_name, args, kwargs):
""" allow the programmer to perform limited processing on the server by passing macro names and args
:new_key - the key name the macro will create
:args[0] - macro name
:args[1:] - any arguments
:code - the value of the keyword item
:kwargs - the connection keyword dictionary. ??key has been removed
--> the value to put in for kwargs['name'] = value
"""
if isinstance(args, (str, str)):
args = [args] # the user forgot to pass a sequence, so make a string into args[0]
new_key = args[0]
try:
if macro_name == "is64bit":
if is64bit.Python(): # if on 64 bit Python
return new_key, args[1] # return first argument
else:
try:
return new_key, args[2] # else return second argument (if defined)
except IndexError:
return new_key, '' # else return blank
elif macro_name == "getuser": # get the name of the user the server is logged in under
if not new_key in kwargs:
import getpass
return new_key, getpass.getuser()
elif macro_name == "getnode": # get the name of the computer running the server
import platform
try:
return new_key, args[1] % platform.node()
except IndexError:
return new_key, platform.node()
elif macro_name == "getenv": # expand the server's environment variable args[1]
try:
dflt = args[2] # if not found, default from args[2]
except IndexError: # or blank
dflt = ''
return new_key, os.environ.get(args[1], dflt)
elif macro_name == "auto_security":
if not 'user' in kwargs or not kwargs['user']: # missing, blank, or Null username
return new_key, 'Integrated Security=SSPI'
return new_key, 'User ID=%(user)s; Password=%(password)s' % kwargs
elif macro_name == "find_temp_test_path": # helper function for testing ado operation -- undocumented
import tempfile, os
return new_key, os.path.join(tempfile.gettempdir(), 'adodbapi_test', args[1])
raise ValueError ('Unknown connect string macro=%s' % macro_name)
except:
raise ValueError ('Error in macro processing %s %s' % (macro_name, repr(args)))
def process(args, kwargs, expand_macros=False): # --> connection string with keyword arguments processed.
""" attempts to inject arguments into a connection string using Python "%" operator for strings
co: adodbapi connection object
args: positional parameters from the .connect() call
kvargs: keyword arguments from the .connect() call
"""
try:
dsn = args[0]
except IndexError:
dsn = None
if isinstance(dsn, dict): # as a convenience the first argument may be django settings
kwargs.update(dsn)
elif dsn: # the connection string is passed to the connection as part of the keyword dictionary
kwargs['connection_string'] = dsn
try:
a1 = args[1]
except IndexError:
a1 = None
# historically, the second positional argument might be a timeout value
if isinstance(a1, int):
kwargs['timeout'] = a1
# if the second positional argument is a string, then it is user
elif isinstance(a1, str):
kwargs['user'] = a1
# if the second positional argument is a dictionary, use it as keyword arguments, too
elif isinstance(a1, dict):
kwargs.update(a1)
try:
kwargs['password'] = args[2] # the third positional argument is password
kwargs['host'] = args[3] # the fourth positional argument is host name
kwargs['database'] = args[4] # the fifth positional argument is database name
except IndexError:
pass
# make sure connection string is defined somehow
if not 'connection_string' in kwargs:
try: # perhaps 'dsn' was defined
kwargs['connection_string'] = kwargs['dsn']
except KeyError:
try: # as a last effort, use the "host" keyword
kwargs['connection_string'] = kwargs['host']
except KeyError:
raise TypeError ("Must define 'connection_string' for ado connections")
if expand_macros:
for kwarg in list(kwargs.keys()):
if kwarg.startswith('macro_'): # If a key defines a macro
macro_name = kwarg[6:] # name without the "macro_"
macro_code = kwargs.pop(kwarg) # we remove the macro_key and get the code to execute
new_key, rslt = macro_call(macro_name, macro_code, kwargs) # run the code in the local context
kwargs[new_key] = rslt # put the result back in the keywords dict
# special processing for PyRO IPv6 host address
try:
s = kwargs['proxy_host']
if ':' in s: # it is an IPv6 address
if s[0] != '[': # is not surrounded by brackets
kwargs['proxy_host'] = s.join(('[',']')) # put it in brackets
except KeyError:
pass
return kwargs
| [
"[email protected]"
]
| |
49e6d7da11e749a220fab3a24a443fe317ea54ab | 6e1ea8d65052f025060453f66819ac446a7592d8 | /archive/neg_190406_3.py | e062dc3d131ae0f2f2565440c8ac7a7146698d5d | []
| no_license | csJd/oj-codes | bc38b79b9227b45d34139c84f9ef1e830f6b996c | 2bd65d0070adc3400ee5bee8d1cf02a038de540b | refs/heads/master | 2022-03-21T20:21:40.153833 | 2019-11-28T13:11:54 | 2019-11-28T13:11:54 | 47,266,594 | 2 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,801 | py | """
题目描述:n 个 电池, m 条电线 (电线是单向的!) , 电源连着电池 b, 电源功率为 e
某个电池充满电后通向其的功率会平均分往所连的电池
输入 n 个电池的容量
输出每个电池充满电所需时间
2
6 6 1 2
4 2 4 2 2 20
1 2
1 3
2 4
3 5
4 6
5 6
2 0 2 1
10 10
2.0000 4.0000 6.0000 6.0000 8.0000 17.0000
-1.0000 10.0000
"""
T = int(input())
for case in range(T):
n, m, b, e = map(int, input().split())
remain = list(map(int, input().split()))
time_spent = [0 for i in range(n)]
edge = [[] for i in range(n)]
for k in range(m):
st, ed = map(int, input().split())
st -= 1
ed -= 1
edge[st].append(ed)
# edge[ed].append(st)
b -= 1
charging = {b: e}
while len(charging) > 0:
pos = list(charging.keys())[0]
power = charging.pop(pos)
charge_time = remain[pos] / power
time_spent[pos] += charge_time
remain[pos] = 0
for ind in range(n):
if remain[ind] == 0:
continue
time_spent[ind] += charge_time
if ind in charging:
power = charging[ind]
remain[ind] -= power * charge_time
if len(edge[pos]) == 0:
continue
add_power = power / len(edge[pos])
for ed in edge[pos]:
if ed not in charging:
charging[ed] = add_power
else:
charging.pop(ind)
charging[ind] = power + add_power
charging = dict(
sorted(charging.items(), key=lambda tup: remain[tup[0]]/tup[1]))
ret = []
for i in range(n):
if remain[i] == 0:
ret.append(time_spent[i])
else:
ret.append(-1)
print(*ret)
| [
"[email protected]"
]
| |
c22785ef3b2a5baca3fdb90c053ddeda973ccced | c8371b410f19dc87059bbe0a28e983c3cfe0f4f8 | /src/etheroll/settings.py | 8e2e0292db8743d6e368ca46c0f468eb6156dac1 | [
"MIT"
]
| permissive | homdx/EtherollApp | c70e37cff4fbbde8c605a8ca87776535185a7167 | 4953ce0f10ac58d43517fbc3a18bc5ed43297858 | refs/heads/master | 2020-03-28T19:05:10.591229 | 2018-09-30T21:25:32 | 2018-09-30T21:25:32 | 148,942,827 | 0 | 0 | MIT | 2018-09-15T21:52:51 | 2018-09-15T21:52:51 | null | UTF-8 | Python | false | false | 2,576 | py | from etheroll.store import Store
from etheroll.utils import SubScreen, load_kv_from_py
from pyetheroll.constants import DEFAULT_GAS_PRICE_GWEI, ChainID
load_kv_from_py(__file__)
class SettingsScreen(SubScreen):
"""
Screen for configuring network, gas price...
"""
def __init__(self, **kwargs):
super(SettingsScreen, self).__init__(**kwargs)
def store_network(self):
"""
Saves selected network to the store.
"""
store = Store.get_store()
network = self.get_ui_network()
store.put('network', value=network.name)
def store_gas_price(self):
"""
Saves gas price value to the store.
"""
store = Store.get_store()
gas_price = self.get_ui_gas_price()
store.put('gas_price', value=gas_price)
def store_settings(self):
"""
Stores settings to json store.
"""
self.store_gas_price()
self.store_network()
def get_ui_network(self):
"""
Retrieves network values from UI.
"""
if self.is_ui_mainnet():
network = ChainID.MAINNET
else:
network = ChainID.ROPSTEN
return network
def is_ui_mainnet(self):
return self.ids.mainnet_checkbox_id.active
def is_ui_testnet(self):
return self.ids.testnet_checkbox_id.active
@staticmethod
def get_stored_network():
"""
Retrieves last stored network value, defaults to Mainnet.
"""
store = Store.get_store()
try:
network_dict = store['network']
except KeyError:
network_dict = {}
network_name = network_dict.get(
'value', ChainID.MAINNET.name)
network = ChainID[network_name]
return network
@classmethod
def is_stored_mainnet(cls):
network = cls.get_stored_network()
return network == ChainID.MAINNET
@classmethod
def is_stored_testnet(cls):
network = cls.get_stored_network()
return network == ChainID.ROPSTEN
def get_ui_gas_price(self):
return self.ids.gas_price_slider_id.value
@staticmethod
def get_stored_gas_price():
"""
Retrieves stored gas price value, defaults to DEFAULT_GAS_PRICE_GWEI.
"""
store = Store.get_store()
try:
gas_price_dict = store['gas_price']
except KeyError:
gas_price_dict = {}
gas_price = gas_price_dict.get(
'value', DEFAULT_GAS_PRICE_GWEI)
return gas_price
| [
"[email protected]"
]
| |
5197c2424a9a662ba7a7350d9247e1a5e7ccc646 | e2d23d749779ed79472a961d2ab529eeffa0b5b0 | /gcloud/commons/template/apps.py | afc2887f420be79a219cef1a5aafb3839402098a | [
"MIT",
"BSD-3-Clause",
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
]
| permissive | manlucas/atom | 9fa026b3f914e53cd2d34aecdae580bda09adda7 | 94963fc6fdfd0568473ee68e9d1631f421265359 | refs/heads/master | 2022-09-30T06:19:53.828308 | 2020-01-21T14:08:36 | 2020-01-21T14:08:36 | 235,356,376 | 0 | 0 | NOASSERTION | 2022-09-16T18:17:08 | 2020-01-21T14:04:51 | Python | UTF-8 | Python | false | false | 1,016 | py | # -*- coding: utf-8 -*-
"""
Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community
Edition) available.
Copyright (C) 2017-2019 THL A29 Limited, a Tencent company. All rights reserved.
Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://opensource.org/licenses/MIT
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
"""
from django.apps import AppConfig
class CommonTemplateConfig(AppConfig):
name = 'gcloud.commons.template'
verbose_name = 'GcloudCommonTemplate'
def ready(self):
from gcloud.commons.template.permissions import common_template_resource # noqa
| [
"[email protected]"
]
| |
ec9295456b52b9cf9075dd919fa029b82ea8663d | 327490d5d0ba55a1165d5a799e496f2e971d7861 | /ask39_spider/spiders/ask39.py | f9b83ac502bd2568d62b442c7f33b5a20e2c490a | []
| no_license | AotY/ask39-spider | 487098e485d598f2b60f021059668e57cd33aa03 | 60d319f416ac95cede1084454b4129d8e2042e32 | refs/heads/master | 2020-04-12T03:38:09.040730 | 2019-01-08T12:45:59 | 2019-01-08T12:45:59 | 162,272,474 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 8,499 | py | # -*- coding: utf-8 -*
import logging
import scrapy
from ask39_spider.items import QuestionItem, DoctorItem
from ask39_spider.constant import Constant
logger = logging.getLogger('ask39')
class Ask39Spider(scrapy.Spider):
name = 'ask39'
allowed_domains = ['ask.39.net', '39.net']
# start_urls = ['http://ask.39.net/']
rotete_user_agent = True
def __init__(self):
self.question_template = 'http://ask.39.net/question/%s.html'
self.doctor_template = 'http://my.39.net/%s'
self.start_page = 3840295
# self.end_page = 70000000
self.end_page = 56967315
"""
self.doctor_set = set()
"""
def start_requests(self):
# for cur_page in range(self.start_page, self.end_page):
for cur_page in range(self.end_page, self.start_page, -1):
url = self.question_template % cur_page
logger.info('---> url: %s' % url)
yield scrapy.Request(url=url, callback=self.parse_question)
"""
# self.doctor_set.add('P4349188')
for doctor in self.doctor_set:
url = self.doctor_template % doctor
logger.info('---> url: %s' % url)
yield scrapy.Request(url=url, callback=self.parse_doctor)
"""
def parse_question(self, response):
status = response.status
url = response.url
if status != 200:
logger.info('-------> url: %s, status: %d' % (url, status))
return None
# is has reply (selected)
selected = response.xpath('//*[@class="selected"]')
if selected is None or len(selected) == 0:
return None
selected_img = response.xpath(
'//*[@class="selected"]/p[@class="sele_img"]/text()')
if selected_img is None or len(selected_img) == 0:
return None
response_count = int(selected_img.extract_first().split('(')[1][:-1])
if response_count == 0:
return None
# logger.info('response count: %d' % response_count)
q_id = url.split('/')[-1].split('.')[0]
# logger.info('question id: %s' % q_id)
sub1 = response.xpath('//*[@id="sub"]/span[2]/a[1]/text()').extract_first()
if sub1 is None:
sub1 = ''
sub2 = response.xpath('//*[@id="sub"]/span[3]/a[1]/text()').extract_first()
if sub2 is None:
sub2 = ''
sub3 = response.xpath('//*[@id="sub"]/span[4]/a[1]/text()').extract_first()
if sub3 is None:
sub3 = ''
# logger.info('sub1: %s sub2: %s' % (sub1, sub2))
sub = sub1 + '_' + sub2 + '_' + sub3
title = response.xpath(
'//*[@class="ask_cont"]/p[@class="ask_tit"]/text()').extract_first()
if title is None:
title = ''
else:
title = title.replace('\n', '').replace(' ', '')
gender = response.xpath(
'//*[@class="ask_cont"]/p[@class="mation"]/span[1]/text()').extract_first()
if gender is None:
gender = ''
age = response.xpath(
'//*[@class="ask_cont"]/p[@class="mation"]/span[2]/text()').extract_first()
if age is None:
age = ''
else:
age = age.replace('\n', '').replace(' ', '')[:-1]
onset = response.xpath(
'//*[@class="ask_cont"]/p[@class="mation"]/span[3]/text()').extract_first()
if onset is None:
onset = ''
else:
onset = onset.replace('\n', '').replace(' ', '')
# query_text = response.xpath(
# '//*[@class="ask_hid"]/p[@class="txt_ms"][1]/text()').extract_first()
query_texts = response.xpath('//*[@class="ask_hid"]/p[1]//text()').extract()
if query_texts is None and len(query_texts) == 0:
return None
query_text = ''.join(query_texts)
query_text = query_text.replace(
'\n', '').replace('\t', '').replace(' ', '')
if len(query_text) > Constant.q_max_len or len(query_text) < Constant.min_len:
return None
labels = []
label_spans = response.xpath(
'//*[@class="ask_cont"]/p[@class="txt_label"]/span')
if label_spans is None or len(label_spans) == 0:
labels = ''
else:
for label_span in label_spans:
label = label_span.xpath('a/text()').extract_first()
labels.append(label)
labels = ','.join(labels)
# logger.info('labels: %s' % labels)
response_divs = response.xpath('//div[@class="selected"]/div')
if len(response_divs) != response_count:
return None
for response_div in response_divs:
d_url = response_div.xpath(
'div[@class="doctor_all"]/div[@class="doc_img"]/a/@href').extract_first()
d_id = d_url.split('/')[-1]
"""
if d_id not in self.doctor_set:
self.doctor_set.add(d_id)
"""
# response text
response_texts = response_div.xpath(
'p[@class="sele_txt"]//text()').extract()
if response_texts is None and len(response_texts) == 0:
yield None
continue
response_text = ''.join(response_texts)
response_text = response_text.replace(
'\n', '').replace('\t', '').replace(' ', '')
if len(response_text) > Constant.r_max_len or len(response_text) < Constant.min_len:
yield None
continue
question_item = QuestionItem()
question_item['q_id'] = q_id
question_item['d_id'] = d_id
question_item['sub'] = sub
question_item['title'] = title
question_item['gender'] = gender
question_item['age'] = age
question_item['onset'] = onset
question_item['labels'] = labels
question_item['query'] = query_text
question_item['response'] = response_text
yield question_item
# contains zw
zw_divs = response_div.xpath(
'div[@class="doc_t_strip"]/div[@class="doc_zwenall"]/div[@class="doc_zw"]')
if zw_divs is None or len(zw_divs) == 0:
continue
zw_list = []
for zw_div in zw_divs:
zw_text = zw_div.xpath('span/text()').extract()[1]
zw_text = zw_text.replace('\n', '').replace(
'\t', '').replace(' ', '')
if len(zw_text) > Constant.q_max_len:
continue
zw_list.append(zw_text)
if len(zw_list) == 0:
continue
response_text = ' EOS '.join(zw_list)
question_item['response'] = response_text
yield question_item
def parse_doctor(self, response):
status = response.status
d_url = response.url
if status != 200:
logger.info('-------> url: %s, status: %d' % (d_url, status))
return None
d_id = d_url.split('/')[-1]
spans = response.xpath('//*[@class="doctor-msg-content"]/div[@class="doctor-msg-person"]/span')
if spans is None or len(spans) < 2:
return None
d_name = spans[0].xpath('text()').extract_first()
d_job = spans[1].xpath('text()').extract_first()
d_job = d_job.replace('\xa0', '').replace(' ', '')
spans = response.xpath(
'//*[@class="doctor-msg-content"]/div[@class="doctor-msg-job"]/span')
if spans is None or len(spans) < 2:
return None
d_hospital = spans[0].xpath('text()').extract_first()
d_department = spans[1].xpath('text()').extract_first()
divs = response.xpath(
'//*[@class="doctor-msg-content"]/div[contains(@class, "item-article")]')
if divs is None or len(divs) < 2:
return None
d_excel = divs[0].xpath('span[2]/text()').extract_first()
d_about = divs[1].xpath('span[2]/text()').extract_first()
doctor_item = DoctorItem()
doctor_item['d_id'] = d_id
doctor_item['d_name'] = d_name
doctor_item['d_job'] = d_job
doctor_item['d_hospital'] = d_hospital
doctor_item['d_department'] = d_department
doctor_item['d_excel'] = d_excel
doctor_item['d_about'] = d_about
yield doctor_item
| [
"[email protected]"
]
| |
c2e75fd7abf542fd4fb1988548f9998ddbaa7c4f | 2ceac26366a31b40be3060592ceb25dbc01f7236 | /tests/seleniumwire/webdriver/test_request.py | 03ec726d75b4a709fd31f93b6dfc42716620bb34 | [
"MIT"
]
| permissive | SilverFruity/selenium-wire | e499d06b75b94f73fef5f71e5238c4bcc1f9a2fd | 6413a645447ee265a1613e1c4c0497da5ccfadb6 | refs/heads/master | 2022-12-24T23:31:33.883494 | 2020-09-25T02:55:08 | 2020-09-25T02:55:08 | 297,247,880 | 0 | 0 | MIT | 2020-09-21T06:25:18 | 2020-09-21T06:25:17 | null | UTF-8 | Python | false | false | 11,392 | py | from unittest import TestCase
from unittest.mock import Mock, call
from seleniumwire.webdriver.request import (InspectRequestsMixin, LazyRequest, LazyResponse,
TimeoutException)
class Driver(InspectRequestsMixin):
def __init__(self, client):
self._client = client
class InspectRequestsMixinTest(TestCase):
def setUp(self):
self.mock_client = Mock()
self.driver = Driver(self.mock_client)
def test_get_requests(self):
self.mock_client.get_requests.return_value = [{
'id': '12345',
'method': 'GET',
'url': 'http://www.example.com/some/path',
'headers': {
'Accept': '*/*',
'Host': 'www.example.com'
},
'response': {
'status_code': 200,
'reason': 'OK',
'headers': {
'Content-Type': 'text/plain',
'Content-Length': '15012'
}
}
}]
requests = self.driver.requests
self.mock_client.get_requests.assert_called_once_with()
self.assertEqual(1, len(requests))
self.assertEqual(requests[0].url, 'http://www.example.com/some/path')
self.assertEqual(requests[0].response.headers['Content-Type'], 'text/plain')
def test_set_requests(self):
driver = Driver(Mock())
with self.assertRaises(AttributeError):
driver.requests = ['some request']
def test_delete_requests(self):
mock_client = Mock()
driver = Driver(mock_client)
del driver.requests
mock_client.clear_requests.assert_called_once_with()
def test_last_request(self):
self.mock_client.get_last_request.return_value = {
'method': 'GET',
'url': 'http://www.example.com/different/path?foo=bar',
'headers': {
'Accept': '*/*',
'Host': 'www.example.com'
},
'response': {
'status_code': 200,
'reason': 'OK',
'headers': {
'Content-Type': 'text/plain',
'Content-Length': '98425'
}
}
}
last_request = self.driver.last_request
self.mock_client.get_last_request.assert_called_once_with()
self.assertEqual(last_request.url, 'http://www.example.com/different/path?foo=bar')
self.assertEqual(last_request.response.headers['Content-Length'], '98425')
def test_last_request_none(self):
self.mock_client.get_last_request.return_value = None
last_request = self.driver.last_request
self.mock_client.get_last_request.assert_called_once_with()
self.assertIsNone(last_request)
def test_wait_for_request(self):
mock_client = Mock()
mock_client.find.return_value = {
'method': 'GET',
'url': 'http://www.example.com/some/path?foo=bar',
'headers': {
'Accept': '*/*',
'Host': 'www.example.com'
},
'response': {
'status_code': 200,
'reason': 'OK',
'headers': {
'Content-Type': 'text/plain',
'Content-Length': '98425'
}
}
}
driver = Driver(mock_client)
request = driver.wait_for_request('/some/path')
mock_client.find.assert_called_once_with('/some/path')
self.assertEqual(request.url, 'http://www.example.com/some/path?foo=bar')
def test_wait_for_request_timeout(self):
mock_client = Mock()
mock_client.find.return_value = None
driver = Driver(mock_client)
with self.assertRaises(TimeoutException):
driver.wait_for_request('/some/path', timeout=1)
mock_client.find.assert_has_calls([call('/some/path')] * 5)
def test_set_header_overrides(self):
mock_client = Mock()
driver = Driver(mock_client)
header_overrides = {
'User-Agent': 'Test_User_Agent_String',
'Accept-Encoding': None
}
driver.header_overrides = header_overrides
mock_client.set_header_overrides.assert_called_once_with(header_overrides)
def test_set_header_overrides_non_str(self):
mock_client = Mock()
driver = Driver(mock_client)
header_overrides = {
'MyHeader': 99
}
with self.assertRaises(AssertionError):
driver.header_overrides = header_overrides
def test_delete_header_overrides(self):
mock_client = Mock()
driver = Driver(mock_client)
del driver.header_overrides
mock_client.clear_header_overrides.assert_called_once_with()
def test_get_header_overrides(self):
mock_client = Mock()
driver = Driver(mock_client)
driver.header_overrides
mock_client.get_header_overrides.assert_called_once_with()
def test_set_param_overrides(self):
mock_client = Mock()
driver = Driver(mock_client)
param_overrides = {'foo': 'bar'}
driver.param_overrides = param_overrides
mock_client.set_param_overrides.assert_called_once_with(param_overrides)
def test_delete_param_overrides(self):
mock_client = Mock()
driver = Driver(mock_client)
del driver.param_overrides
mock_client.clear_param_overrides.assert_called_once_with()
def test_get_param_overrides(self):
mock_client = Mock()
driver = Driver(mock_client)
driver.param_overrides
mock_client.get_param_overrides.assert_called_once_with()
def test_set_querystring_overrides(self):
mock_client = Mock()
driver = Driver(mock_client)
querystring_overrides = 'foo=bar&hello=world'
driver.querystring_overrides = querystring_overrides
mock_client.set_querystring_overrides.assert_called_once_with(querystring_overrides)
def test_delete_querystring_overrides(self):
mock_client = Mock()
driver = Driver(mock_client)
del driver.querystring_overrides
mock_client.clear_querystring_overrides.assert_called_once_with()
def test_get_querystring_overrides(self):
mock_client = Mock()
driver = Driver(mock_client)
driver.querystring_overrides
mock_client.get_querystring_overrides.assert_called_once_with()
def test_set_rewrite_rules(self):
mock_client = Mock()
driver = Driver(mock_client)
rewrite_rules = [
('http://somewhere.com/', 'https://www.somewhere.com'),
('http://otherplace.com/', 'http://otherplace.com/api/')
]
driver.rewrite_rules = rewrite_rules
mock_client.set_rewrite_rules.assert_called_once_with(rewrite_rules)
def test_delete_rewrite_rules(self):
mock_client = Mock()
driver = Driver(mock_client)
del driver.rewrite_rules
mock_client.clear_rewrite_rules.assert_called_once_with()
def test_get_rewrite_rules(self):
mock_client = Mock()
driver = Driver(mock_client)
driver.rewrite_rules
mock_client.get_rewrite_rules.assert_called_once_with()
def test_set_scopes(self):
mock_client = Mock()
driver = Driver(mock_client)
scopes = [
'.*stackoverflow.*',
'.*github.*'
]
driver.scopes = scopes
mock_client.set_scopes.assert_called_once_with(scopes)
def test_delete_scopes(self):
mock_client = Mock()
driver = Driver(mock_client)
del driver.scopes
mock_client.reset_scopes.assert_called_once_with()
def test_get_scopes(self):
mock_client = Mock()
driver = Driver(mock_client)
driver.scopes
mock_client.get_scopes.assert_called_once_with()
class LazyRequestTest(TestCase):
def test_load_request_body(self):
mock_client = Mock()
mock_client.get_request_body.return_value = b'the body'
request = self._create_request(mock_client)
body = request.body
self.assertEqual(body, b'the body')
mock_client.get_request_body.assert_called_once_with(request.id)
def test_from_dict(self):
mock_client = Mock()
request = LazyRequest.from_dict({
'id': '12345',
'method': 'GET',
'url': 'http://www.example.com/some/path/?foo=bar&hello=world&foo=baz&other=',
'headers': {
'Accept': '*/*',
'Host': 'www.example.com',
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0'
},
'response': {
'status_code': 200,
'reason': 'OK',
'headers': {
'Content-Type': 'application/json',
'Content-Length': 120
},
}
}, mock_client)
self.assertEqual('12345', request.id)
self.assertEqual('GET', request.method)
self.assertEqual('http://www.example.com/some/path/?foo=bar&hello=world&foo=baz&other=', request.url)
self.assertEqual({
'Accept': '*/*',
'Host': 'www.example.com',
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0'
}, request.headers)
self.assertIsInstance(request.response, LazyResponse)
def _create_request(self, client):
request = LazyRequest(
client,
method='GET',
url='http://www.example.com/some/path/?foo=bar&hello=world&foo=baz&other=',
headers={
'Accept': '*/*',
'Host': 'www.example.com',
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0'
}
)
return request
class ResponseTest(TestCase):
def test_load_response_body(self):
mock_client = Mock()
mock_client.get_response_body.return_value = b'the body'
response = self._create_response('12345', mock_client)
body = response.body
self.assertEqual(body, b'the body')
mock_client.get_response_body.assert_called_once_with('12345')
def test_from_dict(self):
mock_client = Mock()
response = LazyResponse.from_dict({
'status_code': 200,
'reason': 'OK',
'headers': {
'Content-Type': 'application/json',
'Content-Length': 120
},
'body': 'foobar'
}, mock_client, '12345')
self.assertEqual(200, response.status_code)
self.assertEqual('OK', response.reason)
self.assertEqual({
'Content-Type': 'application/json',
'Content-Length': 120
}, response.headers)
def _create_response(self, request_id, client):
response = LazyResponse(
request_id,
client,
status_code=200,
reason='OK',
headers={
'Content-Type': 'application/json',
'Content-Length': 120
},
)
return response
| [
"[email protected]"
]
| |
da1ab5db20d1fb716fc0a34ca0435f659c226e57 | 94b8050084f84694490c2e1466da369f4105cb9a | /Runtime.py | 04a22128d550f84e1e50adebe495fda9cc906108 | []
| no_license | myrfy001/chrome-control | 1c13089d17a802260f123c48a7887f834aa1b1de | ae4a4f293eff1715b32dc5b31e39a967a6f0f5ab | refs/heads/master | 2021-01-23T01:46:25.912119 | 2017-04-16T03:17:20 | 2017-04-16T03:17:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 17,032 | py | from enum import Enum
from typing import Any, List
from base import ChromeCommand
# Unique script identifier.
ScriptId = str
# Unique object identifier.
RemoteObjectId = str
UnserializableValue = Enum("UnserializableValue", "Infinity NaN -Infinity -0")
UnserializableValue.__doc__ = "Primitive value which cannot be JSON-stringified."
class RemoteObject:
"""Mirror object referencing original JavaScript object."""
def __init__(self, type: str, subtype: str=None, className: str=None, value: Any=None, unserializableValue: "UnserializableValue"=None, description: str=None, objectId: "RemoteObjectId"=None, preview: "ObjectPreview"=None, customPreview: "CustomPreview"=None):
# Object type.
self.type = type
# Object subtype hint. Specified for <code>object</code> type values only.
self.subtype = subtype
# Object class (constructor) name. Specified for <code>object</code> type values only.
self.className = className
# Remote object value in case of primitive values or JSON values (if it was requested).
self.value = value
# Primitive value which can not be JSON-stringified does not have <code>value</code>, but gets this property.
self.unserializableValue = unserializableValue
# String representation of the object.
self.description = description
# Unique object identifier (for non-primitive values).
self.objectId = objectId
# Preview containing abbreviated property values. Specified for <code>object</code> type values only.
self.preview = preview
self.customPreview = customPreview
class CustomPreview:
def __init__(self, header: str, hasBody: bool, formatterObjectId: "RemoteObjectId", bindRemoteObjectFunctionId: "RemoteObjectId", configObjectId: "RemoteObjectId"=None):
self.header = header
self.hasBody = hasBody
self.formatterObjectId = formatterObjectId
self.bindRemoteObjectFunctionId = bindRemoteObjectFunctionId
self.configObjectId = configObjectId
class ObjectPreview:
"""Object containing abbreviated remote object value."""
def __init__(self, type: str, overflow: bool, properties: List, subtype: str=None, description: str=None, entries: List=None):
# Object type.
self.type = type
# True iff some of the properties or entries of the original object did not fit.
self.overflow = overflow
# List of the properties.
self.properties = properties
# Object subtype hint. Specified for <code>object</code> type values only.
self.subtype = subtype
# String representation of the object.
self.description = description
# List of the entries. Specified for <code>map</code> and <code>set</code> subtype values only.
self.entries = entries
class PropertyPreview:
def __init__(self, name: str, type: str, value: str=None, valuePreview: "ObjectPreview"=None, subtype: str=None):
# Property name.
self.name = name
# Object type. Accessor means that the property itself is an accessor property.
self.type = type
# User-friendly property value string.
self.value = value
# Nested value preview.
self.valuePreview = valuePreview
# Object subtype hint. Specified for <code>object</code> type values only.
self.subtype = subtype
class EntryPreview:
def __init__(self, value: "ObjectPreview", key: "ObjectPreview"=None):
# Preview of the value.
self.value = value
# Preview of the key. Specified for map-like collection entries.
self.key = key
class PropertyDescriptor:
"""Object property descriptor."""
def __init__(self, name: str, configurable: bool, enumerable: bool, value: "RemoteObject"=None, writable: bool=None, get: "RemoteObject"=None, set: "RemoteObject"=None, wasThrown: bool=None, isOwn: bool=None, symbol: "RemoteObject"=None):
# Property name or symbol description.
self.name = name
# True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object.
self.configurable = configurable
# True if this property shows up during enumeration of the properties on the corresponding object.
self.enumerable = enumerable
# The value associated with the property.
self.value = value
# True if the value associated with the property may be changed (data descriptors only).
self.writable = writable
# A function which serves as a getter for the property, or <code>undefined</code> if there is no getter (accessor descriptors only).
self.get = get
# A function which serves as a setter for the property, or <code>undefined</code> if there is no setter (accessor descriptors only).
self.set = set
# True if the result was thrown during the evaluation.
self.wasThrown = wasThrown
# True if the property is owned for the object.
self.isOwn = isOwn
# Property symbol object, if the property is of the <code>symbol</code> type.
self.symbol = symbol
class InternalPropertyDescriptor:
"""Object internal property descriptor. This property isn't normally visible in JavaScript code."""
def __init__(self, name: str, value: "RemoteObject"=None):
# Conventional property name.
self.name = name
# The value associated with the property.
self.value = value
class CallArgument:
"""Represents function call argument. Either remote object id <code>objectId</code>, primitive <code>value</code>, unserializable primitive value or neither of (for undefined) them should be specified."""
def __init__(self, value: Any=None, unserializableValue: "UnserializableValue"=None, objectId: "RemoteObjectId"=None):
# Primitive value.
self.value = value
# Primitive value which can not be JSON-stringified.
self.unserializableValue = unserializableValue
# Remote object handle.
self.objectId = objectId
# Id of an execution context.
ExecutionContextId = int
class ExecutionContextDescription:
"""Description of an isolated world."""
def __init__(self, id: "ExecutionContextId", origin: str, name: str, auxData: dict=None):
# Unique id of the execution context. It can be used to specify in which execution context script evaluation should be performed.
self.id = id
# Execution context origin.
self.origin = origin
# Human readable name describing given context.
self.name = name
# Embedder-specific auxiliary data.
self.auxData = auxData
class ExceptionDetails:
"""Detailed information about exception (or error) that was thrown during script compilation or execution."""
def __init__(self, exceptionId: int, text: str, lineNumber: int, columnNumber: int, scriptId: "ScriptId"=None, url: str=None, stackTrace: "StackTrace"=None, exception: "RemoteObject"=None, executionContextId: "ExecutionContextId"=None):
# Exception id.
self.exceptionId = exceptionId
# Exception text, which should be used together with exception object when available.
self.text = text
# Line number of the exception location (0-based).
self.lineNumber = lineNumber
# Column number of the exception location (0-based).
self.columnNumber = columnNumber
# Script ID of the exception location.
self.scriptId = scriptId
# URL of the exception location, to be used when the script was not reported.
self.url = url
# JavaScript stack trace if available.
self.stackTrace = stackTrace
# Exception object if available.
self.exception = exception
# Identifier of the context where exception happened.
self.executionContextId = executionContextId
# Number of milliseconds since epoch.
Timestamp = float
class CallFrame:
"""Stack entry for runtime errors and assertions."""
def __init__(self, functionName: str, scriptId: "ScriptId", url: str, lineNumber: int, columnNumber: int):
# JavaScript function name.
self.functionName = functionName
# JavaScript script id.
self.scriptId = scriptId
# JavaScript script name or url.
self.url = url
# JavaScript script line number (0-based).
self.lineNumber = lineNumber
# JavaScript script column number (0-based).
self.columnNumber = columnNumber
class StackTrace:
"""Call frames for assertions or error messages."""
def __init__(self, callFrames: List, description: str=None, parent: "StackTrace"=None):
# JavaScript function name.
self.callFrames = callFrames
# String label of this stack trace. For async traces this may be a name of the function that initiated the async call.
self.description = description
# Asynchronous JavaScript stack trace that preceded this stack, if available.
self.parent = parent
class evaluate(ChromeCommand):
"""Evaluates expression on global object."""
def __init__(self, expression: str, objectGroup: str=None, includeCommandLineAPI: bool=None, silent: bool=None, contextId: "ExecutionContextId"=None, returnByValue: bool=None, generatePreview: bool=None, userGesture: bool=None, awaitPromise: bool=None):
# Expression to evaluate.
self.expression = expression
# Symbolic group name that can be used to release multiple objects.
self.objectGroup = objectGroup
# Determines whether Command Line API should be available during the evaluation.
self.includeCommandLineAPI = includeCommandLineAPI
# In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
self.silent = silent
# Specifies in which execution context to perform evaluation. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
self.contextId = contextId
# Whether the result is expected to be a JSON object that should be sent by value.
self.returnByValue = returnByValue
# Whether preview should be generated for the result.
self.generatePreview = generatePreview
# Whether execution should be treated as initiated by user in the UI.
self.userGesture = userGesture
# Whether execution should wait for promise to be resolved. If the result of evaluation is not a Promise, it's considered to be an error.
self.awaitPromise = awaitPromise
class awaitPromise(ChromeCommand):
"""Add handler to promise with given promise object id."""
def __init__(self, promiseObjectId: "RemoteObjectId", returnByValue: bool=None, generatePreview: bool=None):
# Identifier of the promise.
self.promiseObjectId = promiseObjectId
# Whether the result is expected to be a JSON object that should be sent by value.
self.returnByValue = returnByValue
# Whether preview should be generated for the result.
self.generatePreview = generatePreview
class callFunctionOn(ChromeCommand):
"""Calls function with given declaration on the given object. Object group of the result is inherited from the target object."""
def __init__(self, objectId: "RemoteObjectId", functionDeclaration: str, arguments: List=None, silent: bool=None, returnByValue: bool=None, generatePreview: bool=None, userGesture: bool=None, awaitPromise: bool=None):
# Identifier of the object to call function on.
self.objectId = objectId
# Declaration of the function to call.
self.functionDeclaration = functionDeclaration
# Call arguments. All call arguments must belong to the same JavaScript world as the target object.
self.arguments = arguments
# In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
self.silent = silent
# Whether the result is expected to be a JSON object which should be sent by value.
self.returnByValue = returnByValue
# Whether preview should be generated for the result.
self.generatePreview = generatePreview
# Whether execution should be treated as initiated by user in the UI.
self.userGesture = userGesture
# Whether execution should wait for promise to be resolved. If the result of evaluation is not a Promise, it's considered to be an error.
self.awaitPromise = awaitPromise
class getProperties(ChromeCommand):
"""Returns properties of a given object. Object group of the result is inherited from the target object."""
def __init__(self, objectId: "RemoteObjectId", ownProperties: bool=None, accessorPropertiesOnly: bool=None, generatePreview: bool=None):
# Identifier of the object to return properties for.
self.objectId = objectId
# If true, returns properties belonging only to the element itself, not to its prototype chain.
self.ownProperties = ownProperties
# If true, returns accessor properties (with getter/setter) only; internal properties are not returned either.
self.accessorPropertiesOnly = accessorPropertiesOnly
# Whether preview should be generated for the results.
self.generatePreview = generatePreview
class releaseObject(ChromeCommand):
"""Releases remote object with given id."""
def __init__(self, objectId: "RemoteObjectId"):
# Identifier of the object to release.
self.objectId = objectId
class releaseObjectGroup(ChromeCommand):
"""Releases all remote objects that belong to a given group."""
def __init__(self, objectGroup: str):
# Symbolic object group name.
self.objectGroup = objectGroup
class runIfWaitingForDebugger(ChromeCommand):
"""Tells inspected instance to run if it was waiting for debugger to attach."""
def __init__(self): pass
class enable(ChromeCommand):
"""Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context."""
def __init__(self): pass
class disable(ChromeCommand):
"""Disables reporting of execution contexts creation."""
def __init__(self): pass
class discardConsoleEntries(ChromeCommand):
"""Discards collected exceptions and console API calls."""
def __init__(self): pass
class setCustomObjectFormatterEnabled(ChromeCommand):
def __init__(self, enabled: bool):
self.enabled = enabled
class compileScript(ChromeCommand):
"""Compiles expression."""
def __init__(self, expression: str, sourceURL: str, persistScript: bool, executionContextId: "ExecutionContextId"=None):
# Expression to compile.
self.expression = expression
# Source url to be set for the script.
self.sourceURL = sourceURL
# Specifies whether the compiled script should be persisted.
self.persistScript = persistScript
# Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
self.executionContextId = executionContextId
class runScript(ChromeCommand):
"""Runs script with given id in a given context."""
def __init__(self, scriptId: "ScriptId", executionContextId: "ExecutionContextId"=None, objectGroup: str=None, silent: bool=None, includeCommandLineAPI: bool=None, returnByValue: bool=None, generatePreview: bool=None, awaitPromise: bool=None):
# Id of the script to run.
self.scriptId = scriptId
# Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
self.executionContextId = executionContextId
# Symbolic group name that can be used to release multiple objects.
self.objectGroup = objectGroup
# In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
self.silent = silent
# Determines whether Command Line API should be available during the evaluation.
self.includeCommandLineAPI = includeCommandLineAPI
# Whether the result is expected to be a JSON object which should be sent by value.
self.returnByValue = returnByValue
# Whether preview should be generated for the result.
self.generatePreview = generatePreview
# Whether execution should wait for promise to be resolved. If the result of evaluation is not a Promise, it's considered to be an error.
self.awaitPromise = awaitPromise
| [
"[email protected]"
]
| |
e39396344dfa389cd482fb0f09a82d0ffbd041e9 | 930a868ae9bbf85df151b3f54d04df3a56bcb840 | /benchmark/union_find_decoder/atomic_qubit_model/perfect_measurement/run_experiment.py | 4f1ba3312e3746483f2566fb68d9402c43a492e5 | [
"MIT"
]
| permissive | yuewuo/QEC-Playground | 1148f3c5f4035c069986d8b4103acf7f1e34f9d4 | 462208458cdf9dc8a33d4553a560f8a16c00e559 | refs/heads/main | 2023-08-10T13:05:36.617858 | 2023-07-22T23:48:49 | 2023-07-22T23:48:49 | 312,809,760 | 16 | 1 | MIT | 2023-07-22T23:48:51 | 2020-11-14T12:10:38 | Python | UTF-8 | Python | false | false | 3,372 | py | import os, sys
import subprocess, sys
qec_playground_root_dir = subprocess.run("git rev-parse --show-toplevel", cwd=os.path.dirname(os.path.abspath(__file__)), shell=True, check=True, capture_output=True).stdout.decode(sys.stdout.encoding).strip(" \r\n")
rust_dir = os.path.join(qec_playground_root_dir, "backend", "rust")
fault_toleran_MWPM_dir = os.path.join(qec_playground_root_dir, "benchmark", "fault_tolerant_MWPM")
sys.path.insert(0, fault_toleran_MWPM_dir)
from automated_threshold_evaluation import qec_playground_fault_tolerant_MWPM_simulator_runner_vec_command
from automated_threshold_evaluation import run_qec_playground_command_get_stdout
# RUST_BACKTRACE=full cargo run --release -- tool fault_tolerant_benchmark [3] [0] [5e-1,2e-1,1e-1,5e-2,2e-2,1e-2,5e-3,2e-3,1e-3,5e-4,2e-4,1e-4,5e-5,2e-5,1e-5] -p0-m100000000 --shallow_error_on_bottom --decoder UF --max_half_weight 10
# RUST_BACKTRACE=full cargo run --release -- tool fault_tolerant_benchmark [5] [0] [5e-1,2e-1,1e-1,5e-2,2e-2,1e-2,5e-3,2e-3] -p0-m100000000 --shallow_error_on_bottom --decoder UF --max_half_weight 10
# RUST_BACKTRACE=full cargo run --release -- tool fault_tolerant_benchmark [7] [0] [5e-1,2e-1,1e-1,5e-2,2e-2,1e-2,5e-3,2e-3] -p0-m100000000 --shallow_error_on_bottom -e1000 --decoder UF --max_half_weight 10
# RUST_BACKTRACE=full cargo run --release -- tool fault_tolerant_benchmark [9] [0] [5e-1,2e-1,1e-1,5e-2,2e-2,1e-2,5e-3,2e-3] -p0-m100000000 --shallow_error_on_bottom -e1000 --decoder UF --max_half_weight 10
# RUST_BACKTRACE=full cargo run --release -- tool fault_tolerant_benchmark [11] [0] [5e-1,2e-1,1e-1,5e-2,2e-2,1e-2,5e-3,2e-3] -p0-m100000000 --shallow_error_on_bottom -e1000 --decoder UF --max_half_weight 10
# RUST_BACKTRACE=full cargo run --release -- tool fault_tolerant_benchmark [13] [0] [5e-1,2e-1,1e-1,5e-2,2e-2,1e-2,5e-3,2e-3] -p0-m100000000 --shallow_error_on_bottom -e1000 --decoder UF --max_half_weight 10
di_vec = [3, 5, 7, 9, 11, 13]
p_vec = [0.5 * (10 ** (- i / 10)) for i in range(10 * 2 + 1)]
print(p_vec)
min_error_cases = 1000
# debug configurations
# di_vec = [3, 5]
# p_vec = [0.5 * (10 ** (- i / 3)) for i in range(3)]
# min_error_cases = 100
max_N = 100000000
UF_parameters = f"-p0 --shallow_error_on_bottom --decoder UF --max_half_weight 10 --time_budget 3600".split(" ")
results = []
for di in di_vec:
for p in p_vec:
p_pauli = p * 0.05
p_erasure = p * 0.95
UF_command = qec_playground_fault_tolerant_MWPM_simulator_runner_vec_command([p_pauli], [di], [di], [0], UF_parameters + ["--pes", f"[{p_erasure}]"], max_N=max_N, min_error_cases=min_error_cases)
print(" ".join(UF_command))
# run experiment
stdout, returncode = run_qec_playground_command_get_stdout(UF_command)
print("\n" + stdout)
assert returncode == 0, "command fails..."
# full result
full_result = stdout.strip(" \r\n").split("\n")[-1]
lst = full_result.split(" ")
error_count = int(lst[4])
error_rate = float(lst[5])
confidence_interval = float(lst[7])
# record result
print_result = f"{p} " + full_result
results.append(print_result)
print(print_result)
if error_count < 100:
break # next is not trust-worthy, ignore every p behind it
results.append("")
print("\n\n")
print("\n".join(results))
| [
"[email protected]"
]
| |
be0b75475d921e2b3150d46ad352382e2d5dc7bb | dfc57c864598d8c6cf4a438fdf683722b8bdfa97 | /datastax_cassandra_deploy/utils.py | fcb6c03f5d309032d32f092db183ad5a18d0f545 | [
"Apache-2.0"
]
| permissive | ownport/datastax-cassandra-deploy | 9432ee7ffafb50feef066fe493d8876b9da4beb9 | 5eeb24f09ea7ae63f6234c75279f3592b4557400 | refs/heads/master | 2021-06-17T15:41:52.785970 | 2019-06-25T19:34:33 | 2019-06-25T19:34:33 | 191,298,874 | 1 | 0 | Apache-2.0 | 2021-03-25T22:40:53 | 2019-06-11T05:18:14 | Python | UTF-8 | Python | false | false | 1,665 | py |
import json
import yaml
import logging
logger = logging.getLogger(__name__)
def load_deployment(deployments):
''' reused from https://github.com/ansible/ansible/blob/devel/lib/ansible/utils/vars.py
and modified according to DataStax Cassandra deployment requirements
'''
result = {}
if not deployments:
return result
for deployment_file in deployments:
data = None
# Argument is a YAML file (JSON is a subset of YAML)
try:
with open(deployment_file, 'r', encoding='utf8') as source:
try:
deployment = yaml.load(source, Loader=yaml.FullLoader)
except yaml.YAMLError as err:
logger.error('{}, {}'.format(err, _vars))
except FileNotFoundError as err:
logger.error(err)
continue
if deployment and isinstance(deployment, dict):
result.update(deployment)
return result
def pretty_json(data):
''' returns pretty json
'''
return json.dumps(data, sort_keys=True, indent=4)
def remove_none_values(params):
''' remove elements with None values
'''
if not isinstance(params, dict):
return params
result = dict()
for k, v in params.items():
if v is not None:
result[k] = v
return result
def hide_sensetive_fields(params):
''' replace sensitive information by '*'
'''
if not isinstance(params, dict):
return params
for k, v in params.items():
if k in ('login-password', 'become-password', 'password'):
params[k] = '*' * 10
return params
| [
"[email protected]"
]
| |
ae95c88713e0cb71918e8f7b95f9960e7bfb1160 | 9a063667fb866fc3be52910e8dab53b73c144e7d | /forecast/auth/views.py | b27f15d7233fb8340c071ad09b54cdd67b27b4c6 | [
"MIT"
]
| permissive | lockefox/ProsperForecast | 45634904ce5f51628754dba791c414db23189787 | eccba1ba6e5e2322c20bec65421fb531acdf5f43 | refs/heads/master | 2020-04-07T18:03:21.192557 | 2018-11-30T20:58:54 | 2018-11-30T20:58:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,587 | py | from flask import request, jsonify, Blueprint, current_app as app
from flask_jwt_extended import (
create_access_token,
create_refresh_token,
jwt_required,
jwt_refresh_token_required,
get_jwt_identity,
get_raw_jwt
)
from forecast.models import User
from forecast.extensions import pwd_context, jwt
from forecast.auth.helpers import (
revoke_token,
is_token_revoked,
add_token_to_database
)
blueprint = Blueprint('auth', __name__, url_prefix='/auth')
@blueprint.route('/login', methods=['POST'])
def login():
"""Authenticate user and return token
"""
if not request.is_json:
return jsonify({"msg": "Missing JSON in request"}), 400
username = request.json.get('username', None)
password = request.json.get('password', None)
if not username or not password:
return jsonify({"msg": "Missing username or password"}), 400
user = User.query.filter_by(username=username).first()
if user is None or not pwd_context.verify(password, user.password):
return jsonify({"msg": "Bad credentials"}), 400
access_token = create_access_token(identity=user.id)
refresh_token = create_refresh_token(identity=user.id)
add_token_to_database(access_token, app.config['JWT_IDENTITY_CLAIM'])
add_token_to_database(refresh_token, app.config['JWT_IDENTITY_CLAIM'])
ret = {
'access_token': access_token,
'refresh_token': refresh_token
}
return jsonify(ret), 200
@blueprint.route('/refresh', methods=['POST'])
@jwt_refresh_token_required
def refresh():
current_user = get_jwt_identity()
access_token = create_access_token(identity=current_user)
ret = {
'access_token': access_token
}
add_token_to_database(access_token, app.config['JWT_IDENTITY_CLAIM'])
return jsonify(ret), 200
@blueprint.route('/revoke_access', methods=['DELETE'])
@jwt_required
def revoke_access_token():
jti = get_raw_jwt()['jti']
user_identity = get_jwt_identity()
revoke_token(jti, user_identity)
return jsonify({"message": "token revoked"}), 200
@blueprint.route('/revoke_refresh', methods=['DELETE'])
@jwt_refresh_token_required
def revoke_refresh_token():
jti = get_raw_jwt()['jti']
user_identity = get_jwt_identity()
revoke_token(jti, user_identity)
return jsonify({"message": "token revoked"}), 200
@jwt.user_loader_callback_loader
def user_loader_callback(identity):
return User.query.get(identity)
@jwt.token_in_blacklist_loader
def check_if_token_revoked(decoded_token):
return is_token_revoked(decoded_token)
| [
"[email protected]"
]
| |
f3712b6de2d824dba7c3ff61ab63cb05a89d7b24 | 0211c16c9a3785444e5204156adafb53a8d8c93c | /src/spaceone/identity/service/domain_owner_service.py | 01c0bf7823d294377de40e8eb37e3d53e5a2790d | [
"Apache-2.0"
]
| permissive | pyengine/identity | b85eed6513225b20db998c01832bc316a1cd4f24 | 4ab9feb3694851fe41b74ecce75c6f5b4f00549f | refs/heads/master | 2022-12-12T04:44:55.472721 | 2020-09-11T02:42:01 | 2020-09-11T02:42:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,233 | py | import logging
from spaceone.core.service import *
from spaceone.identity.manager import DomainManager, DomainOwnerManager
from spaceone.identity.manager.domain_secret_manager import DomainSecretManager
from spaceone.identity.model import Domain
#@authentication_handler
#@authorization_handler
@event_handler
class DomainOwnerService(BaseService):
def __init__(self, metadata):
super().__init__(metadata)
self.domain_owner_mgr: DomainOwnerManager = self.locator.get_manager('DomainOwnerManager')
@transaction
@check_required(['owner_id', 'password', 'domain_id'])
def create_owner(self, params):
return self.domain_owner_mgr.create_owner(params)
@transaction
@check_required(['owner_id', 'domain_id'])
def update_owner(self, params):
return self.domain_owner_mgr.update_owner(params)
@transaction
@check_required(['domain_id', 'owner_id'])
def delete_owner(self, params):
self.domain_owner_mgr.delete_owner(params['domain_id'], params['owner_id'])
@transaction
@check_required(['domain_id'])
def get_owner(self, params):
return self.domain_owner_mgr.get_owner(params['domain_id'], params.get('owner_id'), params.get('only'))
| [
"[email protected]"
]
| |
9892521d3ac95312fdcb0b4127583b854e9f9472 | b000127408f96db7411f301553585f5da0e426cd | /code/Find-Smallest-Letter-Greater-Than-Target.py | 8aee8cd7459327bce3cf3cb8411503c855d7e7b3 | []
| no_license | SaiVK/Leetcode-Archive | 5f758faf97d1ab559c4c75d26ae5cf7a256baef8 | 56bafeaaced2d0fd3b3d2f1a0365d24d5b41e504 | refs/heads/master | 2022-11-23T08:50:17.610247 | 2020-07-27T02:09:53 | 2020-07-27T02:09:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 983 | py | import string
class Solution(object):
def nextGreatestLetter(self, letterList, target):
self.letters = list((string.ascii_lowercase * 3))
self.target = target
self.letterIndex = self.letters.index(target)
def calc_distance(letter):
x = self.letters.index(letter)
self.letters[x] = None
z = self.letters.index(letter)
self.letters[x] = letter
self.letters[self.letterIndex] = target
print (x - self.letterIndex)
print (z - self.letterIndex)
if ((x - self.letterIndex) < 0):
x = 99999
else:
x = (x - self.letterIndex)
if ((z - self.letterIndex) < 0):
z = 99999
else:
z = (z - self.letterIndex)
return min(x, z)
for v in sorted(letterList, key=(lambda k: calc_distance(k))):
if (v != target):
return v
| [
"[email protected]"
]
| |
cda52ad208ce0243b35465c1db3986b72cc27b41 | e3365bc8fa7da2753c248c2b8a5c5e16aef84d9f | /indices/nnmuschelkalk.py | ecf6f1dcd56a62fe81302f2e0d7775c9c1887b96 | []
| no_license | psdh/WhatsintheVector | e8aabacc054a88b4cb25303548980af9a10c12a8 | a24168d068d9c69dc7a0fd13f606c080ae82e2a6 | refs/heads/master | 2021-01-25T10:34:22.651619 | 2015-09-23T11:54:06 | 2015-09-23T11:54:06 | 42,749,205 | 2 | 3 | null | 2015-09-23T11:54:07 | 2015-09-18T22:06:38 | Python | UTF-8 | Python | false | false | 45 | py | ii = [('BuckWGM.py', 11), ('BuckWGM2.py', 1)] | [
"[email protected]"
]
| |
8412c4a8ea6a6053ee45135ce26cf42deedf993e | fd9a184380b1b8ed22ab82b623d28241b129c925 | /print_triangle.py | 4c742faef4e4631fbbf78a41a44089b660e01dd7 | []
| no_license | chen-qian-dan/Codes_Python | 31925b7cf1043ae5fbd0eef81511d0fd58436646 | 367e8660a38555f37ddb91bf9d05258d4ca6a6a8 | refs/heads/master | 2022-04-16T22:11:09.115850 | 2020-03-09T09:26:44 | 2020-03-09T09:26:44 | 224,622,481 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 103 | py |
print(" /|")
print(" / |")
print(" / |")
print(" / |")
print(" / |")
print("/_____|")
| [
"[email protected]"
]
| |
2813003b3862939824725bf3c272bb60edbaa9e8 | c9000e5e30825b29febbefa5ad00da1f57551f8e | /03/zhumeichao/test02.py | 80b502f03b776005dc5eeba1ff236505504d123b | []
| no_license | xiaotian1991/actual-10-homework | 81c58b24f58fc87e4890f1475ad83de8b66ee53b | 0b379ca6189f843f121df4db5814c83262f9981a | refs/heads/master | 2021-06-12T23:35:52.954510 | 2017-03-24T07:41:18 | 2017-03-24T07:41:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,608 | py | #!/usr/bin/env python
#coding=utf-8
#字符串、列表、字典之间的转换
text="who have touched their lives Love begins with a smile grows with a kiss and ends with a tear The brightest future will always be based on a forgotten past you can’t go on well in lifeuntil you let go of your past failures and heartaches"
#字符串切割 --》列表
word=text.split(" ")
print word
#统计字符串出现次数 --》字典
d={}
for i in word:
if i not in d:
d[i]=1
else:
d[i]+=1
print d
#反转统计次数对应字符串 --》字典嵌套列表
dr={}
'''方法一:
for k,v in d.items():
if v not in dr:
dr[v]=[k]
else:
dr[v].append(k)
'''
#方法二:
for k,v in d.items():
dr.setdefault(v,[])
dr[v].append(k)
print dr
#对字典中key次数进行排序 --》列表
print dr.items()[::-1]
#显示在html文件中
f = open('tongji.html','w+')
f.write("<html><table style='border:solid 1px'>")
f.write("<th style='border:solid 2px' width=80px>出现次数</th><th style='border:solid 2px'>单词汇总</th>")
#列表取值
arr=dr.items()[::-1]
for t in arr:
f.write('<tr><td style="border:solid 1px">%s</td><td style="border:solid 1px">%s</td></tr>' % (t[0],t[1]))
'''
#字典取值
count = 0
while count < 4:
key = max(dr.keys())
print "出现了%s次的单词:%s" % (key,dr[key])
for word in dr[key]:
f.write('<tr><td style="border:solid 1px">%s</td><td style="border:solid 1px">%s</td></tr>' % (key,word))
dr.pop(key)
count = count +1
'''
f.write("</table></html>")
f.close()
| [
"[email protected]"
]
| |
64edf9702104dce44c2a1f5a7b4477742e5c33cd | 6b98594c029605806418d187672f476fde5792b7 | /sandbox/rocky/tf/spaces/discrete.py | 13ad009859ccef63e31b6edb60a1316baeaee9ff | [
"MIT",
"LicenseRef-scancode-generic-cla"
]
| permissive | russellmendonca/GMPS | 3f65eb250bff008da9beea6b9d1f04aca2d46c6a | 638087160c48f9f016dc74b0904f8ba2503ea285 | refs/heads/master | 2023-01-22T07:53:21.504243 | 2019-10-26T11:23:42 | 2019-10-26T11:23:42 | 178,866,391 | 18 | 8 | NOASSERTION | 2023-01-19T06:42:27 | 2019-04-01T13:12:40 | Python | UTF-8 | Python | false | false | 1,611 | py | from rllab.spaces.base import Space
import numpy as np
from rllab.misc import special
from rllab.misc import ext
import tensorflow as tf
class Discrete(Space):
"""
{0,1,...,n-1}
"""
def __init__(self, n):
self._n = n
@property
def n(self):
return self._n
def sample(self):
return np.random.randint(self.n)
def sample_n(self, n):
return np.random.randint(low=0, high=self.n, size=n)
def contains(self, x):
x = np.asarray(x)
return x.shape == () and x.dtype.kind == 'i' and x >= 0 and x < self.n
def __repr__(self):
return "Discrete(%d)" % self.n
def __eq__(self, other):
return self.n == other.n
def flatten(self, x):
return special.to_onehot(x, self.n)
def unflatten(self, x):
return special.from_onehot(x)
def flatten_n(self, x):
return special.to_onehot_n(x, self.n)
def unflatten_n(self, x):
return special.from_onehot_n(x)
@property
def default_value(self):
return 0
@property
def flat_dim(self):
return self.n
def weighted_sample(self, weights):
return special.weighted_sample(weights, range(self.n))
def new_tensor_variable(self, name, extra_dims):
# needed for safe conversion to float32
return tf.placeholder(dtype=tf.uint8, shape=[None] * extra_dims + [self.flat_dim], name=name)
def __eq__(self, other):
if not isinstance(other, Discrete):
return False
return self.n == other.n
def __hash__(self):
return hash(self.n)
| [
"[email protected]"
]
| |
016c9a80eb3293fe19613d524785afd10481a1bc | 3512a534001e2b4dcc10808fee7d57b9ac9f1f13 | /accounts/views.py | 9907d95a50e352a839fd4a6446ea54056ea407f4 | []
| no_license | suryanshtokas/blog-app | 1adb4521e731ed693d103220c4ec1111c26894a8 | 80784c643e73a67e0bc89ee62e5358b3312a9314 | refs/heads/master | 2022-11-21T01:35:59.437795 | 2020-07-16T14:23:28 | 2020-07-16T14:23:28 | 280,171,745 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 334 | py | from django.shortcuts import render
from django.contrib.auth.forms import UserCreationForm
from django.urls import reverse_lazy
from django.views import generic
class SignUpView(generic.CreateView):
form_class = UserCreationForm
success_url = reverse_lazy('login')
template_name='signup.html'
# Create your views here.
| [
"[email protected]"
]
| |
984dfecf51ecb2edfcee1084f4c5a3dcfe5126f0 | 9eb6528606cf9dd011a3ce0c1605b111c9d50955 | /python/6-4super函数使用2.py | 415ba6a7c294f71de06da5708a31d96bf1bab2d8 | []
| no_license | arch123A/luoye | 0ca9f787c7d5e9ba89d2ae602528e68d7d31a636 | ba8e902cefba2c3ccc58bc266cdf9a7eff03a458 | refs/heads/master | 2023-02-02T22:47:00.256065 | 2020-12-13T09:30:33 | 2020-12-13T09:30:33 | 104,022,159 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,788 | py | print("******多继承使用super().__init__ 发生的状态******")
class Parent(object):
def __init__(self, name, *args, **kwargs): # 为避免多继承报错,使用不定长参数,接受参数
print('parent的init开始被调用')
self.name = name
print('parent的init结束被调用')
class Son1(Parent):
def __init__(self, name, age, *args, **kwargs): # 为避免多继承报错,使用不定长参数,接受参数
print('Son1的init开始被调用')
self.age = age
super().__init__(name, *args, **kwargs) # 为避免多继承报错,使用不定长参数,接受参数
print('Son1的init结束被调用')
class Son2(Parent):
def __init__(self, name, gender, *args, **kwargs): # 为避免多继承报错,使用不定长参数,接受参数
print('Son2的init开始被调用')
self.gender = gender
super().__init__(name, *args, **kwargs) # 为避免多继承报错,使用不定长参数,接受参数
print('Son2的init结束被调用')
class Grandson(Son1, Son2):
def __init__(self, name, age, gender):
print('Grandson的init开始被调用')
# 多继承时,相对于使用类名.__init__方法,要把每个父类全部写一遍
# 而super只用一句话,执行了全部父类的方法,这也是为何多继承需要全部传参的一个原因
# super(Grandson, self).__init__(name, age, gender)
super().__init__(name, age, gender)
print('Grandson的init结束被调用')
print(Grandson.__mro__)
gs = Grandson('grandson', 12, '男')
print('姓名:', gs.name)
print('年龄:', gs.age)
print('性别:', gs.gender)
print("******多继承使用super().__init__ 发生的状态******\n\n")
| [
"[email protected]"
]
| |
88d24b558542bdd433aa64dcd61afba9c7240541 | e836eb7ee910c1ca85233c48eadcd49a52bb20ea | /Fractals/Mandelbrot.py | 6e40f7a3084de57394306c1bc84a6b0b921b5a2c | []
| no_license | SymmetricChaos/MyOtherMathStuff | 5d0c47adfaad0e7fb7f0e8736617f15bbac7ed37 | 9dd6920b44658d2faacb54d7120e83ff7de45bf3 | refs/heads/master | 2021-06-26T18:34:13.178520 | 2021-01-03T14:22:10 | 2021-01-03T14:22:10 | 196,845,677 | 38 | 2 | null | null | null | null | UTF-8 | Python | false | false | 1,062 | py | import math
import numpy as np
def mandel(n=30,m=30):
imarr = np.zeros((m*3+1,m*3+1))
r = math.floor(m*1.5)
xr = [x / float(m) -0.75 for x in range(-r,r+1,1)]
yr = [x / float(m) for x in range(-r,r+1,1)]
print(len(xr))
for x in range(m*3+1):
for y in range(m*3+1):
a,b = xr[x],yr[y]
for i in range(n+1):
a1 = (a*a)-(b*b) + xr[x]
b1 = 2*(a*b) + yr[y]
if(math.sqrt(a1*a1+b1*b1) > 2):
imarr[x][y] = i
break
a,b = a1,b1
if(i == n):
imarr[x][y] = n
return(imarr)
a = mandel(n=20,m=100)
import matplotlib.pyplot as plt
fig = plt.figure()
fig.set_size_inches(15,15)
ax = plt.Axes(fig,[0.,0.,1.,1.])
ax.set_axis_off()
fig.add_axes(ax)
plt.set_cmap("hot")
ax.imshow(a)
#plt.savefig("Mandelbrot.png",dpi=80)
#import csv
#with open("PythonMandel.csv","w",newline="") as csvfile:
# wtr = csv.writer(csvfile, delimiter = ",")
# wtr.writerow(a)
| [
"[email protected]"
]
| |
9eb39fa7e26c964a1c581ca9bc6c19ae3c5518d4 | 45c170fb0673deece06f3055979ece25c3210380 | /toontown/coghq/CashbotMintControlRoom_Battle00_Cogs.py | 8e2affb201f05aaddb5f6cf4666f6853885ade9a | []
| no_license | MTTPAM/PublicRelease | 5a479f5f696cfe9f2d9dcd96f378b5ce160ec93f | 825f562d5021c65d40115d64523bb850feff6a98 | refs/heads/master | 2021-07-24T09:48:32.607518 | 2018-11-13T03:17:53 | 2018-11-13T03:17:53 | 119,129,731 | 2 | 6 | null | 2018-11-07T22:10:10 | 2018-01-27T03:43:39 | Python | UTF-8 | Python | false | false | 1,048 | py | #Embedded file name: toontown.coghq.CashbotMintControlRoom_Battle00_Cogs
from toontown.coghq.SpecImports import *
from toontown.toonbase import ToontownGlobals
CogParent = 10000
BattleCellId = 0
BattleCells = {BattleCellId: {'parentEntId': CogParent,
'pos': Point3(0, 0, 0)}}
CogData = [{'parentEntId': CogParent,
'boss': 1,
'level': 14,
'battleCell': BattleCellId,
'pos': Point3(-6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 1},
{'parentEntId': CogParent,
'boss': 0,
'level': 11,
'battleCell': BattleCellId,
'pos': Point3(-2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': CogParent,
'boss': 0,
'level': 10,
'battleCell': BattleCellId,
'pos': Point3(2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': CogParent,
'boss': 0,
'level': 10,
'battleCell': BattleCellId,
'pos': Point3(6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0}]
ReserveCogData = []
| [
"[email protected]"
]
| |
aa8692f6cc8eabdf8af875a4dae6910929b7849a | 534570bbb873293bd2646a1567b63d162fbba13c | /Python/Data Structure/Linear List/Array/K Sum/18.4-sum.py | 5c1d0a6f23af7229aebaed7b762696320f35849d | []
| no_license | XinheLIU/Coding-Interview | fa3df0f7167fb1bc6c8831748249ebaa6f164552 | d6034c567cef252cfafca697aa316c7ad4e7d128 | refs/heads/master | 2022-09-17T14:30:54.371370 | 2022-08-19T15:53:35 | 2022-08-19T15:53:35 | 146,382,499 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 1,123 | py | #
# @lc app=leetcode id=18 lang=python3
#
# [18] 4Sum
#
# @lc code=start
class Solution:
def fourSum(self, nums: List[int], target: int) -> List[List[int]]:
nums.sort()
res = []
n = len(nums)
for i in range(0, n - 3):
if i and nums[i] == nums[i - 1]:
continue
for j in range(i + 1, n - 2):
if j != i + 1 and nums[j] == nums[j - 1]:
continue
Sum = target - nums[i] - nums[j]
l, r = j + 1, n - 1
while l < r:
if nums[l] + nums[r] == Sum:
res.append([nums[i], nums[j], nums[l], nums[r]])
r -= 1
l += 1
while l < r and nums[l] == nums[l - 1]:
l += 1
while l < r and nums[r] == nums[r + 1]:
r -= 1
elif nums[l] + nums[r] > Sum:
r -= 1
else:
l += 1
return res
# @lc code=end
| [
"[email protected]"
]
| |
5b73b192746d5b1228688ae57162a9d58057078d | 163bbb4e0920dedd5941e3edfb2d8706ba75627d | /Code/CodeRecords/2248/60690/275776.py | ca2ee4bb78146b5668b55fdda0acc54a66584f86 | []
| no_license | AdamZhouSE/pythonHomework | a25c120b03a158d60aaa9fdc5fb203b1bb377a19 | ffc5606817a666aa6241cfab27364326f5c066ff | refs/heads/master | 2022-11-24T08:05:22.122011 | 2020-07-28T16:21:24 | 2020-07-28T16:21:24 | 259,576,640 | 2 | 1 | null | null | null | null | UTF-8 | Python | false | false | 131 | py | n=int(input())
a=int(input())
b=int(input())
num=1
while n>0:
if num%a==0 or num%b==0: n-=1
num+=1
print((num-1)%(10**9+7)) | [
"[email protected]"
]
| |
34ba01a58336d2f71eda9ce17d9bb08ce4174e3f | 1e30de35480b76f5d00229f5d2fd805bf96ccd9a | /ch10_httpd/p5_lab1_config_web_app/webapp.wsgi | e535b4a2a1e06a05abcd8cb604bdf8fc0e354507 | []
| no_license | alexbaltman/RHCE | 4be7987cb1b58c81d870f93b11d5a7a9d52d40c3 | b143daeb2d5d92ebb4e2eb92efd2892dc8ed3bab | refs/heads/master | 2021-01-13T14:50:44.837021 | 2017-02-16T03:51:05 | 2017-02-16T03:51:05 | 76,525,209 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 277 | wsgi | def application(environ, start_response):
status = '200 OK'
output = 'Hello World!\n'
response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)
return [output]
| [
"[email protected]"
]
| |
0c428f58dddfce0e8d9c0d84f7a3137bcccc4a8b | 61166d9797ba949be9ad1b805ae840ff8749e64b | /BINARY_SEARCH/binary_search_recursive.py | 5c2a64976a81160344236a62fe27a90c71a91683 | []
| no_license | shubhamrocks888/questions | 216f4f6e8ae6df5a1eb156c2cbf1004b09b1ca88 | 76c98c0e3edccf6552823892058e097b61daa530 | refs/heads/master | 2022-12-16T23:07:07.689312 | 2020-09-14T04:45:12 | 2020-09-14T04:45:12 | 284,040,183 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 395 | py | # RECURSIVE APPROACH:
def binary_search(arr,start,end,n):
mid = (start+end)//2
if start<=end:
if arr[mid]==n:
return "yes"
elif arr[mid]<n:
return binary_search(arr,mid+1,end,n)
else:
return binary_search(arr,start,mid-1,n)
return "no"
arr = [1,2,3,4,5,6,7]
print (binary_search(arr,0,len(arr)-1,8))
| [
"[email protected]"
]
| |
7be4818b6c0e6441e0cbd480a64d904766a69b8c | 525a9f62e61c08e73e8dc9a862ac16f1a38c90ee | /guillotina_cms/content/document.py | d292d22d28c9bd5c118bd5020c43434a0ee22d2d | [
"BSD-2-Clause"
]
| permissive | plone/guillotina_cms | 3a665e7bb226239d39226212773109e2aca16d88 | 44f945d263e92195a3a004a9bea3c89cb68db298 | refs/heads/master | 2021-06-05T15:14:12.181692 | 2020-11-25T06:42:20 | 2020-11-25T06:42:20 | 96,428,280 | 5 | 2 | NOASSERTION | 2019-11-27T08:02:50 | 2017-07-06T12:34:14 | Python | UTF-8 | Python | false | false | 491 | py | # -*- encoding: utf-8 -*-
from guillotina import configure
from guillotina.content import Folder
from guillotina.directives import index
from guillotina_cms.interfaces import IDocument
@configure.contenttype(
type_name="Document",
schema=IDocument,
behaviors=[
"guillotina.behaviors.dublincore.IDublinCore",
"guillotina_cms.interfaces.base.ICMSBehavior",
],
allowed_types=["Image", "File"], # dynamically calculated
)
class Document(Folder):
pass
| [
"[email protected]"
]
| |
522d2d0a1f3690c89ebea50346950bc9d5bdae9c | 163bbb4e0920dedd5941e3edfb2d8706ba75627d | /Code/CodeRecords/2313/60730/307045.py | 03ebc4ac892099f3b7f6ae0b0fd55ca0e4c16566 | []
| no_license | AdamZhouSE/pythonHomework | a25c120b03a158d60aaa9fdc5fb203b1bb377a19 | ffc5606817a666aa6241cfab27364326f5c066ff | refs/heads/master | 2022-11-24T08:05:22.122011 | 2020-07-28T16:21:24 | 2020-07-28T16:21:24 | 259,576,640 | 2 | 1 | null | null | null | null | UTF-8 | Python | false | false | 2,168 | py | # coding=utf-8
import queue
class TreeNode(object):
def __init__(self, data=None, left=0, right=0):
self.data = data
if left != 0:
self.left = left
else:
self.left = 0
if right != 0:
self.right = right
else:
self.right = 0
# 这一步是在每次调用某个结点时,自动调用.data的方法
def __str__(self):
return str(self.data)
class Solution:
def createTree(self, root):
if root.left != 0:
root.left = num[root.left - 1]
self.createTree(root.left)
if root.right != 0:
root.right = num[root.right - 1]
self.createTree(root.right)
return root
def midTraverse(self, root):
if root == 0:
return
self.midTraverse(root.left)
ans.append(root.data)
self.midTraverse(root.right)
def is_cbt(self, root):
if root is None:
return True
q = [root]
reach_leaf = False
while q:
node = q.pop(0)
l, r = node.left, node.right
if l == 0 and r != 0:
return False
if (l != 0 or r != 0) and reach_leaf:
return False
if l != 0:
q.append(l)
if r != 0:
q.append(r)
else:
reach_leaf = True
return True
if __name__ == "__main__":
n, root = map(int, input().strip().split())
num = []
for i in range(n * n):
num.append(TreeNode(i + 1, 0, 0))
ans = []
cnt = []
for i in range(n):
try:
a, b, c = map(int, input().strip().split())
num[a - 1] = TreeNode(a, b, c)
if root == a:
root = TreeNode(a, b, c)
n = root
except:
break
solution = Solution()
solution.createTree(root)
solution.midTraverse(root)
if solution.is_cbt(root):
print("true")
else:
print("false")
test = ans
if sorted(test) == ans:
print("true")
else:
print("false")
| [
"[email protected]"
]
| |
9b5869e02799aa26440534bb61ebed80f49efc52 | 54f352a242a8ad6ff5516703e91da61e08d9a9e6 | /Source Codes/AtCoder/agc025/B/3089839.py | 33a767ce2060231504f7cf243adfe0c97f64ab32 | []
| no_license | Kawser-nerd/CLCDSA | 5cbd8a4c3f65173e4e8e0d7ed845574c4770c3eb | aee32551795763b54acb26856ab239370cac4e75 | refs/heads/master | 2022-02-09T11:08:56.588303 | 2022-01-26T18:53:40 | 2022-01-26T18:53:40 | 211,783,197 | 23 | 9 | null | null | null | null | UTF-8 | Python | false | false | 693 | py | N,A,B,K=map(int,input().split())
P=998244353
def egcd(a, b):
(x, lastx) = (0, 1)
(y, lasty) = (1, 0)
while b != 0:
q = a // b
(a, b) = (b, a % b)
(x, lastx) = (lastx - q * x, x)
(y, lasty) = (lasty - q * y, y)
return (lastx, lasty, a)
def inv(x):
return egcd(x,P)[0]
Fact=[0 for i in range(N+1)]
Finv=[0 for i in range(N+1)]
Fact[0]=1
Finv[0]=1
for i in range(1,N+1):
Fact[i]=(i*Fact[i-1])%P
Finv[i]=(Finv[i-1]*inv(i))%P
ans=0
def NC(k):
tmp=(Finv[k]*Finv[N-k])%P
return (Fact[N]*tmp)%P
for x in range(N+1):
y=(K-x*A)//B
if x*A+y*B==K and 0<=y<=N:
ans+=(NC(x)*NC(y))%P
print(ans%P) | [
"[email protected]"
]
| |
41d46ae992e4f2ed51d6dd362942945311924a12 | 2f98aa7e5bfc2fc5ef25e4d5cfa1d7802e3a7fae | /python/python_1341.py | 87654f4a8af2cde6d68e71f3199c09f17d108890 | []
| no_license | AK-1121/code_extraction | cc812b6832b112e3ffcc2bb7eb4237fd85c88c01 | 5297a4a3aab3bb37efa24a89636935da04a1f8b6 | refs/heads/master | 2020-05-23T08:04:11.789141 | 2015-10-22T19:19:40 | 2015-10-22T19:19:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 125 | py | # Creating a generator expression from a list in python
for item in (x.attr for x in some_list):
do_something_with(item)
| [
"[email protected]"
]
| |
4b9e9217785da8c7dabeb772d5a56b118350522c | aa0270b351402e421631ebc8b51e528448302fab | /sdk/eventgrid/azure-mgmt-eventgrid/generated_samples/partner_configurations_unauthorize_partner.py | 3d4824a9f378093e0e3631555305ab784c298df3 | [
"MIT",
"LGPL-2.1-or-later",
"LicenseRef-scancode-generic-cla"
]
| permissive | fangchen0601/azure-sdk-for-python | d04a22109d0ff8ff209c82e4154b7169b6cb2e53 | c2e11d6682e368b2f062e714490d2de42e1fed36 | refs/heads/master | 2023-05-11T16:53:26.317418 | 2023-05-04T20:02:16 | 2023-05-04T20:02:16 | 300,440,803 | 0 | 0 | MIT | 2020-10-16T18:45:29 | 2020-10-01T22:27:56 | null | UTF-8 | Python | false | false | 1,838 | py | # coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
from azure.identity import DefaultAzureCredential
from azure.mgmt.eventgrid import EventGridManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-eventgrid
# USAGE
python partner_configurations_unauthorize_partner.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = EventGridManagementClient(
credential=DefaultAzureCredential(),
subscription_id="5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
)
response = client.partner_configurations.unauthorize_partner(
resource_group_name="examplerg",
partner_info={
"authorizationExpirationTimeInUtc": "2022-01-28T01:20:55.142Z",
"partnerName": "Contoso.Finance",
"partnerRegistrationImmutableId": "941892bc-f5d0-4d1c-8fb5-477570fc2b71",
},
)
print(response)
# x-ms-original-file: specification/eventgrid/resource-manager/Microsoft.EventGrid/stable/2022-06-15/examples/PartnerConfigurations_UnauthorizePartner.json
if __name__ == "__main__":
main()
| [
"[email protected]"
]
| |
44f6ec999e0c559eb303b70a47b8dd21f56f6cb8 | d057cafdb198af93a969c10829f4f28c59fbcd15 | /reborn_web/free/migrations/0002_free_images.py | ddf679d2579ed6b560ebab34463b808d2ca30c1a | []
| no_license | PresentJay/Re-Born-Web | b6b979b965fdc2e442d4e55decc1d6917f8ef0aa | 36521e59829c3b01cc749e20241db277ce027fcd | refs/heads/master | 2021-01-01T13:43:49.803851 | 2020-02-08T15:05:17 | 2020-02-08T15:05:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 436 | py | # Generated by Django 3.0.2 on 2020-01-29 10:13
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('free', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='free',
name='images',
field=models.ImageField(blank=True, null=True, upload_to='summernote/%Y/%m/%d', verbose_name='이미지'),
),
]
| [
"[email protected]"
]
| |
439126eba273377bc5ea787c30d09045764a9ec6 | ee8c4c954b7c1711899b6d2527bdb12b5c79c9be | /assessment2/amazon/run/core/controllers/vase.py | fc7802475ede80af2fe9834e372e63427cc31a19 | []
| no_license | sqlconsult/byte | 02ac9899aebea4475614969b594bfe2992ffe29a | 548f6cb5038e927b54adca29caf02c981fdcecfc | refs/heads/master | 2021-01-25T14:45:42.120220 | 2018-08-11T23:45:31 | 2018-08-11T23:45:31 | 117,135,069 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 362 | py | #!/usr/bin/env python3
from flask import Blueprint, Flask, render_template, request, url_for
controller = Blueprint('vase', __name__, url_prefix='/vase')
# @controller.route('/<string:title>', methods=['GET'])
# def lookup(title):
# if title == 'Republic': # TODO 2
# return render_template('republic.html') # TODO 2
# else:
# pass
| [
"[email protected]"
]
| |
5a537e03cd977e2a4724cfe99883c2d5f3f1c0c4 | 87cac4166f07729f1c94066259996c8b752c1202 | /aiobbox/tools/startbox.py | e18beb378195b37e2a8fc3854c14fcedddfff47a | []
| no_license | danielsocials/bbox | 068238a15880468d214109a23017a19e70fc13ec | 292e350b1cefbbab987baf8c946d4021abd211ea | refs/heads/master | 2020-03-16T06:25:47.907369 | 2018-05-08T04:42:45 | 2018-05-08T04:42:45 | 132,554,332 | 0 | 0 | null | 2018-05-08T04:36:35 | 2018-05-08T04:36:35 | null | UTF-8 | Python | false | false | 2,299 | py | import os, sys
import logging
import uuid
import json
import asyncio
import argparse
import aiobbox.server as bbox_server
from aiobbox.cluster import get_box, get_cluster
from aiobbox.cluster import get_ticket
from aiobbox.utils import import_module
from aiobbox.handler import BaseHandler
class Handler(BaseHandler):
help = 'start bbox python project'
run_forever = True
def add_arguments(self, parser):
parser.add_argument(
'module',
type=str,
nargs='+',
help='the box service module to load')
parser.add_argument(
'--boxid',
type=str,
default='',
help='box id')
parser.add_argument(
'--ssl',
type=str,
default='',
help='ssl prefix, the files certs/$prefix/$prefix.crt and certs/$prefix/$prefix.key must exist if specified')
parser.add_argument(
'--ttl',
type=float,
default=3600 * 24, # one day
help='time to live')
async def run(self, args):
cfg = get_ticket()
if cfg.language != 'python3':
print('language must be python3', file=sys.stderr)
sys.exit(1)
if not args.boxid:
args.boxid = uuid.uuid4().hex
mod_handlers = []
for modspec in args.module:
mod = import_module(modspec)
if hasattr(mod, 'Handler'):
mod_handlers.append(mod.Handler())
else:
mod_handlers.append(BaseHandler())
# start cluster client
await get_cluster().start()
src, handler = await bbox_server.start_server(args)
for h in mod_handlers:
await h.start(args)
self.handler = handler
self.mod_handlers = mod_handlers
asyncio.ensure_future(self.wait_ttl(args.ttl))
async def wait_ttl(self, ttl):
await asyncio.sleep(ttl)
logging.warn('box ttl expired, stop')
sys.exit(0)
def shutdown(self):
loop = asyncio.get_event_loop()
for h in self.mod_handlers:
h.shutdown()
loop.run_until_complete(get_box().deregister())
#loop.run_until_complete(
# self.handler.finish_connections())
| [
"[email protected]"
]
| |
388f95087fef6cadf17c0d88c900b3805358b36a | 236ded75aefcf965c582538f1b56d21b161cd3c5 | /trustery/testDir/callct139.py | a12e355225ca4741e5b82dea545b3dbab3acb9d6 | []
| no_license | rogerioita/ICPChain | 7fc1c7c5df289ed31fd2ad71cee400eac3d253cb | 87f2b001f5297396be6cb3aa9dd0c42236587038 | refs/heads/master | 2023-03-10T20:57:49.479052 | 2021-02-16T16:27:23 | 2021-02-16T16:27:23 | 336,806,143 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 60 | py | #!/usr/bin/env python
import os
os.system('node ct139.js')
| [
"[email protected]"
]
| |
2e13bfd3b45acdc66ecad30377c2baf6de3f0e54 | aed18908f6cdf93774aac253273e47d6e3521003 | /runs/"faithful.h5"/two_time_pad.py | 763ec201937cb4503919dd07bb541491276b6b1b | []
| no_license | matthiasgoergens/TwoTimePad | cbd1e2cb081805baf503b0a4984e74e0508060f8 | 7dc3a276179e3c15b07b1ae2c3c8d31d34bf9a00 | refs/heads/master | 2021-07-03T22:59:06.211897 | 2021-06-13T09:03:33 | 2021-06-13T09:03:33 | 9,916,768 | 0 | 0 | null | 2013-07-04T05:25:17 | 2013-05-07T16:48:56 | Haskell | UTF-8 | Python | false | false | 23,955 | py | # -*- coding: utf-8 -*-
import functools as ft
import itertools as it
import math
import random
import re
import sys
from datetime import datetime
from pprint import pprint
import numpy as np
import tensorflow as tf
# import tensorflow_addons as tfa
from tensorflow.keras.callbacks import ModelCheckpoint, TensorBoard, ReduceLROnPlateau, EarlyStopping, LearningRateScheduler
from tensorboard.plugins.hparams import api as hp
from tensorflow import keras
from tensorflow.keras.layers import (
LSTM,
Add, Average, average,
BatchNormalization,
Bidirectional,
Conv1D,
Dense,
Dropout,
Embedding,
Flatten,
GlobalMaxPooling1D,
Input,
MaxPooling1D,
SeparableConv1D,
SimpleRNN,
Softmax,
SpatialDropout1D,
TimeDistributed,
concatenate,
Layer,
)
from tensorflow.keras.models import Model, Sequential
from tensorflow_addons.layers import Maxout
device_name = tf.test.gpu_device_name()
if device_name != "/device:GPU:0":
useGPU = False
print(SystemError("GPU device not found", device_name))
raise NotImplementedError("Want GPU")
else:
useGPU = True
print("Found GPU at: {}".format(device_name))
from tensorflow.keras.mixed_precision import experimental as mixed_precision
np.set_printoptions(precision=4)
alpha = " ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.?,-:;'()".lower()
alphaRE = alpha.replace("-", "\\-")
assert len(alpha) == 46
accuracy = tf.keras.metrics.SparseCategoricalAccuracy()
def nAccuracy(y_true, y_pred):
return 1 - accuracy(y_true, y_pred)
def error(y_true, y_pred):
return 1 - accuracy(y_true, y_pred)
def load():
# text = ' '.join(f.open('r').read() for f in pathlib.Path('data').glob('*.txt')).lower()
text = open("corpus.txt", "r").read().lower()
text = re.sub("\s+", " ", text)
# text = re.sub(f'[^{alphaRE}]', '', text)
text = re.sub("[^%s]" % alphaRE, "", text)
return text
def sub(cipher, key):
return [(a - b) % len(alpha) for a, b in zip(cipher, key)]
def clean(text):
t = {c: i for i, c in enumerate(alpha)}
return [t[c] for c in text]
def toChar(numbers):
return "".join(alpha[i] for i in numbers)
# toChar
# (5, 125, 46)
def toChars(tensor):
(linesNums, charNum, alphaNum) = tensor.shape
output = []
# TODO: use gather https://www.tensorflow.org/api_docs/python/tf/gather?version=stable
assert alphaNum == len(alpha)
for lineNum in range(linesNums):
chars = []
for cN in range(charNum):
(_, char) = max([(tensor[lineNum, cN, alphaN], alphaN) for alphaN in range(alphaNum)])
chars.append(char)
output.append(toChar(chars))
return output
batch_size = 32
def round_to(x, n):
return (x // n) * n
def make1(window, text):
(size,) = text.shape
start = random.randrange(window)
return tf.reshape(tf.slice(text, [start], [round_to(size - window * batch_size, window * batch_size)]), (-1, window),)
def makeEpochs(mtext, window, ratio):
while True:
x = make1(window, mtext)
y = make1(window, mtext)
(size, _) = x.shape
training_size = round(size * ratio)
for _ in range(100):
xx = tf.random.shuffle(x)
yy = tf.random.shuffle(y)
cipherX = (xx - yy) % 46
cipherY = (yy - xx) % 46
# Drop last epoch, it's probably not full.
for i in list(range(0, x.shape[0], training_size))[:-1]:
yield (cipherX[i : i + training_size, :], cipherY[i : i + training_size, :]), (
xx[i : i + training_size, :],
yy[i : i + training_size, :],
)
class TwoTimePadSequence(keras.utils.Sequence):
def _load(self):
self.aa = tf.reshape(tf.random.shuffle(self.a), (-1, batch_size, self.window))
self.bb = tf.reshape(tf.random.shuffle(self.b), (-1, batch_size, self.window))
self.cipherA = (self.aa - self.bb) % 46
self.cipherB = (self.bb - self.aa) % 46
self.size = self.aa.shape[0]
self.items = iter(range(self.size))
def on_epoch_end(self):
print("Epoch {self.epochs} ended.")
self._load()
self.epochs += 1
raise NotImplementedError("Called on epoch end")
def __len__(self):
return self.training_size
def __getitem__(self, idx):
i = next(self.items, None)
# Hack, because on_epoch_end doesn't seem to be called.
if i is None:
self._load()
return self.__getitem__(idx)
else:
if self.both:
return (self.cipherA[i, :, :], self.cipherB[i, :, :]), (self.aa[i, :, :], self.bb[i, :, :])
else:
# return (self.cipherA[i, :, :], ), (self.aa[i, :, :], self.bb[i, :, :])
return (self.cipherA[i, :, :], ), (self.aa[i, :, :],)
def __init__(self, window, training_size, mtext, both=True):
self.a = make1(window, mtext)
self.b = make1(window, mtext)
self.epochs = 0
self.training_size = training_size
self.window = window
self._load()
self.both = both
def cipher_for_predict():
# remove eol
c1 = clean(open("TwoTimePad/examples/ciphertext-1.txt", "r").read().lower()[:-1])
# print(c1)
c2 = clean(open("TwoTimePad/examples/ciphertext-2.txt", "r").read().lower()[:-1])
# print(c2)
return tf.convert_to_tensor([sub(c1, c2)])
HP_DROPOUT = hp.HParam("dropout", hp.RealInterval(0.0, 0.5))
HP_HEIGHT = hp.HParam("height", hp.IntInterval(0, 30))
HP_blocks = hp.HParam("blocks", hp.IntInterval(0, 30))
HP_WINDOW = hp.HParam("window", hp.IntInterval(1, 100))
HP_resSize = hp.HParam("resSize", hp.IntInterval(46, 8 * 46))
HP_bottleneck = hp.HParam("bottleneck", hp.IntInterval(0, 1000))
HP_blowup = hp.HParam("blowup", hp.IntInterval(1, 8))
HP_max_kernel = hp.HParam("max_kernel", hp.IntInterval(3, 1+2*9))
METRIC_ACCURACY = "accuracy"
relu = ft.partial(tf.keras.layers.PReLU, shared_axes=[1])
crelu = lambda: tf.nn.crelu
class CRelu(Layer):
def __init__(self, axis=-1, **kwargs):
self.axis = axis
super(CRelu, self).__init__(**kwargs)
def build(self, input_shape):
super(CRelu, self).build(input_shape)
def call(self, x):
x = tf.nn.crelu(x, axis=self.axis)
return x
def compute_output_shape(self, input_shape):
output_shape = list(input_shape)
output_shape[-1] = output_shape[-1] * 2
output_shape = tuple(output_shape)
return output_shape
def get_config(self, input_shape):
config = {'axis': self.axis, }
base_config = super(CReLU, self).get_config()
return dict(list(base_config.items()) + list(config.items()))
def plus(a, b):
if a is None:
return b
elif b is None:
return a
else:
return Add()([a, b])
def concat(l):
l = [item for item in l if item is not None]
if len(l) == 1:
return l[0]
else:
return concatenate(l)
def avg(l):
assert isinstance(l, (list,)), type(l)
l = [item for item in l if item is not None]
if len(l) == 1:
return l[0]
else:
return average(l)
def cat(a, b):
if a is None:
return b
elif b is None:
return a
else:
return concatenate([a, b])
msra = tf.initializers.VarianceScaling(scale=2.0, distribution='truncated_normal')
def sequential(*layers):
def helper(last):
for layer in layers:
last = layer(last)
return last
return helper
# Resnet.
def make_model_simple(hparams):
n = hparams[HP_WINDOW]
height = hparams[HP_HEIGHT]
ic = lambda: Sequential([
BatchNormalization(),
SpatialDropout1D(rate=hparams[HP_DROPOUT]),
])
sd = lambda: SpatialDropout1D(rate=hparams[HP_DROPOUT])
inputA = Input(shape=(n,), name="ciphertextA", dtype='int32')
# inputB = Input(shape=(n,), name="ciphertextB", dtype='int32')
base = 4 * 46
blowup = 3
embeddedA = Embedding(
output_dim=base, input_length=n, input_dim=len(alpha), name="embeddingA", batch_input_shape=[batch_size, n],)(
inputA)
# Idea: Start first res from ic() or conv.
# Idea: also give input directly, not just embedding?
conved = Sequential([
ic(),
Conv1D(filters=blowup * base, kernel_size=9, padding='same', kernel_initializer=msra),
])(embeddedA)
outputs = embeddedA
for i in range(height - 1):
outputs = cat(outputs, conved)
conved = plus(conved, Sequential([
Maxout(base),
ic(),
Conv1D(filters=blowup * base, kernel_size=9, padding='same', kernel_initializer=msra),
])(conved))
make_end = lambda name: Sequential([
Maxout(base),
ic(),
Conv1D(name="output", filters=46, kernel_size=1, padding="same", strides=1, dtype='float32', kernel_initializer=msra),
], name=name)
clear = make_end('clear')(cat(outputs, conved))
# key = make_end('key')(cat(outputs, conved))
model = Model([inputA], [clear])
model.compile(
optimizer=tf.optimizers.Adam(learning_rate=0.001),
# optimizer=tf.optimizers.Adam(),
loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),
# loss_weights={'clear': 1/2, 'key': 1/2},
metrics=[nAccuracy],
)
return model
# Mixture between fractal and dense.
def make_model_fractal_dense(hparams):
n = hparams[HP_WINDOW]
height = hparams[HP_HEIGHT]
ic = lambda: sequential(
TimeDistributed(BatchNormalization()),
SpatialDropout1D(rate=hparams[HP_DROPOUT]),
)
input = Input(shape=(n,), name="ciphertextA", dtype='int32')
base = hparams[HP_resSize]
blowup = hparams[HP_blowup]
embedded = Embedding(
output_dim=46, input_length=n, input_dim=len(alpha), name="embeddingA", batch_input_shape=[batch_size, n],)(
input)
def conv(extra):
def helper(inputs):
input = avg(inputs)
max_kernel = hparams[HP_max_kernel]
try:
conved = Conv1D(filters=extra, kernel_size=3, padding='same', kernel_initializer=msra)(
TimeDistributed(BatchNormalization())(relu()(input)))
except:
print(f"Input: {input}")
raise
return [cat(input, conved)]
return helper
def block(n):
if n <= 0:
assert NotImplementedError
# Identity. Work out whether we can/should use conv instead?
# If we use conv, we can have embedding go to 46 instead of base, I think.
return avg
elif n <= 1:
return conv(base)
else:
# f 0 = identity (or conv in paper)
# f (n+1) = (f n . f n) + conv
def helper(inputs):
(_batch_size, _time, input_features) = inputs[-1].shape
inter_out = block(n-1)(inputs)
assert isinstance(inter_out, (list,)), type(inter_out)
outputs = block(n-1)(inter_out)
assert isinstance(outputs, (list,)), type(outputs)
(_batch_sizeO, _timeO, output_features) = outputs[-1].shape
assert (_batch_size, _time) == (_batch_sizeO, _timeO), ((_batch_size, _time), (_batch_sizeO, _timeO))
assert input_features <= output_features, (input_features, output_features)
try:
c = conv(output_features - input_features)(inputs)
except:
print ("input, output, diff")
print (inputs[-1].shape)
print (outputs[-1].shape)
print ((input_features, output_features))
raise
o = [*c, *outputs]
assert isinstance(o, (list,)), o
return o
return helper
# Idea: Start first res from ic() or conv.
# Idea: also give input directly, not just embedding?
conved = avg(block(height)([embedded]))
clear = Conv1D(name='clear', filters=46, kernel_size=1, padding="same", strides=1, dtype='float32', kernel_initializer=msra)(conved)
model = Model([input], [clear])
model.compile(
# optimizer=tf.optimizers.Adam(learning_rate=0.001/2),
optimizer=tf.optimizers.Adam(),
# optimizer=tf.optimizers.SGD(),
loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),
# loss_weights={'clear': 1/2, 'key': 1/2},
metrics=[nAccuracy],
)
return model
def make_model_dense(hparams):
n = hparams[HP_WINDOW]
height = hparams[HP_HEIGHT]
ic = lambda: sequential(
TimeDistributed(BatchNormalization()),
SpatialDropout1D(rate=hparams[HP_DROPOUT]/2),
Dropout(rate=hparams[HP_DROPOUT]/2),
)
inputA = Input(shape=(n,), name="ciphertextA", dtype='int32')
inputB = Input(shape=(n,), name="ciphertextB", dtype='int32')
base = hparams[HP_resSize]
blowup = hparams[HP_blowup]
embedding = Embedding(
output_dim=46, input_length=n, input_dim=len(alpha), name="embeddingA", batch_input_shape=[batch_size, n],)
embeddedA = embedding(inputA)
embeddedB = embedding(inputB)
def conv():
def helper(input):
conved = Conv1D(filters=base, kernel_size=3, padding='same', kernel_initializer=msra)(input)
return ic()(relu()(conved))
return helper
def dense1(inputA, inputB):
# TODO: finish
return cat(input, conv()(input))
def denseN(height, input):
return sequential(*(height * [dense1]))(input)
# Idea: Start first res from ic() or conv.
# Idea: also give input directly, not just embedding?
bottleneck = hparams[HP_bottleneck]
blocks = hparams[HP_blocks]
def block(n, input):
if n <= 0:
return input
else:
output = denseN(height, input)
# Residual connection for all but first block:
if 1 < n:
print(f"Bottlenecking at block {n}.")
output = Conv1D(filters=bottleneck, kernel_size=1, padding='same', kernel_initializer=msra)(output)
else:
print(f"No bottlenecking at block {n}.")
if 1 < n < blocks:
assert tuple(input.shape) == tuple(output.shape), (input.shape, output.shape)
print(f"Residual connection at block {n}.")
output = plus(input, output)
else:
print(f"No residual connection at block {n}.")
return block(n-1, output)
conved = block(blocks, embedded)
make_end = lambda name: sequential(
Conv1D(name=name, filters=46, kernel_size=1, padding="same", strides=1, dtype='float32', kernel_initializer=msra),
)
clear = make_end('clear')(conved)
model = Model([input], [clear])
model.compile(
# optimizer=tf.optimizers.Adam(learning_rate=0.001),
optimizer=tf.optimizers.Adam(),
loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),
metrics=[nAccuracy],
)
return model
def make_model_recreate(hparams):
relu = ft.partial(tf.keras.layers.PReLU, shared_axes=[1])
n = hparams[HP_WINDOW]
inputA = Input(shape=(n,), name="ciphertextA", dtype='int32')
inputB = Input(shape=(n,), name="ciphertextB", dtype='int32')
# resSize = hparams[HP_resSize]
embedding = Embedding(output_dim=len(alpha), input_length=n, input_dim=len(alpha), name="my_embedding", batch_input_shape=[batch_size, n],)
embeddedA = embedding(inputA)
embeddedB = embedding(inputB)
def makeResNet(i, channels, width, size):
return Sequential([
Input(name="res_inputMe", shape=(n,channels,)),
# SpatialDropout1D(rate=hparams[HP_DROPOUT]), # Not sure whether that's good.
TimeDistributed(BatchNormalization()),
relu(),
Conv1D(filters=4*size, kernel_size=1, padding='same'),
TimeDistributed(BatchNormalization()),
relu(),
Conv1D(filters=size, kernel_size=width, padding='same'),
], name="resnet{}".format(i))
random.seed(23)
def make_block(convedA, convedB, block):
convedAx = [convedA]
convedBx = [convedB]
for i, (_) in enumerate(20*[None]):
width = 1 + 2*random.randrange(5, 8)
convedA_, convedB_= zip(*list(zip(convedAx, convedBx)))
assert len(convedA_) == len(convedB_), (len(convedA_), len(convedB_))
catA = concatenate([*convedA_, *convedB_])
catB = concatenate([*convedB_, *convedA_])
(_, _, num_channels) = catA.shape
(_, _, num_channelsB) = catB.shape
assert tuple(catA.shape) == tuple(catB.shape), (catA.shape, catB.shape)
size = random.randrange(23, 2*46)
resNet = makeResNet(block*1000+i, num_channels, width, size)
convedAx.append(resNet(catA))
convedBx.append(resNet(catB))
assert len(convedAx) == len(convedBx), (len(convedAx), len(convedBx))
for j, (a, b) in enumerate(zip(convedAx, convedBx)):
assert tuple(a.shape) == tuple(b.shape), (block, i, j, a.shape, b.shape)
return convedAx, convedBx
convedA = embeddedA
convedB = embeddedB
if True:
convedAx, convedBx = make_block(convedA, convedB, block=0)
catAx = concatenate(convedAx)
catBx = concatenate(convedBx)
assert tuple(catAx.shape) == tuple(catBx.shape), (catAx.shape, catBx.shape)
convedA = catAx
convedB = catBx
make_end = Conv1D(name="output", filters=46, kernel_size=1, padding="same", strides=1, dtype='float32')
totes_clear = Layer(name='clear', dtype='float32')(make_end(SpatialDropout1D(rate=hparams[HP_DROPOUT])(convedA)))
totes_key = Layer(name='key', dtype='float32')(make_end(SpatialDropout1D(rate=hparams[HP_DROPOUT])(convedB)))
model = Model([inputA, inputB], [totes_clear, totes_key])
model.compile(
optimizer=tf.optimizers.Adam(),
loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),
loss_weights={'clear': 1/2, 'key': 1/2},
metrics=[error],
)
return model
l = 100
hparams = {
HP_DROPOUT: 0.0,
HP_HEIGHT: 20,
HP_blocks: 1,
HP_bottleneck: 46 * 5,
## Idea: skip the first few short columns in the fractal.
# HP_SKIP_HEIGH: 3,
HP_WINDOW: l,
HP_resSize: 46,
HP_blowup: 1,
HP_max_kernel: 3,
}
weights_name = "faithful.h5"
make_model = make_model_recreate
def main():
# TODO: Actually set stuff to float16 only, in inference too. Should use
# less memory.
policy = mixed_precision.Policy('mixed_float16')
mixed_precision.set_policy(policy)
print('Compute dtype: %s' % policy.compute_dtype)
print('Variable dtype: %s' % policy.variable_dtype)
with tf.device(device_name):
text = clean(load())
# mtext = tf.convert_to_tensor(text)
mtext = tf.convert_to_tensor(text)
# logdir = "logs/scalars/" + datetime.now().strftime("%Y%m%d-%H%M%S")
logdir = "logs/scalars/{}".format(weights_name)
tensorboard_callback = TensorBoard(log_dir=logdir, update_freq=50_000, profile_batch=0)
checkpoint = ModelCheckpoint('weights/'+weights_name, monitor='loss', verbose=1, save_best_only=True)
def schedule(epoch):
default = 0.001
if epoch <= 0:
lr = default / 10
else:
lr = default
print(f"Scheduled learning rate for epoch {epoch}: {default} * {lr/default}")
return lr
callbacks_list = [
checkpoint,
tensorboard_callback,
# hp.KerasCallback(logdir, hparams),
ReduceLROnPlateau(monitor='nAccuracy', mode='min', patience=2, cooldown=10, factor=1/2, verbose=1, min_delta=0.001),
# LearningRateScheduler(schedule),
EarlyStopping(monitor='loss', patience=30, verbose=1, restore_best_weights=True)
]
with tf.summary.create_file_writer("logs/scalars").as_default():
hp.hparams_config(
hparams=[HP_DROPOUT, HP_HEIGHT, HP_WINDOW], metrics=[hp.Metric(METRIC_ACCURACY, display_name="Accuracy")],
)
try:
raise NotImplementedError()
model = make_model(hparams)
model.load_weights('weights/'+weights_name)
except:
try:
raise NotImplementedError()
model = keras.models.load_model('weights/'+weights_name)
model.summary()
print("Loaded weights.")
sys.exit(0)
except:
model = make_model(hparams)
model.summary()
print("Failed to load weights.")
# raise
# for i in range(10*(layers+1)):
# print("Predict:")
# predict_size = 10
# ita_cipher = cipher_for_predict()
# [ita_label, ita_key] = model .predict(ita_cipher)
# print(toChars_labels(ita_cipher))
# pprint(toChars(ita_label)[:1000])
# pprint(toChars(ita_key)[:1000])
# (ciphers_p, labels_p, keys_p) = samples(text, predict_size, l)
# [pred_label, pred_key] = model.predict(ciphers_p)
# # clear, key, prediction
# pprint(
# list(
# zip(
# toChars_labels(ciphers_p),
# toChars_labels(labels_p),
# toChars(pred_label),
# toChars_labels(keys_p),
# toChars(pred_key),
# predict_size * [l * " "],
# )
# ),
# width=120,
# )
# model.evaluate(TwoTimePadSequence(l, 10**4 // 32), callbacks=[tensorboard_callback])
# print("Training:")
# (ciphers, labels, keys) = samples(text, training_size, l)
# print(model.fit(ciphers, [labels, keys],
# for epoch, (x, y) in enumerate(makeEpochs(mtext, l, 1/60)):
# print(f"My epoch: {epoch}")
if True:
try:
model.fit(
x=TwoTimePadSequence(l, 10 ** 4 // 16, mtext, both=True),
# x = x, y = y,
# steps_per_epoch=10 ** 4 // 32,
max_queue_size=10**3,
# initial_epoch=311,
# epochs=epoch+1,
# validation_split=0.1,
# validation_data=TwoTimePadSequence(l, 2*10 ** 3 // 32, mtext, both=False),
epochs=100_000,
callbacks=callbacks_list,
# batch_size=batch_size,
verbose=1,
# workers=8,
# use_multiprocessing=True,
)
except:
print("Saving model...")
model.save('weights/'+weights_name, include_optimizer=True)
print("Saved model.")
raise
# (ciphers_t, labels_t, keys_t) = samples(text, 1000, l)
# print("Eval:")
# model.evaluate(TwoTimePadSequence(l, 10**4))
# Idea: we don't need the full 50% dropout regularization, because our input is already random.
# So try eg keeping 90% of units? Just enough to punish big gross / small nettto co-adaptions.
# But wow, this bigger network (twice as large as before) trains really well without dropout. And no learning rate reduction, yet.
# It's plateau-ing about ~2.54 loss at default learning rate after ~20 epoch. (If I didn't miss a restart.)
# Base loss for one side:
# log(46, 2)
# 5.523561956057013
if __name__ == "__main__":
main()
| [
"[email protected]"
]
| |
2fdf074e6ebefea3fa03bc3a4bd0c6f6475c9ecf | 91adad72f71bfb3f0873132e63ae20b434eaa76e | /pymic/net/net2d/unet2d.py | a361f0f323d1476f669238bfe622def303c9f839 | [
"Apache-2.0"
]
| permissive | JoeGue/PyMIC | 49560a1125b686a089444a6b55f68582e401581b | f2dad93f54a1cb406bddff2e9484f6d0f7fb48c6 | refs/heads/master | 2022-09-25T09:41:49.071681 | 2022-08-21T08:25:42 | 2022-08-21T08:25:42 | 198,737,852 | 0 | 1 | null | 2019-07-25T01:57:23 | 2019-07-25T01:57:22 | null | UTF-8 | Python | false | false | 8,933 | py | # -*- coding: utf-8 -*-
"""
An implementation of the U-Net paper:
Olaf Ronneberger, Philipp Fischer, Thomas Brox:
U-Net: Convolutional Networks for Biomedical Image Segmentation.
MICCAI (3) 2015: 234-241
Note that there are some modifications from the original paper, such as
the use of batch normalization, dropout, and leaky relu here.
"""
from __future__ import print_function, division
import torch
import torch.nn as nn
import numpy as np
from torch.nn.functional import interpolate
class ConvBlock(nn.Module):
"""two convolution layers with batch norm and leaky relu"""
def __init__(self,in_channels, out_channels, dropout_p):
"""
dropout_p: probability to be zeroed
"""
super(ConvBlock, self).__init__()
self.conv_conv = nn.Sequential(
nn.Conv2d(in_channels, out_channels, kernel_size=3, padding=1),
nn.BatchNorm2d(out_channels),
nn.LeakyReLU(),
nn.Dropout(dropout_p),
nn.Conv2d(out_channels, out_channels, kernel_size=3, padding=1),
nn.BatchNorm2d(out_channels),
nn.LeakyReLU()
)
def forward(self, x):
return self.conv_conv(x)
class DownBlock(nn.Module):
"""Downsampling followed by ConvBlock"""
def __init__(self, in_channels, out_channels, dropout_p):
super(DownBlock, self).__init__()
self.maxpool_conv = nn.Sequential(
nn.MaxPool2d(2),
ConvBlock(in_channels, out_channels, dropout_p)
)
def forward(self, x):
return self.maxpool_conv(x)
class UpBlock(nn.Module):
"""Upsampling followed by ConvBlock"""
def __init__(self, in_channels1, in_channels2, out_channels, dropout_p,
bilinear=True):
"""
in_channels1: channel of high-level features
in_channels2: channel of low-level features
out_channels: output channel number
dropout_p: probability of dropout
"""
super(UpBlock, self).__init__()
self.bilinear = bilinear
if bilinear:
self.conv1x1 = nn.Conv2d(in_channels1, in_channels2, kernel_size = 1)
self.up = nn.Upsample(scale_factor=2, mode='bilinear', align_corners=True)
else:
self.up = nn.ConvTranspose2d(in_channels1, in_channels2, kernel_size=2, stride=2)
self.conv = ConvBlock(in_channels2 * 2, out_channels, dropout_p)
def forward(self, x1, x2):
if self.bilinear:
x1 = self.conv1x1(x1)
x1 = self.up(x1)
x = torch.cat([x2, x1], dim=1)
return self.conv(x)
class Encoder(nn.Module):
def __init__(self, params):
super(Encoder, self).__init__()
self.params = params
self.in_chns = self.params['in_chns']
self.ft_chns = self.params['feature_chns']
self.dropout = self.params['dropout']
assert(len(self.ft_chns) == 5 or len(self.ft_chns) == 4)
self.in_conv= ConvBlock(self.in_chns, self.ft_chns[0], self.dropout[0])
self.down1 = DownBlock(self.ft_chns[0], self.ft_chns[1], self.dropout[1])
self.down2 = DownBlock(self.ft_chns[1], self.ft_chns[2], self.dropout[2])
self.down3 = DownBlock(self.ft_chns[2], self.ft_chns[3], self.dropout[3])
if(len(self.ft_chns) == 5):
self.down4 = DownBlock(self.ft_chns[3], self.ft_chns[4], self.dropout[4])
def forward(self, x):
x0 = self.in_conv(x)
x1 = self.down1(x0)
x2 = self.down2(x1)
x3 = self.down3(x2)
output = [x0, x1, x2, x3]
if(len(self.ft_chns) == 5):
x4 = self.down4(x3)
output.append(x4)
return output
class Decoder(nn.Module):
def __init__(self, params):
super(Decoder, self).__init__()
self.params = params
self.in_chns = self.params['in_chns']
self.ft_chns = self.params['feature_chns']
self.dropout = self.params['dropout']
self.n_class = self.params['class_num']
self.bilinear = self.params['bilinear']
assert(len(self.ft_chns) == 5 or len(self.ft_chns) == 4)
if(len(self.ft_chns) == 5):
self.up1 = UpBlock(self.ft_chns[4], self.ft_chns[3], self.ft_chns[3], self.dropout[3], self.bilinear)
self.up2 = UpBlock(self.ft_chns[3], self.ft_chns[2], self.ft_chns[2], self.dropout[2], self.bilinear)
self.up3 = UpBlock(self.ft_chns[2], self.ft_chns[1], self.ft_chns[1], self.dropout[1], self.bilinear)
self.up4 = UpBlock(self.ft_chns[1], self.ft_chns[0], self.ft_chns[0], self.dropout[0], self.bilinear)
self.out_conv = nn.Conv2d(self.ft_chns[0], self.n_class, kernel_size = 1)
def forward(self, x):
if(len(self.ft_chns) == 5):
assert(len(x) == 5)
x0, x1, x2, x3, x4 = x
x_d3 = self.up1(x4, x3)
else:
assert(len(x) == 4)
x0, x1, x2, x3 = x
x_d3 = x3
x_d2 = self.up2(x_d3, x2)
x_d1 = self.up3(x_d2, x1)
x_d0 = self.up4(x_d1, x0)
output = self.out_conv(x_d0)
return output
class UNet2D(nn.Module):
def __init__(self, params):
super(UNet2D, self).__init__()
self.params = params
self.in_chns = self.params['in_chns']
self.ft_chns = self.params['feature_chns']
self.dropout = self.params['dropout']
self.n_class = self.params['class_num']
self.bilinear = self.params['bilinear']
self.deep_sup = self.params['deep_supervise']
assert(len(self.ft_chns) == 5 or len(self.ft_chns) == 4)
self.in_conv= ConvBlock(self.in_chns, self.ft_chns[0], self.dropout[0])
self.down1 = DownBlock(self.ft_chns[0], self.ft_chns[1], self.dropout[1])
self.down2 = DownBlock(self.ft_chns[1], self.ft_chns[2], self.dropout[2])
self.down3 = DownBlock(self.ft_chns[2], self.ft_chns[3], self.dropout[3])
if(len(self.ft_chns) == 5):
self.down4 = DownBlock(self.ft_chns[3], self.ft_chns[4], self.dropout[4])
self.up1 = UpBlock(self.ft_chns[4], self.ft_chns[3], self.ft_chns[3], self.dropout[3], self.bilinear)
self.up2 = UpBlock(self.ft_chns[3], self.ft_chns[2], self.ft_chns[2], self.dropout[2], self.bilinear)
self.up3 = UpBlock(self.ft_chns[2], self.ft_chns[1], self.ft_chns[1], self.dropout[1], self.bilinear)
self.up4 = UpBlock(self.ft_chns[1], self.ft_chns[0], self.ft_chns[0], self.dropout[0], self.bilinear)
self.out_conv = nn.Conv2d(self.ft_chns[0], self.n_class, kernel_size = 1)
if(self.deep_sup):
self.out_conv1 = nn.Conv2d(self.ft_chns[1], self.n_class, kernel_size = 1)
self.out_conv2 = nn.Conv2d(self.ft_chns[2], self.n_class, kernel_size = 1)
self.out_conv3 = nn.Conv2d(self.ft_chns[3], self.n_class, kernel_size = 1)
def forward(self, x):
x_shape = list(x.shape)
if(len(x_shape) == 5):
[N, C, D, H, W] = x_shape
new_shape = [N*D, C, H, W]
x = torch.transpose(x, 1, 2)
x = torch.reshape(x, new_shape)
x0 = self.in_conv(x)
x1 = self.down1(x0)
x2 = self.down2(x1)
x3 = self.down3(x2)
if(len(self.ft_chns) == 5):
x4 = self.down4(x3)
x_d3 = self.up1(x4, x3)
else:
x_d3 = x3
x_d2 = self.up2(x_d3, x2)
x_d1 = self.up3(x_d2, x1)
x_d0 = self.up4(x_d1, x0)
output = self.out_conv(x_d0)
if(self.deep_sup):
out_shape = list(output.shape)[2:]
output1 = self.out_conv1(x_d1)
output1 = interpolate(output1, out_shape, mode = 'bilinear')
output2 = self.out_conv2(x_d2)
output2 = interpolate(output2, out_shape, mode = 'bilinear')
output3 = self.out_conv3(x_d3)
output3 = interpolate(output3, out_shape, mode = 'bilinear')
output = [output, output1, output2, output3]
if(len(x_shape) == 5):
new_shape = [N, D] + list(output[0].shape)[1:]
for i in range(len(output)):
output[i] = torch.transpose(torch.reshape(output[i], new_shape), 1, 2)
elif(len(x_shape) == 5):
new_shape = [N, D] + list(output.shape)[1:]
output = torch.reshape(output, new_shape)
output = torch.transpose(output, 1, 2)
return output
if __name__ == "__main__":
params = {'in_chns':4,
'feature_chns':[2, 8, 32, 48, 64],
'dropout': [0, 0, 0.3, 0.4, 0.5],
'class_num': 2,
'bilinear': True}
Net = UNet2D(params)
Net = Net.double()
x = np.random.rand(4, 4, 10, 96, 96)
xt = torch.from_numpy(x)
xt = torch.tensor(xt)
y = Net(xt)
print(len(y.size()))
y = y.detach().numpy()
print(y.shape)
| [
"[email protected]"
]
| |
15e77b7c58017c1f54915fda07fdaa059a388836 | f3b233e5053e28fa95c549017bd75a30456eb50c | /tyk2_input/55/55-44_wat_20Abox/set_3.py | 21e5fabd0f972917df68c267ed929c036943b6cb | []
| no_license | AnguseZhang/Input_TI | ddf2ed40ff1c0aa24eea3275b83d4d405b50b820 | 50ada0833890be9e261c967d00948f998313cb60 | refs/heads/master | 2021-05-25T15:02:38.858785 | 2020-02-18T16:57:04 | 2020-02-18T16:57:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 738 | py | import os
dir = '/mnt/scratch/songlin3/run/tyk2/L55/wat_20Abox/ti_one-step/55_44/'
filesdir = dir + 'files/'
temp_prodin = filesdir + 'temp_prod_3.in'
temp_pbs = filesdir + 'temp_3.pbs'
lambd = [ 0.00922, 0.04794, 0.11505, 0.20634, 0.31608, 0.43738, 0.56262, 0.68392, 0.79366, 0.88495, 0.95206, 0.99078]
for j in lambd:
os.chdir("%6.5f" %(j))
workdir = dir + "%6.5f" %(j) + '/'
#prodin
prodin = workdir + "%6.5f_prod_3.in" %(j)
os.system("cp %s %s" %(temp_prodin, prodin))
os.system("sed -i 's/XXX/%6.5f/g' %s" %(j, prodin))
#PBS
pbs = workdir + "%6.5f_3.pbs" %(j)
os.system("cp %s %s" %(temp_pbs, pbs))
os.system("sed -i 's/XXX/%6.5f/g' %s" %(j, pbs))
#submit pbs
#os.system("qsub %s" %(pbs))
os.chdir(dir)
| [
"[email protected]"
]
| |
08f74db631409569f43498b9e98548a9ab7a92ac | 62d6a37e1fb1b224b53e14a1cf151ef0571aa20f | /orun/contrib/admin/models/log.py | d3899b5d47850b596221aa5c978c9a89307a0514 | []
| no_license | katrid/orun | 4fa0f291a1ef43f16bc1857a170fc0b2e5e06739 | bfc6dae06182124ba75b1f3761d81ba8ca387dea | refs/heads/master | 2023-08-30T03:58:34.570527 | 2023-08-09T04:05:30 | 2023-08-09T04:05:30 | 66,562,767 | 14 | 4 | null | 2023-01-06T22:29:37 | 2016-08-25T14:01:44 | Python | UTF-8 | Python | false | false | 1,293 | py | from orun.db import models
class LogEntry(models.Model):
"""
Log entries on the internal database logging
"""
user = models.ForeignKey('auth_user', null=False, db_index=True)
action = models.ForeignKey('ui.action') # optional ui action
object_id = models.BigIntegerField()
content_type = models.ForeignKey('content.type', on_delete=models.SET_NULL)
content_object = models.CharField(200)
change_message = models.TextField()
class Meta:
log_changes = False
name = 'ui.admin.log'
class UserMenuCounter(models.Model):
"""
Rank the number of times that an action is accessed by user on Admin UI
"""
user = models.ForeignKey('auth.user', null=False, db_index=True, on_delete=models.DB_CASCADE)
menu = models.ForeignKey('ui.menu', null=False, on_delete=models.DB_CASCADE)
counter = models.PositiveIntegerField(default=0)
class Meta:
log_changes = False
name = 'ui.admin.user.menu.counter'
@classmethod
def hit(cls, user, action):
"""
Log a new entry to user to the action
:param user:
:param action:
:return:
"""
counter = cls.objects.get_or_create(user=user, action=action)
counter.update(counter=counter.counter + 1)
| [
"[email protected]"
]
| |
ba62829ac148739c841bea03c2a460a97c18e729 | ce6538b5b7da162c1c690a346e7ec9ae0a6291f3 | /venv/Scripts/easy_install-script.py | 1a1bdac334f25a7ede582dd19034fad72a8c60e9 | []
| no_license | DaniTodorowa/Softuni | 391f13dd61a6d16cd48ee06e9b35b2fd931375df | f7c875fda4e13ec63152671509aaa6eca29d7f50 | refs/heads/master | 2022-11-25T23:34:49.744315 | 2020-08-02T08:23:44 | 2020-08-02T08:23:44 | 278,938,559 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 462 | py | #!"C:\Users\Dani Todorova\PycharmProjects\Exercises\venv\Scripts\python.exe"
# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install'
__requires__ = 'setuptools==40.8.0'
import re
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install')()
)
| [
"[email protected]"
]
| |
4efb2692ed3bce696cc2881b9ce2700ab1ab1953 | 61747f324eaa757f3365fd7bf5ddd53ea0db47d1 | /casepro/msgs/migrations/0030_label_tests.py | ecf4d3e3d4410ce80bff7c39c61bfae32aa3f217 | [
"BSD-3-Clause"
]
| permissive | BlueRidgeLabs/casepro | f8b0eefa8f961dd2fdb5da26a48b619ebc1f8c12 | 8ef509326f3dfa80bb44beae00b60cc6c4ac7a24 | refs/heads/master | 2022-01-24T09:01:18.881548 | 2017-12-05T18:46:05 | 2017-12-05T18:49:42 | 113,502,588 | 0 | 0 | null | 2017-12-07T21:57:37 | 2017-12-07T21:57:37 | null | UTF-8 | Python | false | false | 1,016 | py | # -*- coding: utf-8 -*-
from __future__ import print_function, unicode_literals
import json
from casepro.rules.models import ContainsTest, Quantifier
from casepro.utils import parse_csv
from django.db import migrations, models
def populate_label_tests(apps, schema_editor):
Label = apps.get_model('msgs', 'Label')
for label in Label.objects.all():
keywords = parse_csv(label.keywords) if label.keywords else []
if keywords:
label.tests = json.dumps([ContainsTest(keywords, Quantifier.ANY).to_json()])
label.save(update_fields=('tests',))
print("Migrated label #%d with keywords %s" % (label.pk, label.keywords))
class Migration(migrations.Migration):
dependencies = [
('msgs', '0029_folder_indexes_pt3'),
]
operations = [
migrations.AddField(
model_name='label',
name='tests',
field=models.TextField(blank=True),
),
migrations.RunPython(populate_label_tests)
]
| [
"[email protected]"
]
| |
89f128b97ed2d3eddc33a16f5476131dc083373e | b95fa99bb1ba2210b73251614d2613363c37f932 | /deploy/anne/top.py | 3f131536072081265b07d93441651fadcbd48744 | []
| no_license | lingxiao/learn-adj-relation | d1a8894fefc776ec0bd414b5f038361ed4b79d16 | dc4285af19e53d7e2d015eb6394f6c601c707da0 | refs/heads/master | 2020-12-30T16:27:51.531268 | 2017-06-07T18:59:48 | 2017-06-07T18:59:48 | 87,714,049 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,532 | py | ############################################################
# Module : get google anne lines that contain words in graph
# split edges and make main-#.py
# Date : April 2nd, 2017
# Author : Xiao Ling
############################################################
import os
import pickle
import shutil
from utils import *
from scripts import *
from app import *
from experiments import *
############################################################
'''
paths
'''
dirs = working_dirs('anne',['scripts','shells', 'results-ppdb-1', 'results-ppdb-ngram-1'])
anne = get_path('anne')
files = [p for p in os.listdir(anne) if '.txt' in p]
############################################################
'''
@Use: rewrite main-#.py file
'''
def run_auto_main(tot, work_dir, script_dir):
print('\n>> running run_auto_main for total: ' + str(tot) )
print('\n>> removing existing scripts...')
shutil.rmtree(script_dir)
os.mkdir(script_dir)
cnt = 0
for k in xrange(tot):
src_path = os.path.join(work_dir, 'anne-0.py')
tgt_path = os.path.join(script_dir, 'anne-' + str(cnt) + '.py')
src_strs = ['batch = 0']
tgt_strs = ['batch = ' + str(cnt)]
auto_gen(src_path, tgt_path, src_strs, tgt_strs)
cnt += 1
'''
@Use: rewrite main-#.sh file
'''
def run_auto_sh(tot, work_dir, shell_dir):
print('\n>> running run_auto_sh for total: ' + str(tot))
print('\n>> removing existing scripts...')
shutil.rmtree(shell_dir)
os.mkdir(shell_dir)
cnt = 0
for k in xrange(tot):
src_path = os.path.join(work_dir,'anne-0.sh')
tgt_path = os.path.join(shell_dir,'anne-' + str(cnt) + '.sh')
src_strs = ['anne-0']
tgt_strs = ['anne-' + str(cnt)]
auto_gen(src_path, tgt_path, src_strs, tgt_strs)
cnt +=1
############################################################
'''
generate py and shell scripts
'''
if False:
num_jobs = len(files)
print('\n\t>> found ' + str(num_jobs) + ' jobs')
run_auto_main( num_jobs
, dirs['root']
, dirs['scripts'])
run_auto_sh ( num_jobs
, dirs['root']
, dirs['shells'])
############################################################
'''
combine results into one file
'''
if True:
data_sets = ['ppdb-1', 'ppdb-ngram-1']
for data_set in data_sets:
print('\n\t>> saving results algo only for ' + data_set)
results_dir = dirs['results-' + data_set ]
results = read_results(results_dir)
out_path = os.path.join(dirs['root'], 'anne-all-' + data_set + '.txt')
save_results(results, out_path, algo_only = True)
| [
"[email protected]"
]
| |
71393829121ee973ba5e3edb8060c10ee0ccb71e | 2a8a6327fb9a7ce8696aa15b197d5170661fb94f | /test/test_accounting_codes_api.py | e5c3b594f8c5b6a37ef654c6875c9c64fd8408b6 | []
| no_license | moderndatainc/zuora-client | 8b88e05132ddf7e8c411a6d7dad8c0baabaa6dad | d50da49ce1b8465c76723496c2561a3b8ebdf07d | refs/heads/master | 2021-09-21T19:17:34.752404 | 2018-08-29T23:24:07 | 2018-08-29T23:24:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 39,712 | py | # coding: utf-8
"""
Zuora API Reference
# Introduction Welcome to the reference for the Zuora REST API! <a href=\"http://en.wikipedia.org/wiki/REST_API\" target=\"_blank\">REST</a> is a web-service protocol that lends itself to rapid development by using everyday HTTP and JSON technology. The Zuora REST API provides a broad set of operations and resources that: * Enable Web Storefront integration from your website. * Support self-service subscriber sign-ups and account management. * Process revenue schedules through custom revenue rule models. * Enable manipulation of most objects in the Zuora Object Model. Want to share your opinion on how our API works for you? <a href=\"https://community.zuora.com/t5/Developers/API-Feedback-Form/gpm-p/21399\" target=\"_blank\">Tell us how you feel </a>about using our API and what we can do to make it better. ## Access to the API If you have a Zuora tenant, you can access the Zuora REST API via one of the following endpoints: | Tenant | Base URL for REST Endpoints | |-------------------------|-------------------------| |US Production | https://rest.zuora.com | |US API Sandbox | https://rest.apisandbox.zuora.com| |US Performance Test | https://rest.pt1.zuora.com | |EU Production | https://rest.eu.zuora.com | |EU Sandbox | https://rest.sandbox.eu.zuora.com | The Production endpoint provides access to your live user data. API Sandbox tenants are a good place to test code without affecting real-world data. If you would like Zuora to provision an API Sandbox tenant for you, contact your Zuora representative for assistance. **Note:** If you have a tenant in the Production Copy Environment, submit a request at <a href=\"http://support.zuora.com/\" target=\"_blank\">Zuora Global Support</a> to enable the Zuora REST API in your tenant and obtain the base URL for REST endpoints. If you do not have a Zuora tenant, go to <a href=\"https://www.zuora.com/resource/zuora-test-drive\" target=\"_blank\">https://www.zuora.com/resource/zuora-test-drive</a> and sign up for a Production Test Drive tenant. The tenant comes with seed data, including a sample product catalog. # API Changelog You can find the <a href=\"https://community.zuora.com/t5/Developers/API-Changelog/gpm-p/18092\" target=\"_blank\">Changelog</a> of the API Reference in the Zuora Community. # Authentication ## OAuth v2.0 Zuora recommends that you use OAuth v2.0 to authenticate to the Zuora REST API. Currently, OAuth is not available in every environment. See [Zuora Testing Environments](https://knowledgecenter.zuora.com/BB_Introducing_Z_Business/D_Zuora_Environments) for more information. Zuora recommends you to create a dedicated API user with API write access on a tenant when authenticating via OAuth, and then create an OAuth client for this user. See <a href=\"https://knowledgecenter.zuora.com/CF_Users_and_Administrators/A_Administrator_Settings/Manage_Users/Create_an_API_User\" target=\"_blank\">Create an API User</a> for how to do this. By creating a dedicated API user, you can control permissions of the API user without affecting other non-API users. If a user is deactivated, all of the user's OAuth clients will be automatically deactivated. Authenticating via OAuth requires the following steps: 1. Create a Client 2. Generate a Token 3. Make Authenticated Requests ### Create a Client You must first [create an OAuth client](https://knowledgecenter.zuora.com/CF_Users_and_Administrators/A_Administrator_Settings/Manage_Users#Create_an_OAuth_Client_for_a_User) in the Zuora UI. To do this, you must be an administrator of your Zuora tenant. This is a one-time operation. You will be provided with a Client ID and a Client Secret. Please note this information down, as it will be required for the next step. **Note:** The OAuth client will be owned by a Zuora user account. If you want to perform PUT, POST, or DELETE operations using the OAuth client, the owner of the OAuth client must have a Platform role that includes the \"API Write Access\" permission. ### Generate a Token After creating a client, you must make a call to obtain a bearer token using the [Generate an OAuth token](https://www.zuora.com/developer/api-reference/#operation/createToken) operation. This operation requires the following parameters: - `client_id` - the Client ID displayed when you created the OAuth client in the previous step - `client_secret` - the Client Secret displayed when you created the OAuth client in the previous step - `grant_type` - must be set to `client_credentials` **Note**: The Client ID and Client Secret mentioned above were displayed when you created the OAuth Client in the prior step. The [Generate an OAuth token](https://www.zuora.com/developer/api-reference/#operation/createToken) response specifies how long the bearer token is valid for. Call [Generate an OAuth token](https://www.zuora.com/developer/api-reference/#operation/createToken) again to generate a new bearer token. ### Make Authenticated Requests To authenticate subsequent API requests, you must provide a valid bearer token in an HTTP header: `Authorization: Bearer {bearer_token}` If you have [Zuora Multi-entity](https://www.zuora.com/developer/api-reference/#tag/Entities) enabled, you need to set an additional header to specify the ID of the entity that you want to access. You can use the `scope` field in the [Generate an OAuth token](https://www.zuora.com/developer/api-reference/#operation/createToken) response to determine whether you need to specify an entity ID. If the `scope` field contains more than one entity ID, you must specify the ID of the entity that you want to access. For example, if the `scope` field contains `entity.1a2b7a37-3e7d-4cb3-b0e2-883de9e766cc` and `entity.c92ed977-510c-4c48-9b51-8d5e848671e9`, specify one of the following headers: - `Zuora-Entity-Ids: 1a2b7a37-3e7d-4cb3-b0e2-883de9e766cc` - `Zuora-Entity-Ids: c92ed977-510c-4c48-9b51-8d5e848671e9` **Note**: For a limited period of time, Zuora will accept the `entityId` header as an alternative to the `Zuora-Entity-Ids` header. If you choose to set the `entityId` header, you must remove all \"-\" characters from the entity ID in the `scope` field. If the `scope` field contains a single entity ID, you do not need to specify an entity ID. ## Other Supported Authentication Schemes Zuora continues to support the following additional legacy means of authentication: * Use username and password. Include authentication with each request in the header: * `apiAccessKeyId` * `apiSecretAccessKey` Zuora recommends that you create an API user specifically for making API calls. See <a href=\"https://knowledgecenter.zuora.com/CF_Users_and_Administrators/A_Administrator_Settings/Manage_Users/Create_an_API_User\" target=\"_blank\">Create an API User</a> for more information. * Use an authorization cookie. The cookie authorizes the user to make calls to the REST API for the duration specified in **Administration > Security Policies > Session timeout**. The cookie expiration time is reset with this duration after every call to the REST API. To obtain a cookie, call the [Connections](https://www.zuora.com/developer/api-reference/#tag/Connections) resource with the following API user information: * ID * Password * For CORS-enabled APIs only: Include a 'single-use' token in the request header, which re-authenticates the user with each request. See below for more details. ### Entity Id and Entity Name The `entityId` and `entityName` parameters are only used for [Zuora Multi-entity](https://knowledgecenter.zuora.com/BB_Introducing_Z_Business/Multi-entity \"Zuora Multi-entity\"). These are the legacy parameters that Zuora will only continue to support for a period of time. Zuora recommends you to use the `Zuora-Entity-Ids` parameter instead. The `entityId` and `entityName` parameters specify the Id and the [name of the entity](https://knowledgecenter.zuora.com/BB_Introducing_Z_Business/Multi-entity/B_Introduction_to_Entity_and_Entity_Hierarchy#Name_and_Display_Name \"Introduction to Entity and Entity Hierarchy\") that you want to access, respectively. Note that you must have permission to access the entity. You can specify either the `entityId` or `entityName` parameter in the authentication to access and view an entity. * If both `entityId` and `entityName` are specified in the authentication, an error occurs. * If neither `entityId` nor `entityName` is specified in the authentication, you will log in to the entity in which your user account is created. To get the entity Id and entity name, you can use the GET Entities REST call. For more information, see [API User Authentication](https://knowledgecenter.zuora.com/BB_Introducing_Z_Business/Multi-entity/A_Overview_of_Multi-entity#API_User_Authentication \"API User Authentication\"). ### Token Authentication for CORS-Enabled APIs The CORS mechanism enables REST API calls to Zuora to be made directly from your customer's browser, with all credit card and security information transmitted directly to Zuora. This minimizes your PCI compliance burden, allows you to implement advanced validation on your payment forms, and makes your payment forms look just like any other part of your website. For security reasons, instead of using cookies, an API request via CORS uses **tokens** for authentication. The token method of authentication is only designed for use with requests that must originate from your customer's browser; **it should not be considered a replacement to the existing cookie authentication** mechanism. See [Zuora CORS REST](https://knowledgecenter.zuora.com/DC_Developers/REST_API/A_REST_basics/G_CORS_REST \"Zuora CORS REST\") for details on how CORS works and how you can begin to implement customer calls to the Zuora REST APIs. See [HMAC Signatures](https://www.zuora.com/developer/api-reference/#operation/POSTHMACSignature \"HMAC Signatures\") for details on the HMAC method that returns the authentication token. # Requests and Responses ## Request IDs As a general rule, when asked to supply a \"key\" for an account or subscription (accountKey, account-key, subscriptionKey, subscription-key), you can provide either the actual ID or the number of the entity. ## HTTP Request Body Most of the parameters and data accompanying your requests will be contained in the body of the HTTP request. The Zuora REST API accepts JSON in the HTTP request body. No other data format (e.g., XML) is supported. ### Data Type ([Actions](https://www.zuora.com/developer/api-reference/#tag/Actions) and CRUD operations only) We recommend that you do not specify the decimal values with quotation marks, commas, and spaces. Use characters of `+-0-9.eE`, for example, `5`, `1.9`, `-8.469`, and `7.7e2`. Also, Zuora does not convert currencies for decimal values. ## Testing a Request Use a third party client, such as [curl](https://curl.haxx.se \"curl\"), [Postman](https://www.getpostman.com \"Postman\"), or [Advanced REST Client](https://advancedrestclient.com \"Advanced REST Client\"), to test the Zuora REST API. You can test the Zuora REST API from the Zuora API Sandbox or Production tenants. If connecting to Production, bear in mind that you are working with your live production data, not sample data or test data. ## Testing with Credit Cards Sooner or later it will probably be necessary to test some transactions that involve credit cards. For suggestions on how to handle this, see [Going Live With Your Payment Gateway](https://knowledgecenter.zuora.com/CB_Billing/M_Payment_Gateways/C_Managing_Payment_Gateways/B_Going_Live_Payment_Gateways#Testing_with_Credit_Cards \"C_Zuora_User_Guides/A_Billing_and_Payments/M_Payment_Gateways/C_Managing_Payment_Gateways/B_Going_Live_Payment_Gateways#Testing_with_Credit_Cards\" ). ## Concurrent Request Limits Zuora enforces tenant-level concurrent request limits. See <a href=\"https://knowledgecenter.zuora.com/BB_Introducing_Z_Business/Policies/Concurrent_Request_Limits\" target=\"_blank\">Concurrent Request Limits</a> for more information. ## Timeout Limit If a request does not complete within 120 seconds, the request times out and Zuora returns a Gateway Timeout error. ## Error Handling Responses and error codes are detailed in [Responses and errors](https://knowledgecenter.zuora.com/DC_Developers/REST_API/A_REST_basics/3_Responses_and_errors \"Responses and errors\"). # Pagination When retrieving information (using GET methods), the optional `pageSize` query parameter sets the maximum number of rows to return in a response. The maximum is `40`; larger values are treated as `40`. If this value is empty or invalid, `pageSize` typically defaults to `10`. The default value for the maximum number of rows retrieved can be overridden at the method level. If more rows are available, the response will include a `nextPage` element, which contains a URL for requesting the next page. If this value is not provided, no more rows are available. No \"previous page\" element is explicitly provided; to support backward paging, use the previous call. ## Array Size For data items that are not paginated, the REST API supports arrays of up to 300 rows. Thus, for instance, repeated pagination can retrieve thousands of customer accounts, but within any account an array of no more than 300 rate plans is returned. # API Versions The Zuora REST API are version controlled. Versioning ensures that Zuora REST API changes are backward compatible. Zuora uses a major and minor version nomenclature to manage changes. By specifying a version in a REST request, you can get expected responses regardless of future changes to the API. ## Major Version The major version number of the REST API appears in the REST URL. Currently, Zuora only supports the **v1** major version. For example, `POST https://rest.zuora.com/v1/subscriptions`. ## Minor Version Zuora uses minor versions for the REST API to control small changes. For example, a field in a REST method is deprecated and a new field is used to replace it. Some fields in the REST methods are supported as of minor versions. If a field is not noted with a minor version, this field is available for all minor versions. If a field is noted with a minor version, this field is in version control. You must specify the supported minor version in the request header to process without an error. If a field is in version control, it is either with a minimum minor version or a maximum minor version, or both of them. You can only use this field with the minor version between the minimum and the maximum minor versions. For example, the `invoiceCollect` field in the POST Subscription method is in version control and its maximum minor version is 189.0. You can only use this field with the minor version 189.0 or earlier. If you specify a version number in the request header that is not supported, Zuora will use the minimum minor version of the REST API. In our REST API documentation, if a field or feature requires a minor version number, we note that in the field description. You only need to specify the version number when you use the fields require a minor version. To specify the minor version, set the `zuora-version` parameter to the minor version number in the request header for the request call. For example, the `collect` field is in 196.0 minor version. If you want to use this field for the POST Subscription method, set the `zuora-version` parameter to `196.0` in the request header. The `zuora-version` parameter is case sensitive. For all the REST API fields, by default, if the minor version is not specified in the request header, Zuora will use the minimum minor version of the REST API to avoid breaking your integration. ### Minor Version History The supported minor versions are not serial. This section documents the changes made to each Zuora REST API minor version. The following table lists the supported versions and the fields that have a Zuora REST API minor version. | Fields | Minor Version | REST Methods | Description | |:--------|:--------|:--------|:--------| | invoiceCollect | 189.0 and earlier | [Create Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_Subscription \"Create Subscription\"); [Update Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_Subscription \"Update Subscription\"); [Renew Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_RenewSubscription \"Renew Subscription\"); [Cancel Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_CancelSubscription \"Cancel Subscription\"); [Suspend Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_SuspendSubscription \"Suspend Subscription\"); [Resume Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_ResumeSubscription \"Resume Subscription\"); [Create Account](https://www.zuora.com/developer/api-reference/#operation/POST_Account \"Create Account\")|Generates an invoice and collects a payment for a subscription. | | collect | 196.0 and later | [Create Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_Subscription \"Create Subscription\"); [Update Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_Subscription \"Update Subscription\"); [Renew Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_RenewSubscription \"Renew Subscription\"); [Cancel Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_CancelSubscription \"Cancel Subscription\"); [Suspend Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_SuspendSubscription \"Suspend Subscription\"); [Resume Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_ResumeSubscription \"Resume Subscription\"); [Create Account](https://www.zuora.com/developer/api-reference/#operation/POST_Account \"Create Account\")|Collects an automatic payment for a subscription. | | invoice | 196.0 and 207.0| [Create Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_Subscription \"Create Subscription\"); [Update Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_Subscription \"Update Subscription\"); [Renew Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_RenewSubscription \"Renew Subscription\"); [Cancel Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_CancelSubscription \"Cancel Subscription\"); [Suspend Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_SuspendSubscription \"Suspend Subscription\"); [Resume Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_ResumeSubscription \"Resume Subscription\"); [Create Account](https://www.zuora.com/developer/api-reference/#operation/POST_Account \"Create Account\")|Generates an invoice for a subscription. | | invoiceTargetDate | 196.0 and earlier | [Preview Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_SubscriptionPreview \"Preview Subscription\") |Date through which charges are calculated on the invoice, as `yyyy-mm-dd`. | | invoiceTargetDate | 207.0 and earlier | [Create Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_Subscription \"Create Subscription\"); [Update Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_Subscription \"Update Subscription\"); [Renew Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_RenewSubscription \"Renew Subscription\"); [Cancel Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_CancelSubscription \"Cancel Subscription\"); [Suspend Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_SuspendSubscription \"Suspend Subscription\"); [Resume Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_ResumeSubscription \"Resume Subscription\"); [Create Account](https://www.zuora.com/developer/api-reference/#operation/POST_Account \"Create Account\")|Date through which charges are calculated on the invoice, as `yyyy-mm-dd`. | | targetDate | 207.0 and later | [Preview Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_SubscriptionPreview \"Preview Subscription\") |Date through which charges are calculated on the invoice, as `yyyy-mm-dd`. | | targetDate | 211.0 and later | [Create Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_Subscription \"Create Subscription\"); [Update Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_Subscription \"Update Subscription\"); [Renew Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_RenewSubscription \"Renew Subscription\"); [Cancel Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_CancelSubscription \"Cancel Subscription\"); [Suspend Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_SuspendSubscription \"Suspend Subscription\"); [Resume Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_ResumeSubscription \"Resume Subscription\"); [Create Account](https://www.zuora.com/developer/api-reference/#operation/POST_Account \"Create Account\")|Date through which charges are calculated on the invoice, as `yyyy-mm-dd`. | | includeExisting DraftInvoiceItems | 196.0 and earlier| [Preview Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_SubscriptionPreview \"Preview Subscription\"); [Update Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_Subscription \"Update Subscription\") | Specifies whether to include draft invoice items in subscription previews. Specify it to be `true` (default) to include draft invoice items in the preview result. Specify it to be `false` to excludes draft invoice items in the preview result. | | includeExisting DraftDocItems | 207.0 and later | [Preview Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_SubscriptionPreview \"Preview Subscription\"); [Update Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_Subscription \"Update Subscription\") | Specifies whether to include draft invoice items in subscription previews. Specify it to be `true` (default) to include draft invoice items in the preview result. Specify it to be `false` to excludes draft invoice items in the preview result. | | previewType | 196.0 and earlier| [Preview Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_SubscriptionPreview \"Preview Subscription\"); [Update Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_Subscription \"Update Subscription\") | The type of preview you will receive. The possible values are `InvoiceItem`(default), `ChargeMetrics`, and `InvoiceItemChargeMetrics`. | | previewType | 207.0 and later | [Preview Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_SubscriptionPreview \"Preview Subscription\"); [Update Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_Subscription \"Update Subscription\") | The type of preview you will receive. The possible values are `LegalDoc`(default), `ChargeMetrics`, and `LegalDocChargeMetrics`. | | runBilling | 211.0 and later | [Create Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_Subscription \"Create Subscription\"); [Update Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_Subscription \"Update Subscription\"); [Renew Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_RenewSubscription \"Renew Subscription\"); [Cancel Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_CancelSubscription \"Cancel Subscription\"); [Suspend Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_SuspendSubscription \"Suspend Subscription\"); [Resume Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_ResumeSubscription \"Resume Subscription\"); [Create Account](https://www.zuora.com/developer/api-reference/#operation/POST_Account \"Create Account\")|Generates an invoice or credit memo for a subscription. **Note:** Credit memos are only available if you have the Invoice Settlement feature enabled. | | invoiceDate | 214.0 and earlier | [Invoice and Collect](https://www.zuora.com/developer/api-reference/#operation/POST_TransactionInvoicePayment \"Invoice and Collect\") |Date that should appear on the invoice being generated, as `yyyy-mm-dd`. | | invoiceTargetDate | 214.0 and earlier | [Invoice and Collect](https://www.zuora.com/developer/api-reference/#operation/POST_TransactionInvoicePayment \"Invoice and Collect\") |Date through which to calculate charges on this account if an invoice is generated, as `yyyy-mm-dd`. | | documentDate | 215.0 and later | [Invoice and Collect](https://www.zuora.com/developer/api-reference/#operation/POST_TransactionInvoicePayment \"Invoice and Collect\") |Date that should appear on the invoice and credit memo being generated, as `yyyy-mm-dd`. | | targetDate | 215.0 and later | [Invoice and Collect](https://www.zuora.com/developer/api-reference/#operation/POST_TransactionInvoicePayment \"Invoice and Collect\") |Date through which to calculate charges on this account if an invoice or a credit memo is generated, as `yyyy-mm-dd`. | | memoItemAmount | 223.0 and earlier | [Create credit memo from charge](https://www.zuora.com/developer/api-reference/#operation/POST_CreditMemoFromPrpc \"Create credit memo from charge\"); [Create debit memo from charge](https://www.zuora.com/developer/api-reference/#operation/POST_DebitMemoFromPrpc \"Create debit memo from charge\") | Amount of the memo item. | | amount | 224.0 and later | [Create credit memo from charge](https://www.zuora.com/developer/api-reference/#operation/POST_CreditMemoFromPrpc \"Create credit memo from charge\"); [Create debit memo from charge](https://www.zuora.com/developer/api-reference/#operation/POST_DebitMemoFromPrpc \"Create debit memo from charge\") | Amount of the memo item. | | subscriptionNumbers | 222.4 and earlier | [Create order](https://www.zuora.com/developer/api-reference/#operation/POST_Order \"Create order\") | Container for the subscription numbers of the subscriptions in an order. | | subscriptions | 223.0 and later | [Create order](https://www.zuora.com/developer/api-reference/#operation/POST_Order \"Create order\") | Container for the subscription numbers and statuses in an order. | #### Version 207.0 and Later The response structure of the [Preview Subscription](https://www.zuora.com/developer/api-reference/#operation/POST_SubscriptionPreview \"Preview Subscription\") and [Update Subscription](https://www.zuora.com/developer/api-reference/#operation/PUT_Subscription \"Update Subscription\") methods are changed. The following invoice related response fields are moved to the invoice container: * amount * amountWithoutTax * taxAmount * invoiceItems * targetDate * chargeMetrics # Zuora Object Model The following diagram presents a high-level view of the key Zuora objects. Click the image to open it in a new tab to resize it. <a href=\"https://www.zuora.com/wp-content/uploads/2017/01/ZuoraERD.jpeg\" target=\"_blank\"><img src=\"https://www.zuora.com/wp-content/uploads/2017/01/ZuoraERD.jpeg\" alt=\"Zuora Object Model Diagram\"></a> See the following articles for information about other parts of the Zuora business object model: * <a href=\"https://knowledgecenter.zuora.com/CB_Billing/Invoice_Settlement/D_Invoice_Settlement_Object_Model\" target=\"_blank\">Invoice Settlement Object Model</a> * <a href=\"https://knowledgecenter.zuora.com/BC_Subscription_Management/Orders/BA_Orders_Object_Model\" target=\"_blank\">Orders Object Model</a> You can use the [Describe object](https://www.zuora.com/developer/api-reference/#operation/GET_Describe) operation to list the fields of each Zuora object that is available in your tenant. When you call the operation, you must specify the API name of the Zuora object. The following table provides the API name of each Zuora object: | Object | API Name | |-----------------------------------------------|--------------------------------------------| | Account | `Account` | | Accounting Code | `AccountingCode` | | Accounting Period | `AccountingPeriod` | | Amendment | `Amendment` | | Application Group | `ApplicationGroup` | | Billing Run | <p>`BillingRun`</p><p>**Note:** The API name of this object is `BillingRun` in the [Describe object](https://www.zuora.com/developer/api-reference/#operation/GET_Describe) operation and Export ZOQL queries only. Otherwise, the API name of this object is `BillRun`.</p> | | Contact | `Contact` | | Contact Snapshot | `ContactSnapshot` | | Credit Balance Adjustment | `CreditBalanceAdjustment` | | Credit Memo | `CreditMemo` | | Credit Memo Application | `CreditMemoApplication` | | Credit Memo Application Item | `CreditMemoApplicationItem` | | Credit Memo Item | `CreditMemoItem` | | Credit Memo Part | `CreditMemoPart` | | Credit Memo Part Item | `CreditMemoPartItem` | | Credit Taxation Item | `CreditTaxationItem` | | Custom Exchange Rate | `FXCustomRate` | | Debit Memo | `DebitMemo` | | Debit Memo Item | `DebitMemoItem` | | Debit Taxation Item | `DebitTaxationItem` | | Discount Applied Metrics | `DiscountAppliedMetrics` | | Entity | `Tenant` | | Gateway Reconciliation Event | `PaymentGatewayReconciliationEventLog` | | Gateway Reconciliation Job | `PaymentReconciliationJob` | | Gateway Reconciliation Log | `PaymentReconciliationLog` | | Invoice | `Invoice` | | Invoice Adjustment | `InvoiceAdjustment` | | Invoice Item | `InvoiceItem` | | Invoice Item Adjustment | `InvoiceItemAdjustment` | | Invoice Payment | `InvoicePayment` | | Journal Entry | `JournalEntry` | | Journal Entry Item | `JournalEntryItem` | | Journal Run | `JournalRun` | | Order | `Order` | | Order Action | `OrderAction` | | Order ELP | `OrderElp` | | Order Item | `OrderItem` | | Order MRR | `OrderMrr` | | Order Quantity | `OrderQuantity` | | Order TCB | `OrderTcb` | | Order TCV | `OrderTcv` | | Payment | `Payment` | | Payment Application | `PaymentApplication` | | Payment Application Item | `PaymentApplicationItem` | | Payment Method | `PaymentMethod` | | Payment Method Snapshot | `PaymentMethodSnapshot` | | Payment Method Transaction Log | `PaymentMethodTransactionLog` | | Payment Method Update | `UpdaterDetail` | | Payment Part | `PaymentPart` | | Payment Part Item | `PaymentPartItem` | | Payment Run | `PaymentRun` | | Payment Transaction Log | `PaymentTransactionLog` | | Processed Usage | `ProcessedUsage` | | Product | `Product` | | Product Rate Plan | `ProductRatePlan` | | Product Rate Plan Charge | `ProductRatePlanCharge` | | Product Rate Plan Charge Tier | `ProductRatePlanChargeTier` | | Rate Plan | `RatePlan` | | Rate Plan Charge | `RatePlanCharge` | | Rate Plan Charge Tier | `RatePlanChargeTier` | | Refund | `Refund` | | Refund Application | `RefundApplication` | | Refund Application Item | `RefundApplicationItem` | | Refund Invoice Payment | `RefundInvoicePayment` | | Refund Part | `RefundPart` | | Refund Part Item | `RefundPartItem` | | Refund Transaction Log | `RefundTransactionLog` | | Revenue Charge Summary | `RevenueChargeSummary` | | Revenue Charge Summary Item | `RevenueChargeSummaryItem` | | Revenue Event | `RevenueEvent` | | Revenue Event Credit Memo Item | `RevenueEventCreditMemoItem` | | Revenue Event Debit Memo Item | `RevenueEventDebitMemoItem` | | Revenue Event Invoice Item | `RevenueEventInvoiceItem` | | Revenue Event Invoice Item Adjustment | `RevenueEventInvoiceItemAdjustment` | | Revenue Event Item | `RevenueEventItem` | | Revenue Event Item Credit Memo Item | `RevenueEventItemCreditMemoItem` | | Revenue Event Item Debit Memo Item | `RevenueEventItemDebitMemoItem` | | Revenue Event Item Invoice Item | `RevenueEventItemInvoiceItem` | | Revenue Event Item Invoice Item Adjustment | `RevenueEventItemInvoiceItemAdjustment` | | Revenue Event Type | `RevenueEventType` | | Revenue Schedule | `RevenueSchedule` | | Revenue Schedule Credit Memo Item | `RevenueScheduleCreditMemoItem` | | Revenue Schedule Debit Memo Item | `RevenueScheduleDebitMemoItem` | | Revenue Schedule Invoice Item | `RevenueScheduleInvoiceItem` | | Revenue Schedule Invoice Item Adjustment | `RevenueScheduleInvoiceItemAdjustment` | | Revenue Schedule Item | `RevenueScheduleItem` | | Revenue Schedule Item Credit Memo Item | `RevenueScheduleItemCreditMemoItem` | | Revenue Schedule Item Debit Memo Item | `RevenueScheduleItemDebitMemoItem` | | Revenue Schedule Item Invoice Item | `RevenueScheduleItemInvoiceItem` | | Revenue Schedule Item Invoice Item Adjustment | `RevenueScheduleItemInvoiceItemAdjustment` | | Subscription | `Subscription` | | Taxable Item Snapshot | `TaxableItemSnapshot` | | Taxation Item | `TaxationItem` | | Updater Batch | `UpdaterBatch` | | Usage | `Usage` | # noqa: E501
OpenAPI spec version: 2018-08-23
Contact: [email protected]
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import unittest
import zuora_client
from zuora_client.api.accounting_codes_api import AccountingCodesApi # noqa: E501
from zuora_client.rest import ApiException
class TestAccountingCodesApi(unittest.TestCase):
"""AccountingCodesApi unit test stubs"""
def setUp(self):
self.api = zuora_client.api.accounting_codes_api.AccountingCodesApi() # noqa: E501
def tearDown(self):
pass
def test_d_elete_accounting_code(self):
"""Test case for d_elete_accounting_code
Delete accounting code # noqa: E501
"""
pass
def test_g_et_accounting_code(self):
"""Test case for g_et_accounting_code
Query an accounting code # noqa: E501
"""
pass
def test_g_et_all_accounting_codes(self):
"""Test case for g_et_all_accounting_codes
Get all accounting codes # noqa: E501
"""
pass
def test_p_ost_accounting_code(self):
"""Test case for p_ost_accounting_code
Create accounting code # noqa: E501
"""
pass
def test_p_ut_accounting_code(self):
"""Test case for p_ut_accounting_code
Update an accounting code # noqa: E501
"""
pass
def test_p_ut_activate_accounting_code(self):
"""Test case for p_ut_activate_accounting_code
Activate accounting code # noqa: E501
"""
pass
def test_p_ut_deactivate_accounting_code(self):
"""Test case for p_ut_deactivate_accounting_code
Deactivate accounting code # noqa: E501
"""
pass
if __name__ == '__main__':
unittest.main()
| [
"[email protected]"
]
| |
850b4c367e89f11ec61b6ca59130366be349187c | 8f12530968425e36a41e3495aefedece69278364 | /第八章appium使用爬取app/爬取美团店铺名称.py | 2d1c69712a879ebf49cbe9bd5597347e7da9f0be | []
| no_license | q3293183121/hhh | 126ab6f93dec613b0d0bf69595a09ca3c7a4623d | bc72bd6ad69a2bdd1a562466b1d7a8ab29c2aef9 | refs/heads/master | 2020-05-21T16:08:53.380063 | 2019-05-11T09:31:45 | 2019-05-11T09:31:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 923 | py | from appium import webdriver
import time
desired_caps = {}
desired_caps['platformName'] = 'Android'
desired_caps['platformVersion'] = '5.1.1'
desired_caps['deviceName'] = '8934c63a'
desired_caps['appPackage'] = 'com.sankuai.meituan.takeoutnew'
desired_caps['appActivity'] = '.ui.page.boot.WelcomeActivity'
driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps)
driver.implicitly_wait(20)
time.sleep(5)
driver.find_element_by_xpath('//*[@resource-id="com.sankuai.meituan.takeoutnew:id/layout_search_box_normal"]').click()
driver.find_element_by_xpath('//*[@resource-id="com.sankuai.meituan.takeoutnew:id/search_action_bar_container"]').send_keys('hanbao')
driver.find_element_by_xpath('//*[@resource-id="com.sankuai.meituan.takeoutnew:id/search_tv"]').click()
data = driver.find_elements_by_xpath('//*[@resource-id="com.sankuai.meituan.takeoutnew:id/textview_poi_name"]')
for i in data:
print(i.text)
| [
"[email protected]"
]
| |
3b981a9fba01cd273902606da0f933d6922cccc7 | fea44d5ca4e6c9b2c7950234718a4531d453849e | /sktime/forecasting/online_learning/tests/test_online_learning.py | 0d69e830d91f097dbf4c44b2f9e82f9db2795a82 | [
"BSD-3-Clause"
]
| permissive | mlgig/sktime | 288069ab8c9b0743113877032dfca8cf1c2db3fb | 19618df351a27b77e3979efc191e53987dbd99ae | refs/heads/master | 2023-03-07T20:22:48.553615 | 2023-02-19T18:09:12 | 2023-02-19T18:09:12 | 234,604,691 | 1 | 0 | BSD-3-Clause | 2020-01-17T17:50:12 | 2020-01-17T17:50:11 | null | UTF-8 | Python | false | false | 3,478 | py | #!/usr/bin/env python3 -u
# -*- coding: utf-8 -*-
# copyright: sktime developers, BSD-3-Clause License (see LICENSE file)
"""Test OnlineEnsembleForecaster."""
__author__ = ["magittan"]
import numpy as np
import pytest
from sklearn.metrics import mean_squared_error
from sktime.datasets import load_airline
from sktime.forecasting.exp_smoothing import ExponentialSmoothing
from sktime.forecasting.model_selection import (
SlidingWindowSplitter,
temporal_train_test_split,
)
from sktime.forecasting.naive import NaiveForecaster
from sktime.forecasting.online_learning._online_ensemble import OnlineEnsembleForecaster
from sktime.forecasting.online_learning._prediction_weighted_ensembler import (
NNLSEnsemble,
NormalHedgeEnsemble,
)
from sktime.utils.validation._dependencies import _check_soft_dependencies
cv = SlidingWindowSplitter(start_with_window=True, window_length=1, fh=1)
@pytest.mark.skipif(
not _check_soft_dependencies("statsmodels", severity="none"),
reason="skip test if required soft dependency for hmmlearn not available",
)
def test_weights_for_airline_averaging():
"""Test weights."""
y = load_airline()
y_train, y_test = temporal_train_test_split(y)
forecaster = OnlineEnsembleForecaster(
[
("ses", ExponentialSmoothing(seasonal="multiplicative", sp=12)),
(
"holt",
ExponentialSmoothing(
trend="add", damped_trend=False, seasonal="multiplicative", sp=12
),
),
(
"damped_trend",
ExponentialSmoothing(
trend="add", damped_trend=True, seasonal="multiplicative", sp=12
),
),
]
)
forecaster.fit(y_train)
expected = np.array([1 / 3, 1 / 3, 1 / 3])
np.testing.assert_allclose(forecaster.weights, expected, rtol=1e-8)
def test_weights_for_airline_normal_hedge():
"""Test weights."""
y = load_airline()
y_train, y_test = temporal_train_test_split(y)
hedge_expert = NormalHedgeEnsemble(n_estimators=3, loss_func=mean_squared_error)
forecaster = OnlineEnsembleForecaster(
[
("av5", NaiveForecaster(strategy="mean", window_length=5)),
("av10", NaiveForecaster(strategy="mean", window_length=10)),
("av20", NaiveForecaster(strategy="mean", window_length=20)),
],
ensemble_algorithm=hedge_expert,
)
forecaster.fit(y_train)
forecaster.update_predict(y=y_test, cv=cv, reset_forecaster=False)
expected = np.array([0.17077154, 0.48156709, 0.34766137])
np.testing.assert_allclose(forecaster.weights, expected, atol=1e-8)
def test_weights_for_airline_nnls():
"""Test weights."""
y = load_airline()
y_train, y_test = temporal_train_test_split(y)
hedge_expert = NNLSEnsemble(n_estimators=3, loss_func=mean_squared_error)
forecaster = OnlineEnsembleForecaster(
[
("av5", NaiveForecaster(strategy="mean", window_length=5)),
("av10", NaiveForecaster(strategy="mean", window_length=10)),
("av20", NaiveForecaster(strategy="mean", window_length=20)),
],
ensemble_algorithm=hedge_expert,
)
forecaster.fit(y_train)
forecaster.update_predict(y=y_test, cv=cv, reset_forecaster=False)
expected = np.array([0.04720766, 0, 1.03410876])
np.testing.assert_allclose(forecaster.weights, expected, atol=1e-8)
| [
"[email protected]"
]
| |
53900eeda350da17ad2b6331007f483e1777455b | c23fe3a934687023b2b93fd4992f0e01ed008a18 | /ckanext/queue/config.py | c2a907abe04817741b17e46e14450915790cf767 | []
| no_license | okfn/ckanext-queue | eb928cfee6d04a69c53ba544c2f0c2c0eddafe5c | c8c55f8c92bce04f060dd573fac2ff10ecd35b44 | refs/heads/master | 2016-09-05T11:49:13.147030 | 2011-03-07T14:52:25 | 2011-03-07T14:52:25 | 2,897,696 | 0 | 0 | null | 2014-09-17T14:51:23 | 2011-12-02T10:15:53 | Python | UTF-8 | Python | false | false | 2,359 | py | import ConfigParser
import os
import logging
import optparse
from urlparse import urlparse
from paste.script.util.logging_config import fileConfig
DEFAULT_SECTION = 'worker'
class attrDict(dict):
def __setattr__(self, item, value):
self[item] = value
def make_optparse(parser=None):
if parser is None:
parser = optparse.OptionParser()
parser.add_option('-c', '--config', dest='config_file', help='worker config file')
parser.add_option('-s', '--section', dest='section', default=DEFAULT_SECTION,
help='relevant section in config file')
parser.add_option('-q', '--queue', dest='queue', help='queue name', default='ckan_worker')
parser.add_option('-r', '--routing-key', dest='routing_key', help='queue routing key')
parser.add_option('-a', '--amqp-url', dest='amqp', help='URL for the amqp host')
parser.add_option('-i', '--site-id', dest='ckan.site_id', help='CKAN site ID')
parser.add_option('-u', '--site-url', dest='ckan.site_url', help='CKAN site URL')
parser.add_option('-k', '--api-key', dest='ckan.api_key', help='CKAN api key')
return parser
def read_config(section, config_file=None):
config = ConfigParser.ConfigParser()
if config_file is None:
logging.warn("No config file specified, using worker.cfg")
config_file = 'worker.cfg'
configs = [config_file, os.path.expanduser('~/.ckanworker.cfg')]
config.read(configs)
for c in configs:
try:
fileConfig(c)
break
except: pass
data = config.defaults()
try:
data.update(dict(config.items(section)))
except ConfigParser.NoSectionError:
pass
return data
def run_parser(parser):
(options, args) = parser.parse_args(values=attrDict())
if 'amqp' in options:
url = urlparse(options.get('amqp'))
options['amqp_port'] = url.port
options['amqp_hostname'] = url.netloc
options['amqp_user_id'] = url.username
options['amqp_hostname'] = url.password
options['amqp_virtual_host'] = url.path.strip("/")
config = read_config(options.get('section', DEFAULT_SECTION),
options.get('config_file'))
config.update(options)
return config, args
def configure():
return run_parser(make_optparse())
| [
"[email protected]"
]
| |
ad356df0eb0e885f01ed9f78a0b2c4534c95b4f3 | c2a7c8c85bfd48be44ee1d1e42871c1be6e28566 | /lib/saq/persistence/__init__.py | 7a353deebf86e4f9b4b3a149557016a3d9f753f4 | [
"Apache-2.0"
]
| permissive | iaji/ACE-1 | 3f2b1f51ee03d85883fb804e7c48a545f2bc1e89 | 8c1d96179d252cbbea16384097522d9db4f2aa83 | refs/heads/master | 2022-07-19T19:33:08.493579 | 2020-03-15T20:09:47 | 2020-03-15T20:09:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 7,414 | py | # vim: sw=4:ts=4:et
#
# Persistence
# Functionality to store data in long term storage external to the system.
#
import functools
import logging
import pickle
import saq
from saq.database import (
Persistence,
PersistenceSource,
execute_with_retry,
get_db_connection,
retry
)
def persistant_property(*key_args):
"""Utility decorator for Persistable-based objects. Adds any arguments as properties
that automatically loads and stores the value in the persistence table in the database.
These arguments are created as permanent persistent properties."""
def _decorator(cls):
@functools.wraps(cls)
def wrapper(*args, **kwargs):
for key in key_args:
# this _closure function is required since we're using a for loop and a closure
# see http://www.discoversdk.com/blog/closures-in-python-3
def _closure(key=key):
internal_key = f'_{key}' # internal value
internal_key_loaded = f'_{key}_loaded' # boolean set to True after it's loaded
def _getter(self):
try:
self.load_persistent_property(key)
except Exception as e:
logging.error(f"unable to load persistence key {key}: {e}")
return getattr(self, internal_key)
def _setter(self, value):
try:
retry(self.save_persistent_property(key, value))
except Exception as e:
logging.error(f"unable to save persistence key {key}: {e}")
setattr(self, internal_key, value)
setattr(cls, internal_key, None)
setattr(cls, internal_key_loaded, False)
setattr(cls, key, property(_getter, _setter))
_closure(key)
return cls(*args, **kwargs)
return wrapper
return _decorator
class Persistable(object):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.persistence_source = None
self.persistence_key_mapping = {}
def register_persistence_source(self, source_name):
persistence_source = saq.db.query(PersistenceSource).filter(
PersistenceSource.company_id == saq.COMPANY_ID,
PersistenceSource.name == source_name).first()
if persistence_source is None:
logging.info(f"registering persistence source {source_name}")
saq.db.add(PersistenceSource(company_id=saq.COMPANY_ID, name=source_name))
saq.db.commit()
persistence_source = saq.db.query(PersistenceSource).filter(
PersistenceSource.company_id == saq.COMPANY_ID,
PersistenceSource.name == source_name).first()
if persistence_source is None:
logging.critical(f"unable to create persistence source for {source_name}")
return None
saq.db.expunge(persistence_source)
self.persistence_source = persistence_source
return self.persistence_source
def load_persistent_property(self, key_name):
if self.persistence_source is None:
raise RuntimeError(f"a request to load a persistence key on {self} before register_persistence_source was called")
internal_key = f'_{key_name}'
internal_key_loaded = f'_{key_name}_loaded'
# have we already loaded it?
if getattr(self, internal_key_loaded):
return
persistence = saq.db.query(Persistence).filter(Persistence.source_id == self.persistence_source.id,
Persistence.uuid == key_name).first()
key_value = None
if persistence is not None:
key_value = pickle.loads(persistence.value)
setattr(self, internal_key, key_value)
setattr(self, internal_key_loaded, True)
def save_persistent_property(self, key_name, key_value=None):
if self.persistence_source is None:
raise RuntimeError(f"a request to set a persistence key on {self} before register_persistence_source was called")
# are we already tracking it?
if key_name in self.persistence_key_mapping:
# update the value
saq.db.execute(Persistence.__table__.update().values(value=pickle.dumps(key_value))\
.where(Persistence.id == self.persistence_key_mapping[key_name]))
saq.db.commit()
return True
# get the tracking information
persistence = saq.db.query(Persistence).filter(Persistence.source_id == self.persistence_source.id,
Persistence.uuid == key_name).first()
if persistence is not None:
# and then update the value
self.persistence_key_mapping[key_name] = persistence.id
saq.db.execute(Persistence.__table__.update().values(value=pickle.dumps(key_value))\
.where(Persistence.id == self.persistence_key_mapping[key_name]))
saq.db.commit()
return True
# otherwise we're creating a new persistence key
logging.debug(f"registering persistence key {key_name}")
persistence = Persistence(source_id=self.persistence_source.id,
permanent=True,
uuid=key_name,
value=pickle.dumps(key_value))
saq.db.add(persistence)
saq.db.commit()
self.persistence_key_mapping[key_name] = persistence.id
return True
def save_persistent_key(self, key_name):
"""Creates a new persistent key with no value recorded. The key must not already exist."""
self.save_persistent_data(key_name)
def save_persistent_data(self, key_name, key_value=None):
"""Creates a new persistent key with the given value recorded. The key must not already exist."""
if key_value is not None:
key_value = pickle.dumps(key_value)
with get_db_connection() as db:
c = db.cursor()
execute_with_retry(db, c, """
INSERT INTO persistence (
source_id,
uuid,
value
) VALUES ( %s, %s, %s )
ON DUPLICATE KEY UPDATE last_update = CURRENT_TIMESTAMP""", (self.persistence_source.id, key_name, key_value),
commit=True)
def load_persistent_data(self, key_name):
"""Returns the value of the persistent key by name. Raises an exception if the key does not exist."""
persistence = saq.db.query(Persistence).filter(Persistence.source_id == self.persistence_source.id,
Persistence.uuid == key_name).one()
if persistence.value is None:
return None
return pickle.loads(persistence.value)
def persistent_data_exists(self, key_name):
"""Returns True if the given key exists, False otherwise."""
persistence = saq.db.query(Persistence).filter(Persistence.source_id == self.persistence_source.id,
Persistence.uuid == key_name).first()
return persistence is not None
| [
"[email protected]"
]
| |
51be6a501ac26b5d773bf8b304e3986f6b5d3afd | e2d23d749779ed79472a961d2ab529eeffa0b5b0 | /pipeline/component_framework/component.py | 78c9c838bffb9e79b9aee8600ea2886df757a6c7 | [
"MIT",
"BSD-3-Clause",
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
]
| permissive | manlucas/atom | 9fa026b3f914e53cd2d34aecdae580bda09adda7 | 94963fc6fdfd0568473ee68e9d1631f421265359 | refs/heads/master | 2022-09-30T06:19:53.828308 | 2020-01-21T14:08:36 | 2020-01-21T14:08:36 | 235,356,376 | 0 | 0 | NOASSERTION | 2022-09-16T18:17:08 | 2020-01-21T14:04:51 | Python | UTF-8 | Python | false | false | 2,699 | py | # -*- coding: utf-8 -*-
"""
Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community
Edition) available.
Copyright (C) 2017-2019 THL A29 Limited, a Tencent company. All rights reserved.
Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://opensource.org/licenses/MIT
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
"""
from pipeline.core.data.base import DataObject
from pipeline.core.data.converter import get_variable
from pipeline.exceptions import ComponentDataLackException
from pipeline.component_framework.base import ComponentMeta
class Component(object):
__metaclass__ = ComponentMeta
def __init__(self, data_dict):
self.data_dict = data_dict
@classmethod
def outputs_format(cls):
outputs = cls.bound_service().outputs()
outputs = map(lambda oi: oi.as_dict(), outputs)
return outputs
@classmethod
def inputs_format(cls):
inputs = cls.bound_service().inputs()
inputs = map(lambda ii: ii.as_dict(), inputs)
return inputs
@classmethod
def _get_item_schema(cls, type, key):
items = getattr(cls.bound_service(), type)()
for item in items:
if item.key == key:
return item
return None
@classmethod
def get_output_schema(cls, key):
return cls._get_item_schema(type='outputs', key=key).schema
@classmethod
def get_input_schema(cls, key):
return cls._get_item_schema(type='inputs', key=key).schema
@classmethod
def form_is_embedded(cls):
return getattr(cls, 'embedded_form', False)
def clean_execute_data(self, context):
"""
@summary: hook for subclass of Component to clean execute data with context
@param context:
@return:
"""
return self.data_dict
def data_for_execution(self, context, pipeline_data):
data_dict = self.clean_execute_data(context)
inputs = {}
for key, tag_info in data_dict.items():
if tag_info is None:
raise ComponentDataLackException('Lack of inputs: %s' % key)
inputs[key] = get_variable(key, tag_info, context, pipeline_data)
return DataObject(inputs)
def service(self):
return self.bound_service()
| [
"[email protected]"
]
| |
4bcbcd1cbc0fca55e3be118a4b1134f7569efcc7 | 0aa965a8d4f48c5bdc31d20dd205607b42024010 | /backend/black_girl_magic_an_21783/settings.py | 081a3d335c0ac4be9f03d88c24b98ed25c5d90db | []
| no_license | crowdbotics-apps/black-girl-magic-an-21783 | 04b49ee4f0dd9412d6fa9645dd88413c4e1189de | f78d4178c27ef14b30417fa88e57963d8c36ef4e | refs/heads/master | 2022-12-31T17:55:49.516606 | 2020-10-21T11:31:51 | 2020-10-21T11:31:51 | 306,002,654 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 6,125 | py | """
Django settings for black_girl_magic_an_21783 project.
Generated by 'django-admin startproject' using Django 2.2.2.
For more information on this file, see
https://docs.djangoproject.com/en/2.2/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.2/ref/settings/
"""
import os
import environ
import logging
env = environ.Env()
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = env.bool("DEBUG", default=False)
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = env.str("SECRET_KEY")
ALLOWED_HOSTS = env.list("HOST", default=["*"])
SITE_ID = 1
SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https")
SECURE_SSL_REDIRECT = env.bool("SECURE_REDIRECT", default=False)
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.sites'
]
LOCAL_APPS = [
'home',
'users.apps.UsersConfig',
]
THIRD_PARTY_APPS = [
'rest_framework',
'rest_framework.authtoken',
'rest_auth',
'rest_auth.registration',
'bootstrap4',
'allauth',
'allauth.account',
'allauth.socialaccount',
'allauth.socialaccount.providers.google',
'django_extensions',
'drf_yasg',
# start fcm_django push notifications
'fcm_django',
# end fcm_django push notifications
]
INSTALLED_APPS += LOCAL_APPS + THIRD_PARTY_APPS
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'black_girl_magic_an_21783.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'black_girl_magic_an_21783.wsgi.application'
# Database
# https://docs.djangoproject.com/en/2.2/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
if env.str("DATABASE_URL", default=None):
DATABASES = {
'default': env.db()
}
# Password validation
# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/2.2/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.2/howto/static-files/
STATIC_URL = '/static/'
MIDDLEWARE += ['whitenoise.middleware.WhiteNoiseMiddleware']
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
'allauth.account.auth_backends.AuthenticationBackend'
)
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static')
]
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
# allauth / users
ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_AUTHENTICATION_METHOD = 'email'
ACCOUNT_USERNAME_REQUIRED = False
ACCOUNT_EMAIL_VERIFICATION = "optional"
ACCOUNT_CONFIRM_EMAIL_ON_GET = True
ACCOUNT_LOGIN_ON_EMAIL_CONFIRMATION = True
ACCOUNT_UNIQUE_EMAIL = True
LOGIN_REDIRECT_URL = "users:redirect"
ACCOUNT_ADAPTER = "users.adapters.AccountAdapter"
SOCIALACCOUNT_ADAPTER = "users.adapters.SocialAccountAdapter"
ACCOUNT_ALLOW_REGISTRATION = env.bool("ACCOUNT_ALLOW_REGISTRATION", True)
SOCIALACCOUNT_ALLOW_REGISTRATION = env.bool("SOCIALACCOUNT_ALLOW_REGISTRATION", True)
REST_AUTH_SERIALIZERS = {
# Replace password reset serializer to fix 500 error
"PASSWORD_RESET_SERIALIZER": "home.api.v1.serializers.PasswordSerializer",
}
REST_AUTH_REGISTER_SERIALIZERS = {
# Use custom serializer that has no username and matches web signup
"REGISTER_SERIALIZER": "home.api.v1.serializers.SignupSerializer",
}
# Custom user model
AUTH_USER_MODEL = "users.User"
EMAIL_HOST = env.str("EMAIL_HOST", "smtp.sendgrid.net")
EMAIL_HOST_USER = env.str("SENDGRID_USERNAME", "")
EMAIL_HOST_PASSWORD = env.str("SENDGRID_PASSWORD", "")
EMAIL_PORT = 587
EMAIL_USE_TLS = True
# start fcm_django push notifications
FCM_DJANGO_SETTINGS = {
"FCM_SERVER_KEY": env.str("FCM_SERVER_KEY", "")
}
# end fcm_django push notifications
# Swagger settings for api docs
SWAGGER_SETTINGS = {
"DEFAULT_INFO": f"{ROOT_URLCONF}.api_info",
}
if DEBUG or not (EMAIL_HOST_USER and EMAIL_HOST_PASSWORD):
# output email to console instead of sending
if not DEBUG:
logging.warning("You should setup `SENDGRID_USERNAME` and `SENDGRID_PASSWORD` env vars to send emails.")
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
| [
"[email protected]"
]
| |
d2fb7dcbe451a07d724df45a7878f626dacd3386 | 64267b1f7ca193b0fab949089b86bc7a60e5b859 | /slehome/account/migrations/0097_auto_20150202_0039.py | 22375ff145f8b8257f860a9b8807a456a1d3db1d | []
| no_license | hongdangodori/slehome | 6a9f2b4526c2783932627b982df0540762570bff | 3e558c78c3943dadf0ec485738a0cc98dea64353 | refs/heads/master | 2021-01-17T12:00:34.221088 | 2015-02-06T13:44:00 | 2015-02-06T13:44:00 | 28,847,585 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 711 | py | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('account', '0096_auto_20150201_2051'),
]
operations = [
migrations.AlterField(
model_name='basicmemberinformation',
name='auth_key',
field=models.CharField(default='3635261e81ece5847f80557667f19c082cb20feb39a3fbaeb31df9b5fe98a104', max_length=64),
preserve_default=True,
),
migrations.AlterField(
model_name='stat',
name='stat_value',
field=models.IntegerField(),
preserve_default=True,
),
]
| [
"[email protected]"
]
| |
52f2f4d3f8ca4356fc81a84b1d54b9beb4ba9fbb | 698069070a63a49e0b29852af71228f88b2596d7 | /digitalocean.py | d33fdee76940229bf4ec6380ccb30de07b1aca50 | []
| no_license | DevOpsHW/DevOps-HW1 | 7f3682c00a49d10ba7a9ee2bee8a547592e25f58 | 2ea59b136b3bdd6e0d94f124e3a5fb76e057209c | refs/heads/master | 2020-04-14T13:19:24.587756 | 2015-09-24T00:26:52 | 2015-09-24T00:26:52 | 42,484,702 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 5,345 | py | import requests
import json
import os
import time
import sys
class Droplet():
def __init__(self, *args, **kwargs):
if kwargs:
self.id = kwargs['id']
self.name = kwargs['name']
self.ip = kwargs['networks']['v4'][0]['ip_address']
self.status = kwargs['status']
else:
self.id = args[0]
self.name = args[1]
self.ip = None
self.status = None
def updateStatus(self, conn):
r = conn.retrieveDroplet(self.id)
self.status = r['droplet']['status']
if self.status == 'active':
self.ip = r['droplet']['networks']['v4'][0]['ip_address']
def checkStatus(self, conn):
self.status = conn.retrieveDroplet(self.id)['droplet']['status']
print "Droplet status is " + self.status
return self.status
def __eq__(self, other):
return self.id == other.id
def __str__(self):
return "ID: %d, Name: %s, IP: %s, Status: %s" %(self.id, self.name, self.ip, self.status)
class Digitalocean():
def __init__(self, token):
self.headers = {
'Authorization': 'Bearer ' + token,
"Content-Type": 'application/json'
}
self.droplets = []
self.ips = []
def listRegions(self):
r = requests.get("https://api.digitalocean.com/v2/regions", headers=self.headers)
for region in r.json()['regions']:
print region['slug']
def listImages(self):
r = requests.get("https://api.digitalocean.com/v2/images", headers=self.headers)
for image in r.json()['images']:
print image['slug']
def createDroplet(self, name, region, imageName):
data = {
"name": name,
"region": region,
"size": "512mb",
"ssh_keys": self.getSSHkeyID(),
"image": imageName,
"backups": bool(None),
"ipv6": bool(False),
'virtio': False,
"private_networking": bool(None),
"user_data": None,
}
json_params = json.dumps(data)
r = requests.post('https://api.digitalocean.com/v2/droplets', data=json_params, headers=self.headers)
droplet = Droplet(r.json()['droplet']['id'], name, r.json()['droplet']['status'])
print "Droplet created, ID: ", droplet.id
while(True):
dr = self.retrieveDroplet(droplet.id)['droplet']
if 'v4' in dr['networks'].keys() and len(dr['networks']['v4']) > 0:
print "Get IP address: %s" % dr['networks']['v4'][0]['ip_address']
droplet.ip = dr['networks']['v4'][0]['ip_address']
break
else:
print "Waiting for IP address"
time.sleep(3)
self.droplets.append(Droplet(**dr))
self.ips.append(self.droplets[-1].ip)
return dr
def getSSHkeyID(self):
res = list()
r = requests.get("https://api.digitalocean.com/v2/account/keys", headers=self.headers)
for id in r.json()['ssh_keys']:
res.append(id['id'])
return res
def getDropletsList(self):
res = []
r = requests.get("https://api.digitalocean.com/v2/droplets", headers=self.headers)
for droplet in r.json()['droplets']:
res.append((droplet['id'], droplet['name'], droplet['networks']['v4'][0]['ip_address'], droplet['status']))
return res
def retrieveDroplet(self, dropletID):
r = requests.get("https://api.digitalocean.com/v2/droplets/" + str(dropletID), headers=self.headers)
return r.json()
def deleteDroplet(self, dropletID):
r = requests.delete("https://api.digitalocean.com/v2/droplets/" + str(dropletID), params=None, headers=self.headers)
print r.content
def destorySSHKey(self, key_id):
r = requests.delete("https://api.digitalocean.com/v2/account/keys/" + str(key_id), headers=self.headers)
print r.content
def createSSHKey(self, name, public_key_path):
f = open(public_key_path, 'r')
key = f.read()
f.close()
data = {
"name": name,
"public_key": key
}
json_params = json.dumps(data)
r = requests.post("https://api.digitalocean.com/v2/account/keys", data=json_params, headers=self.headers)
print r.content
return r.json()['ssh_key']['id']
def createInventory(self, key_file):
key_file = os.path.abspath(key_file)
f = open('inventory', 'r')
text = f.read()
f.close()
f = open('inventory', 'ab')
print "Writing to inventory."
for droplet in [(x[0], x[2]) for x in self.getDropletsList()]:
if droplet[1] not in text:
s = '%d ansible_ssh_host=%s ansible_ssh_user=root ansible_ssh_private_key_file=%s' % (droplet[0], droplet[1], key_file,)
print s
print >> f, s
f.close()
def checkIfAllActive(self):
if all( [droplet[3] == 'active' for droplet in self.getDropletsList()]):
return True
else:
return False
# token = os.environ["DO_TOKEN"]
# conn = Digitalocean(token)
# for droplet in conn.getDropletsList():
# print droplet
# conn.deleteDroplet(droplet[0])
| [
"[email protected]"
]
| |
c2967c440e90bbd9acfffcffd7a7062990563747 | 4469139b6bb093e2cb6cfca85b74d70836fb8056 | /python-notebook/tests/test_notebook.py | 29aab0dc3cc875e3e312cc854661c5ea641a25ed | [
"MIT"
]
| permissive | ucphhpc/nbi-jupyter-docker-stacks | ef30abfa6fcaf606bb75f35ff18526cf1abb416a | f1b5c83efb2df0f2e07c7c7d0199b650a3b33750 | refs/heads/master | 2023-08-31T09:31:18.096582 | 2023-08-25T11:36:12 | 2023-08-25T11:36:12 | 148,879,765 | 6 | 2 | MIT | 2023-03-27T07:08:42 | 2018-09-15T07:25:22 | Jupyter Notebook | UTF-8 | Python | false | false | 1,384 | py | import os
import subprocess
import tempfile
import nbformat
cur_path = os.path.abspath(".")
notebooks_path = os.path.join(cur_path, "notebooks")
kernels = ["python3"]
def _notebook_run(path, kernel="python3", timeout=300):
"""Execute a notebook via nbconvert and collect output.
:returns (parsed nb object, execution errors)
"""
dirname, __ = os.path.split(path)
os.chdir(dirname)
with tempfile.NamedTemporaryFile(suffix=".ipynb") as fout:
args = [
"jupyter",
"nbconvert",
"--to",
"notebook",
"--execute",
"--ExecutePreprocessor.timeout={}".format(timeout),
"--ExecutePreprocessor.kernel_name={}".format(kernel),
"--output",
fout.name,
path,
]
subprocess.check_call(args)
fout.seek(0)
nb = nbformat.read(fout, nbformat.current_nbformat)
errors = [
output
for cell in nb.cells
if "outputs" in cell
for output in cell["outputs"]
if output.output_type == "error"
]
return nb, errors
def test_notebooks():
for f_notebook in os.listdir(notebooks_path):
for kernel in kernels:
_, errors = _notebook_run(
os.path.join(notebooks_path, f_notebook), kernel=kernel
)
assert errors == []
| [
"[email protected]"
]
| |
9ad6372f1990c0bf87835f2cc9cc0edb20415089 | 0c3757dfd4e0a4b8201bc4d2b040029fd7a62e9c | /listEx.py | b0b0863b44e2139cbd395b2d45d3edbb88c3ea36 | []
| no_license | RubelAhmed57/Python-Bangla | 41074164c7f4a076747a339589f18dc73137414c | cdde682dd97e8081afbd406b00dad7aa5cd038c4 | refs/heads/master | 2021-06-26T15:48:34.674659 | 2017-09-09T15:35:56 | 2017-09-09T15:35:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 389 | py | item = [1, 2,4,3,5,6,7,8]
print(type(item))
item2 = ["A", "C", "B"]
print(item2)
print(" sort function")
resize = list(sorted(item))
print(resize)
print("Reverse function")
re = list(reversed(resize))
print(re)
print(" adding system ")
resize.append(9)
print(resize)
print("Remove system ")
resize.remove(1)
print(resize)
print("...................")
a = {1,3,4,5}
print(type(a))
| [
"[email protected]"
]
| |
9aa74c13724d80155c54c651c7793d6ebbb844c1 | 9dba277eeb0d5e9d2ac75e2e17ab5b5eda100612 | /exercises/1901010167/d09/main.py | 6212354875adecd6ba0d9a597876c1306511eabe | []
| no_license | shen-huang/selfteaching-python-camp | e8410bfc06eca24ee2866c5d890fd063e9d4be89 | 459f90c9f09bd3a3df9e776fc64dfd64ac65f976 | refs/heads/master | 2022-05-02T05:39:08.932008 | 2022-03-17T07:56:30 | 2022-03-17T07:56:30 | 201,287,222 | 9 | 6 | null | 2019-08-08T15:34:26 | 2019-08-08T15:34:25 | null | UTF-8 | Python | false | false | 294 | py | from mymodule import stats_word
if __name__ == "__main__":
try:
stats_word.stats_file('D:/Documents/GitHub/selfteaching-python-camp/exercises/1901010167/d09/tang300.json','r',100,0)
except ValueError :
print('输入的为非字符串')
| [
"[email protected]"
]
| |
4d60d8c0da70d0b8bf3996af09874dc0afe2f2f8 | ad715f9713dc5c6c570a5ac51a18b11932edf548 | /tensorflow/python/data/experimental/kernel_tests/optimization/optimization_test.py | bba70d76711ed5e3b8fd21ae0153cee7c9cc451c | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0",
"BSD-2-Clause"
]
| permissive | rockzhuang/tensorflow | f1f31bc8edfa402b748c500efb97473c001bac95 | cb40c060b36c6a75edfefbc4e5fc7ee720273e13 | refs/heads/master | 2022-11-08T20:41:36.735747 | 2022-10-21T01:45:52 | 2022-10-21T01:45:52 | 161,580,587 | 27 | 11 | Apache-2.0 | 2019-01-23T11:00:44 | 2018-12-13T03:47:28 | C++ | UTF-8 | Python | false | false | 10,986 | py | # Copyright 2018 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Tests for the static tf.data optimizations."""
import functools
from absl.testing import parameterized
import numpy as np
from tensorflow.python.data.experimental.ops import batching
from tensorflow.python.data.experimental.ops import grouping
from tensorflow.python.data.experimental.ops import scan_ops
from tensorflow.python.data.experimental.ops import testing
from tensorflow.python.data.kernel_tests import test_base
from tensorflow.python.data.ops import dataset_ops
from tensorflow.python.data.ops import options as options_lib
from tensorflow.python.framework import combinations
from tensorflow.python.framework import dtypes
from tensorflow.python.framework import errors
from tensorflow.python.framework import ops
from tensorflow.python.ops import array_ops
from tensorflow.python.ops import random_ops
from tensorflow.python.ops import variable_scope
from tensorflow.python.platform import test
def _captured_refvar_test_combinations():
def make_map_dataset(var):
return dataset_ops.Dataset.from_tensors(0).map(lambda x: x + var)
def make_flat_map_dataset(var):
return dataset_ops.Dataset.from_tensors(
0).flat_map(lambda _: dataset_ops.Dataset.from_tensors(var))
def make_filter_dataset(var):
return dataset_ops.Dataset.from_tensors(0).filter(lambda x: x < var)
def make_map_and_batch_dataset(var):
def map_fn(x):
return x + var
return dataset_ops.Dataset.from_tensors(0).apply(
batching.map_and_batch(map_fn, 1))
def make_group_by_reducer_dataset(var):
reducer = grouping.Reducer(
init_func=lambda _: 0,
reduce_func=lambda x, y: x,
finalize_func=lambda _: var)
return dataset_ops.Dataset.range(5).apply(
grouping.group_by_reducer(lambda x: x % 2, reducer))
def make_group_by_window_dataset(var):
def reduce_fn(key, bucket):
del key, bucket
return dataset_ops.Dataset.from_tensors(var)
return dataset_ops.Dataset.from_tensors(0).repeat(10).apply(
grouping.group_by_window(lambda _: 0, reduce_fn, 10))
def make_scan_dataset(var):
return dataset_ops.Dataset.from_tensors(0).apply(
scan_ops.scan(
0, lambda old_state, elem: (old_state + 1, elem + old_state + var)))
cases = [
# Core datasets
("Map", make_map_dataset),
("FlatMap", make_flat_map_dataset),
("Filter", make_filter_dataset),
# Experimental datasets
("MapAndBatch", make_map_and_batch_dataset),
("GroupByReducer", make_group_by_reducer_dataset),
("GroupByWindow", make_group_by_window_dataset),
("Scan", make_scan_dataset)
]
def reduce_fn(x, y):
name, dataset_fn = y
return x + combinations.combine(
dataset_fn=combinations.NamedObject(name, dataset_fn))
return functools.reduce(reduce_fn, cases, [])
class OptimizationTest(test_base.DatasetTestBase, parameterized.TestCase):
@combinations.generate(test_base.default_test_combinations())
def testOptimizationStatefulFunction(self):
dataset = dataset_ops.Dataset.range(
10).map(lambda _: random_ops.random_uniform([])).batch(10)
options = options_lib.Options()
options.experimental_optimization.apply_default_optimizations = False
dataset = dataset.with_options(options)
get_next = self.getNext(dataset)
self.evaluate(get_next())
# TODO(b/123354468)
@combinations.generate(test_base.graph_only_combinations())
def testOptimizationLargeInputFromTensor(self):
input_t = array_ops.placeholder(dtypes.int32, (None, None, None))
dataset = dataset_ops.Dataset.from_tensors(input_t)
options = options_lib.Options()
options.experimental_optimization.apply_default_optimizations = False
dataset = dataset.with_options(options)
iterator = dataset_ops.make_initializable_iterator(dataset)
init_op = iterator.initializer
get_next = iterator.get_next()
with self.cached_session() as sess:
sess.run(init_op, {input_t: np.ones([512, 1024, 1025], np.int32)})
self.evaluate(get_next)
# TODO(b/123354468)
@combinations.generate(test_base.graph_only_combinations())
def testOptimizationLargeInputFromTensorSlices(self):
input_t = array_ops.placeholder(dtypes.int32, (None, None, None, None))
dataset = dataset_ops.Dataset.from_tensor_slices(input_t)
options = options_lib.Options()
options.experimental_optimization.apply_default_optimizations = False
dataset = dataset.with_options(options)
iterator = dataset_ops.make_initializable_iterator(dataset)
init_op = iterator.initializer
get_next = iterator.get_next()
with self.cached_session() as sess:
sess.run(init_op, {input_t: np.ones([1, 512, 1024, 1025], np.int32)})
self.evaluate(get_next)
@combinations.generate(test_base.default_test_combinations())
def testOptimizationNestedDataset(self):
def flat_map_fn(_):
dataset = dataset_ops.Dataset.from_tensors(0)
dataset = dataset.apply(testing.assert_next(["MemoryCacheImpl"]))
dataset = dataset.skip(0) # Should be removed by noop elimination
dataset = dataset.cache()
return dataset
dataset = dataset_ops.Dataset.range(1)
dataset = dataset.flat_map(flat_map_fn)
options = options_lib.Options()
options.experimental_optimization.apply_default_optimizations = False
options.experimental_optimization.noop_elimination = True
dataset = dataset.with_options(options)
self.assertDatasetProduces(dataset, expected_output=[0])
@combinations.generate(test_base.default_test_combinations())
def testOptimizationNestedDatasetWithModifiedRetval(self):
def flat_map_fn(_):
dataset = dataset_ops.Dataset.from_tensors(0)
dataset = dataset.apply(testing.assert_next(["MapAndBatch"]))
# Should be fused by map and batch fusion
dataset = dataset.map(lambda x: x)
dataset = dataset.batch(1)
return dataset
dataset = dataset_ops.Dataset.range(1)
dataset = dataset.flat_map(flat_map_fn)
options = options_lib.Options()
options.experimental_optimization.apply_default_optimizations = False
options.experimental_optimization.map_and_batch_fusion = True
dataset = dataset.with_options(options)
self.assertDatasetProduces(dataset, expected_output=[[0]])
@combinations.generate(
combinations.times(
test_base.default_test_combinations(),
combinations.combine(autotune=[True, False, None]),
combinations.combine(map_parallelization=[True, False, None])))
def testOptimizationMapParallelization(self, autotune, map_parallelization):
dataset = dataset_ops.Dataset.range(5)
if autotune is not False and map_parallelization is not False: # pylint: disable=g-bool-id-comparison
dataset = dataset.apply(testing.assert_next(["ParallelMap"]))
else:
dataset = dataset.apply(testing.assert_next(["Map"]))
dataset = dataset.map(lambda x: x + 1)
options = options_lib.Options()
if autotune is not None:
options.autotune.enabled = autotune
if map_parallelization is not None:
options.experimental_optimization.map_parallelization = (
map_parallelization)
dataset = dataset.with_options(options)
self.assertDatasetProduces(dataset, expected_output=list(range(1, 6)))
@combinations.generate(
combinations.times(test_base.default_test_combinations(),
combinations.combine(existing_prefetch=[True, False]),
combinations.combine(autotune=[True, False]),
combinations.combine(inject_prefetch=[True, False])))
def testOptimizationInjectPrefetch(self, existing_prefetch, autotune,
inject_prefetch):
dataset = dataset_ops.Dataset.range(5)
dataset = dataset.map(
lambda x: x + 1, num_parallel_calls=dataset_ops.AUTOTUNE)
dataset = dataset.batch(1)
if existing_prefetch:
dataset = dataset.prefetch(1)
if autotune and inject_prefetch and not existing_prefetch:
dataset = dataset.apply(testing.assert_next(["Prefetch", "Root"]))
else:
dataset = dataset.apply(testing.assert_next(["Root"]))
options = options_lib.Options()
options.autotune.enabled = autotune
options.experimental_optimization.map_and_batch_fusion = False
if not inject_prefetch:
options.experimental_optimization.inject_prefetch = False
dataset = dataset.with_options(options)
self.assertDatasetProduces(dataset, expected_output=[np.array([x]) for x in
range(1, 6)])
# Reference variables are not supported in eager mode.
@combinations.generate(
combinations.times(test_base.graph_only_combinations(),
_captured_refvar_test_combinations()))
def testOptimizationWithCapturedRefVar(self, dataset_fn):
"""Tests that default optimizations are disabled with ref variables."""
variable = variable_scope.get_variable(
"v", initializer=0, use_resource=False)
assign_op = variable.assign_add(1)
unoptimized_dataset = dataset_fn(variable)
options = options_lib.Options()
options.experimental_optimization.apply_default_optimizations = False
options.experimental_optimization.noop_elimination = True
options.experimental_optimization.map_and_batch_fusion = True
optimized_dataset = unoptimized_dataset.with_options(options)
optimized_it = dataset_ops.make_initializable_iterator(optimized_dataset)
# Check that outputs are the same in the optimized and unoptimized cases,
# when the variable value is changing.
unoptimized_it = dataset_ops.make_initializable_iterator(
unoptimized_dataset)
with ops.control_dependencies([assign_op]):
unoptimized_output = unoptimized_it.get_next()
optimized_output = optimized_it.get_next()
self.evaluate(variable.initializer)
self.evaluate((unoptimized_it.initializer, optimized_it.initializer))
while True:
try:
unoptimized, optimized = self.evaluate((unoptimized_output,
optimized_output))
self.assertEqual(unoptimized, optimized)
except errors.OutOfRangeError:
break
if __name__ == "__main__":
test.main()
| [
"[email protected]"
]
| |
1b10619c4db7046649eca80fc0c3e8be0f29b2ff | a7d6807af3b8b67d0ac93b014d9a688d8d612539 | /graphs/create_adj_list.py | 46891842757d6888c5e7a1a1eb60009541c089d0 | []
| no_license | shehryarbajwa/Algorithms--Datastructures | 06a9f86bedbf40909011365cf169d5c77791b643 | cbd456e0db9ea6a542926015aeee4bd2ceff9ff9 | refs/heads/master | 2023-04-11T21:00:17.438588 | 2021-05-11T23:19:05 | 2021-05-11T23:19:05 | 193,496,161 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 734 | py | def create_adj_list(edges, amount_of_vertices):
graph = [[] for _ in range(amount_of_vertices)]
for u,v in edges:
graph[u].append(v)
graph[v].append(u)
return graph
def create_adj_matrix(edges, amount_of_vertices):
graph = [[None for _ in range(amount_of_vertices)] for _ in range(amount_of_vertices)]
for u,v in edges:
graph[u][v] = True
graph[v][u] = True
return graph
def num_edges(graph):
# running_sum = 0
# for edge in graph:
# running_sum += 1
# return running_sum
return sum(len(edge) for edge in graph)
print(create_adj_list([(0,1),(1,2),(0,2)],3))
print(create_adj_matrix([(0,1),(1,2),(0,2)],3))
print(num_edges([(0,1),(1,2),(0,2)])) | [
"[email protected]"
]
| |
75fffa40a111a6d5254ef7c1fc93cacb948170f8 | 711756b796d68035dc6a39060515200d1d37a274 | /output_cog/optimized_31059.py | 17e79cef3440cce45ce22e0e3a90e8ca544b4679 | []
| no_license | batxes/exocyst_scripts | 8b109c279c93dd68c1d55ed64ad3cca93e3c95ca | a6c487d5053b9b67db22c59865e4ef2417e53030 | refs/heads/master | 2020-06-16T20:16:24.840725 | 2016-11-30T16:23:16 | 2016-11-30T16:23:16 | 75,075,164 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 10,842 | py | import _surface
import chimera
try:
import chimera.runCommand
except:
pass
from VolumePath import markerset as ms
try:
from VolumePath import Marker_Set, Link
new_marker_set=Marker_Set
except:
from VolumePath import volume_path_dialog
d= volume_path_dialog(True)
new_marker_set= d.new_marker_set
marker_sets={}
surf_sets={}
if "Cog2_GFPN" not in marker_sets:
s=new_marker_set('Cog2_GFPN')
marker_sets["Cog2_GFPN"]=s
s= marker_sets["Cog2_GFPN"]
mark=s.place_marker((556.227, 579.162, 346.569), (0.89, 0.1, 0.1), 18.4716)
if "Cog2_0" not in marker_sets:
s=new_marker_set('Cog2_0')
marker_sets["Cog2_0"]=s
s= marker_sets["Cog2_0"]
mark=s.place_marker((580.027, 566.832, 407.689), (0.89, 0.1, 0.1), 17.1475)
if "Cog2_1" not in marker_sets:
s=new_marker_set('Cog2_1')
marker_sets["Cog2_1"]=s
s= marker_sets["Cog2_1"]
mark=s.place_marker((595.233, 543.93, 485.495), (0.89, 0.1, 0.1), 17.1475)
if "Cog2_GFPC" not in marker_sets:
s=new_marker_set('Cog2_GFPC')
marker_sets["Cog2_GFPC"]=s
s= marker_sets["Cog2_GFPC"]
mark=s.place_marker((499.902, 472.089, 412.099), (0.89, 0.1, 0.1), 18.4716)
if "Cog2_Anch" not in marker_sets:
s=new_marker_set('Cog2_Anch')
marker_sets["Cog2_Anch"]=s
s= marker_sets["Cog2_Anch"]
mark=s.place_marker((650.184, 533.797, 673.199), (0.89, 0.1, 0.1), 18.4716)
if "Cog3_GFPN" not in marker_sets:
s=new_marker_set('Cog3_GFPN')
marker_sets["Cog3_GFPN"]=s
s= marker_sets["Cog3_GFPN"]
mark=s.place_marker((561.491, 577.074, 392.605), (1, 1, 0), 18.4716)
if "Cog3_0" not in marker_sets:
s=new_marker_set('Cog3_0')
marker_sets["Cog3_0"]=s
s= marker_sets["Cog3_0"]
mark=s.place_marker((560.755, 577.72, 391.961), (1, 1, 0.2), 17.1475)
if "Cog3_1" not in marker_sets:
s=new_marker_set('Cog3_1')
marker_sets["Cog3_1"]=s
s= marker_sets["Cog3_1"]
mark=s.place_marker((538.82, 571.799, 408.652), (1, 1, 0.2), 17.1475)
if "Cog3_2" not in marker_sets:
s=new_marker_set('Cog3_2')
marker_sets["Cog3_2"]=s
s= marker_sets["Cog3_2"]
mark=s.place_marker((519.123, 581.137, 426.436), (1, 1, 0.2), 17.1475)
if "Cog3_3" not in marker_sets:
s=new_marker_set('Cog3_3')
marker_sets["Cog3_3"]=s
s= marker_sets["Cog3_3"]
mark=s.place_marker((491.028, 582.156, 427.524), (1, 1, 0.2), 17.1475)
if "Cog3_4" not in marker_sets:
s=new_marker_set('Cog3_4')
marker_sets["Cog3_4"]=s
s= marker_sets["Cog3_4"]
mark=s.place_marker((477.332, 604.501, 417.399), (1, 1, 0.2), 17.1475)
if "Cog3_5" not in marker_sets:
s=new_marker_set('Cog3_5')
marker_sets["Cog3_5"]=s
s= marker_sets["Cog3_5"]
mark=s.place_marker((484.083, 628.844, 405.252), (1, 1, 0.2), 17.1475)
if "Cog3_GFPC" not in marker_sets:
s=new_marker_set('Cog3_GFPC')
marker_sets["Cog3_GFPC"]=s
s= marker_sets["Cog3_GFPC"]
mark=s.place_marker((573.32, 581.782, 367.095), (1, 1, 0.4), 18.4716)
if "Cog3_Anch" not in marker_sets:
s=new_marker_set('Cog3_Anch')
marker_sets["Cog3_Anch"]=s
s= marker_sets["Cog3_Anch"]
mark=s.place_marker((401.368, 681.202, 444.553), (1, 1, 0.4), 18.4716)
if "Cog4_GFPN" not in marker_sets:
s=new_marker_set('Cog4_GFPN')
marker_sets["Cog4_GFPN"]=s
s= marker_sets["Cog4_GFPN"]
mark=s.place_marker((517.783, 644.929, 605.75), (0, 0, 0.8), 18.4716)
if "Cog4_0" not in marker_sets:
s=new_marker_set('Cog4_0')
marker_sets["Cog4_0"]=s
s= marker_sets["Cog4_0"]
mark=s.place_marker((517.783, 644.929, 605.75), (0, 0, 0.8), 17.1475)
if "Cog4_1" not in marker_sets:
s=new_marker_set('Cog4_1')
marker_sets["Cog4_1"]=s
s= marker_sets["Cog4_1"]
mark=s.place_marker((528.422, 633.84, 581.027), (0, 0, 0.8), 17.1475)
if "Cog4_2" not in marker_sets:
s=new_marker_set('Cog4_2')
marker_sets["Cog4_2"]=s
s= marker_sets["Cog4_2"]
mark=s.place_marker((538.198, 624.064, 555.577), (0, 0, 0.8), 17.1475)
if "Cog4_3" not in marker_sets:
s=new_marker_set('Cog4_3')
marker_sets["Cog4_3"]=s
s= marker_sets["Cog4_3"]
mark=s.place_marker((546.546, 617.121, 528.93), (0, 0, 0.8), 17.1475)
if "Cog4_4" not in marker_sets:
s=new_marker_set('Cog4_4')
marker_sets["Cog4_4"]=s
s= marker_sets["Cog4_4"]
mark=s.place_marker((554.758, 611.911, 502.116), (0, 0, 0.8), 17.1475)
if "Cog4_5" not in marker_sets:
s=new_marker_set('Cog4_5')
marker_sets["Cog4_5"]=s
s= marker_sets["Cog4_5"]
mark=s.place_marker((559.617, 602.539, 475.844), (0, 0, 0.8), 17.1475)
if "Cog4_6" not in marker_sets:
s=new_marker_set('Cog4_6')
marker_sets["Cog4_6"]=s
s= marker_sets["Cog4_6"]
mark=s.place_marker((565.826, 602.122, 448.454), (0, 0, 0.8), 17.1475)
if "Cog4_GFPC" not in marker_sets:
s=new_marker_set('Cog4_GFPC')
marker_sets["Cog4_GFPC"]=s
s= marker_sets["Cog4_GFPC"]
mark=s.place_marker((362.68, 662.516, 597.87), (0, 0, 0.8), 18.4716)
if "Cog4_Anch" not in marker_sets:
s=new_marker_set('Cog4_Anch')
marker_sets["Cog4_Anch"]=s
s= marker_sets["Cog4_Anch"]
mark=s.place_marker((769.647, 538.552, 302.63), (0, 0, 0.8), 18.4716)
if "Cog5_GFPN" not in marker_sets:
s=new_marker_set('Cog5_GFPN')
marker_sets["Cog5_GFPN"]=s
s= marker_sets["Cog5_GFPN"]
mark=s.place_marker((601.522, 590.816, 476.849), (0.3, 0.3, 0.3), 18.4716)
if "Cog5_0" not in marker_sets:
s=new_marker_set('Cog5_0')
marker_sets["Cog5_0"]=s
s= marker_sets["Cog5_0"]
mark=s.place_marker((601.522, 590.816, 476.849), (0.3, 0.3, 0.3), 17.1475)
if "Cog5_1" not in marker_sets:
s=new_marker_set('Cog5_1')
marker_sets["Cog5_1"]=s
s= marker_sets["Cog5_1"]
mark=s.place_marker((579.909, 573.781, 485.992), (0.3, 0.3, 0.3), 17.1475)
if "Cog5_2" not in marker_sets:
s=new_marker_set('Cog5_2')
marker_sets["Cog5_2"]=s
s= marker_sets["Cog5_2"]
mark=s.place_marker((563.451, 549.684, 484.496), (0.3, 0.3, 0.3), 17.1475)
if "Cog5_3" not in marker_sets:
s=new_marker_set('Cog5_3')
marker_sets["Cog5_3"]=s
s= marker_sets["Cog5_3"]
mark=s.place_marker((570.486, 522.412, 476.204), (0.3, 0.3, 0.3), 17.1475)
if "Cog5_GFPC" not in marker_sets:
s=new_marker_set('Cog5_GFPC')
marker_sets["Cog5_GFPC"]=s
s= marker_sets["Cog5_GFPC"]
mark=s.place_marker((545.922, 522.059, 353.142), (0.3, 0.3, 0.3), 18.4716)
if "Cog5_Anch" not in marker_sets:
s=new_marker_set('Cog5_Anch')
marker_sets["Cog5_Anch"]=s
s= marker_sets["Cog5_Anch"]
mark=s.place_marker((600.455, 513.149, 596.661), (0.3, 0.3, 0.3), 18.4716)
if "Cog6_GFPN" not in marker_sets:
s=new_marker_set('Cog6_GFPN')
marker_sets["Cog6_GFPN"]=s
s= marker_sets["Cog6_GFPN"]
mark=s.place_marker((563.384, 545.507, 397.988), (0.21, 0.49, 0.72), 18.4716)
if "Cog6_0" not in marker_sets:
s=new_marker_set('Cog6_0')
marker_sets["Cog6_0"]=s
s= marker_sets["Cog6_0"]
mark=s.place_marker((563.363, 545.468, 397.979), (0.21, 0.49, 0.72), 17.1475)
if "Cog6_1" not in marker_sets:
s=new_marker_set('Cog6_1')
marker_sets["Cog6_1"]=s
s= marker_sets["Cog6_1"]
mark=s.place_marker((536.988, 537.135, 400.854), (0.21, 0.49, 0.72), 17.1475)
if "Cog6_2" not in marker_sets:
s=new_marker_set('Cog6_2')
marker_sets["Cog6_2"]=s
s= marker_sets["Cog6_2"]
mark=s.place_marker((509.109, 538.007, 397.86), (0.21, 0.49, 0.72), 17.1475)
if "Cog6_3" not in marker_sets:
s=new_marker_set('Cog6_3')
marker_sets["Cog6_3"]=s
s= marker_sets["Cog6_3"]
mark=s.place_marker((499.08, 564.611, 396.021), (0.21, 0.49, 0.72), 17.1475)
if "Cog6_4" not in marker_sets:
s=new_marker_set('Cog6_4')
marker_sets["Cog6_4"]=s
s= marker_sets["Cog6_4"]
mark=s.place_marker((505.151, 592.783, 394.254), (0.21, 0.49, 0.72), 17.1475)
if "Cog6_5" not in marker_sets:
s=new_marker_set('Cog6_5')
marker_sets["Cog6_5"]=s
s= marker_sets["Cog6_5"]
mark=s.place_marker((514.955, 620.088, 395.13), (0.21, 0.49, 0.72), 17.1475)
if "Cog6_6" not in marker_sets:
s=new_marker_set('Cog6_6')
marker_sets["Cog6_6"]=s
s= marker_sets["Cog6_6"]
mark=s.place_marker((511.01, 647.533, 403.577), (0.21, 0.49, 0.72), 17.1475)
if "Cog6_GFPC" not in marker_sets:
s=new_marker_set('Cog6_GFPC')
marker_sets["Cog6_GFPC"]=s
s= marker_sets["Cog6_GFPC"]
mark=s.place_marker((595.256, 639.773, 414.377), (0.21, 0.49, 0.72), 18.4716)
if "Cog6_Anch" not in marker_sets:
s=new_marker_set('Cog6_Anch')
marker_sets["Cog6_Anch"]=s
s= marker_sets["Cog6_Anch"]
mark=s.place_marker((423.904, 655.559, 395.424), (0.21, 0.49, 0.72), 18.4716)
if "Cog7_GFPN" not in marker_sets:
s=new_marker_set('Cog7_GFPN')
marker_sets["Cog7_GFPN"]=s
s= marker_sets["Cog7_GFPN"]
mark=s.place_marker((625.146, 604.894, 419.111), (0.7, 0.7, 0.7), 18.4716)
if "Cog7_0" not in marker_sets:
s=new_marker_set('Cog7_0')
marker_sets["Cog7_0"]=s
s= marker_sets["Cog7_0"]
mark=s.place_marker((612.261, 583.803, 425.383), (0.7, 0.7, 0.7), 17.1475)
if "Cog7_1" not in marker_sets:
s=new_marker_set('Cog7_1')
marker_sets["Cog7_1"]=s
s= marker_sets["Cog7_1"]
mark=s.place_marker((582.932, 536.994, 440.556), (0.7, 0.7, 0.7), 17.1475)
if "Cog7_2" not in marker_sets:
s=new_marker_set('Cog7_2')
marker_sets["Cog7_2"]=s
s= marker_sets["Cog7_2"]
mark=s.place_marker((553.212, 489.403, 455.238), (0.7, 0.7, 0.7), 17.1475)
if "Cog7_GFPC" not in marker_sets:
s=new_marker_set('Cog7_GFPC')
marker_sets["Cog7_GFPC"]=s
s= marker_sets["Cog7_GFPC"]
mark=s.place_marker((568.434, 467.24, 378.12), (0.7, 0.7, 0.7), 18.4716)
if "Cog7_Anch" not in marker_sets:
s=new_marker_set('Cog7_Anch')
marker_sets["Cog7_Anch"]=s
s= marker_sets["Cog7_Anch"]
mark=s.place_marker((501.281, 441.109, 532.012), (0.7, 0.7, 0.7), 18.4716)
if "Cog8_0" not in marker_sets:
s=new_marker_set('Cog8_0')
marker_sets["Cog8_0"]=s
s= marker_sets["Cog8_0"]
mark=s.place_marker((569.032, 516.287, 417.251), (1, 0.5, 0), 17.1475)
if "Cog8_1" not in marker_sets:
s=new_marker_set('Cog8_1')
marker_sets["Cog8_1"]=s
s= marker_sets["Cog8_1"]
mark=s.place_marker((581.675, 502.965, 438.944), (1, 0.5, 0), 17.1475)
if "Cog8_2" not in marker_sets:
s=new_marker_set('Cog8_2')
marker_sets["Cog8_2"]=s
s= marker_sets["Cog8_2"]
mark=s.place_marker((586.385, 491.601, 464.459), (1, 0.5, 0), 17.1475)
if "Cog8_3" not in marker_sets:
s=new_marker_set('Cog8_3')
marker_sets["Cog8_3"]=s
s= marker_sets["Cog8_3"]
mark=s.place_marker((595.726, 486.136, 490.536), (1, 0.5, 0), 17.1475)
if "Cog8_4" not in marker_sets:
s=new_marker_set('Cog8_4')
marker_sets["Cog8_4"]=s
s= marker_sets["Cog8_4"]
mark=s.place_marker((616.809, 504.441, 489.617), (1, 0.5, 0), 17.1475)
if "Cog8_5" not in marker_sets:
s=new_marker_set('Cog8_5')
marker_sets["Cog8_5"]=s
s= marker_sets["Cog8_5"]
mark=s.place_marker((635.397, 524.041, 482.832), (1, 0.5, 0), 17.1475)
if "Cog8_GFPC" not in marker_sets:
s=new_marker_set('Cog8_GFPC')
marker_sets["Cog8_GFPC"]=s
s= marker_sets["Cog8_GFPC"]
mark=s.place_marker((602.35, 559.943, 417.847), (1, 0.6, 0.1), 18.4716)
if "Cog8_Anch" not in marker_sets:
s=new_marker_set('Cog8_Anch')
marker_sets["Cog8_Anch"]=s
s= marker_sets["Cog8_Anch"]
mark=s.place_marker((667.147, 487.057, 548.033), (1, 0.6, 0.1), 18.4716)
for k in surf_sets.keys():
chimera.openModels.add([surf_sets[k]])
| [
"[email protected]"
]
| |
a0c5fee17f2a900bdabde9b78064baad397e371c | e6f45fba3f8c6b6fba07f51e6cf3ae848e711551 | /center_three/voice_label/voice_quality/test_regex.py | a9a58680a6e3da39099c5c611f31ae81b35feda5 | []
| no_license | yangwen1997/ASR | c0a49de2bcde7fe0a8806d4b7c1d2f2faeda0c70 | 8d8691f74646a1f66573ecbeaf022911f8363b55 | refs/heads/master | 2022-12-07T14:36:20.842942 | 2020-09-08T02:34:31 | 2020-09-08T02:34:31 | 293,677,799 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 7,503 | py | # !/usr/bin/env Python3
# -*- coding: utf-8 -*-
# @Author : wangchen
# @FILE : run.py
# @Time : 2020/7/13 20:55
# @Software : PyCharm
import os
import sys
sys.path.append(os.environ['PUSHPATH'])
from center_three.voice_label.voice_quality.data_processing_addfunc import Data_Processing
from center_three.voice_label.utils import Insert_Into_Mysql, table_data, Read_From_Mysql
from center_three.voice_label.config import *
import pymysql
import time
import warnings
warnings.filterwarnings("ignore")
from datetime import datetime
import numpy as np
import pandas as pd
def pids():
read = Read_From_Mysql()
pids_df_1 = read.select_from_table(insert_database, "select distinct pid from q_yt_lable_result_202008")
pids_df_2 = read.select_from_table(call_createtime_database, "select distinct pid from asr_list_202008")
pids_df = pd.concat([pids_df_1, pids_df_2], axis=0)
pids_df.columns = ["pids"]
pids_df.drop_duplicates(inplace=True)
pids_df.reset_index(drop=True, inplace=True)
import random
pid_index = random.sample(set(pids_df.index), int(np.round(len(pids_df) / 20)))
pids = pids_df.iloc[pid_index, :]
pids = set(pids.pids)
del read
return pids
def test_main(pid, timestamp, type_code):
insert_func = Insert_Into_Mysql(host='106.12.108.97',
user ='root',
password ="80390cb1a66549e1",
port =3306)
data_process = Data_Processing()
data_process_debug = Data_Processing()
data_process_debug.read = Read_From_Mysql(host='106.12.108.97',
user ='root',
password ="80390cb1a66549e1",
port =3306)
start = time.time()
try:
print("======================================我要开始提取语音标签了,pid:%s===================================="%pid)
text_data = data_process.get_text_data(pid, timestamp)
regex_df = data_process_debug.get_rex_df(type_code) # 商务客户的正则
customer_regex_df = data_process_debug.get_customer_regex_df(type_code) # 获取提取客户文本正则的df
if len(regex_df) == 0:
print("label库里没有数据")
elif len(text_data) == 0:
print("没有通话数据")
elif len(customer_regex_df) == 0:
print("客户文本正则没有数据")
else:
# TODO ==================================根据商务客户对话提取标签==================================
print("====================我要根据商务客户对话提取标签================")
match_all_df, match_key_df, no_match_df = data_process.match_regex(text_data, regex_df)
res_table_name = Res_Table.format(table_data(timestamp))
unmatch_table_name = Unmatch_Table.format(table_data(timestamp))
if len(match_all_df) != 0:
insert_func.flush_hosts(Res_Data_Base)
try:
insert_func.insert_data_multi(match_all_df, Res_Data_Base, res_table_name)
print("存入匹配数据")
except pymysql.ProgrammingError:
insert_func.create_table(Res_Data_Base, res_table_name)
insert_func.insert_data_multi(match_all_df, Res_Data_Base, res_table_name)
print("建表{}存入匹配数据".format(res_table_name), data_process.table_data(time.time()))
if len(match_key_df) != 0:
insert_func.flush_hosts(Res_Data_Base)
try:
insert_func.insert_data_multi(match_key_df, Res_Data_Base,unmatch_table_name)
print("存入未匹value配数据")
except pymysql.ProgrammingError:
insert_func.create_table(Res_Data_Base, unmatch_table_name)
insert_func.insert_data_multi(match_key_df, Res_Data_Base, unmatch_table_name)
print("建表{}存入未匹配数据".format(unmatch_table_name), data_process.table_data(time.time()))
if len(no_match_df) != 0:
insert_func.flush_hosts(Res_Data_Base)
try:
insert_func.insert_data_multi(no_match_df, Res_Data_Base, unmatch_table_name)
print("存入未匹配数据")
except pymysql.ProgrammingError:
insert_func.create_table(Res_Data_Base, unmatch_table_name)
insert_func.insert_data_multi(no_match_df, Res_Data_Base, unmatch_table_name)
print("建表{}存入匹配数据".format(unmatch_table_name), data_process.table_data(time.time()))
print("====================我要根据客户文本提取标签================")
# customer_regex_df = data_process.get_customer_regex_df(type_code) # 获取客户正则的df
customer_match_all_df, customer_no_match_df, customer_result = data_process_debug.match_customer_label(text_data, customer_regex_df, pid, timestamp)
customer_res_table_name = Customer_Res_Table.format(table_data(timestamp))
# print("匹配成功的表,表名:%s"%customer_res_table_name)
customer_unmatch_table_name = Customer_Unmatch_Table.format(table_data(timestamp))
# print("未匹配成功的表,表名:%s" %customer_unmatch_table_name)
if len(customer_match_all_df) != 0:
insert_func.flush_hosts(Res_Data_Base)
try:
insert_func.insert_data_multi(customer_match_all_df, Res_Data_Base, customer_res_table_name)
print("存入匹配数据")
except pymysql.ProgrammingError:
print("没有匹配成功结果表,需要自己建表")
# print(customer_res_table_name)
insert_func.create_customer_label_table(Res_Data_Base, customer_res_table_name)
insert_func.insert_data_multi(customer_match_all_df, Res_Data_Base, customer_res_table_name)
print("建表{}存入匹配数据".format(customer_res_table_name), data_process.table_data(time.time()))
if len(customer_no_match_df) != 0:
insert_func.flush_hosts(Res_Data_Base)
try:
insert_func.insert_data_multi(customer_no_match_df, Res_Data_Base, customer_unmatch_table_name)
print("存入匹配数据")
except pymysql.ProgrammingError:
print("没有匹配未成功结果表,需要自己建表")
insert_func.create_customer_label_table(Res_Data_Base, customer_unmatch_table_name)
insert_func.insert_data_multi(customer_no_match_df, Res_Data_Base, customer_unmatch_table_name)
print("建表{}存入匹配数据".format(customer_unmatch_table_name), data_process.table_data(time.time()))
except Exception as e:
print(e)
finally:
print("耗时", time.time()-start)
del insert_func
del data_process
del data_process_debug
def now_data(timestamp):
"""
:param timestamp: 时间戳
:return: 年月 (格式)->2020-07-01 10:10:10
"""
dt = datetime.fromtimestamp(int(timestamp))
date = dt.strftime('%Y-%m-%d %H:%M:%S').strip()
return date
def run():
pid_set = pids()
timestamp = time.time()
type_code = ""
for pis in pid_set:
test_main(pis,timestamp,type_code)
if __name__ == '__main__':
run()
| [
"[email protected]"
]
| |
faf34fd6b3c2704e4a6a1710e4d5c16d9fafcb1b | 53fab060fa262e5d5026e0807d93c75fb81e67b9 | /backup/user_322/ch73_2019_04_06_21_23_14_306424.py | a879897561f7b920a0c6251106cdf3d6805deb08 | []
| no_license | gabriellaec/desoft-analise-exercicios | b77c6999424c5ce7e44086a12589a0ad43d6adca | 01940ab0897aa6005764fc220b900e4d6161d36b | refs/heads/main | 2023-01-31T17:19:42.050628 | 2020-12-16T05:21:31 | 2020-12-16T05:21:31 | 306,735,108 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 195 | py | def remove_vogais(n):
lista = []
vogais = ["a", "e", "i", "o", "u"]
for i in n:
if i not in vogais:
lista.append(i)
lista = "".join(lista)
return lista | [
"[email protected]"
]
| |
6e1173e136811e0d667fdb4de6e48847d65e0fed | d73409535734a788af83a9b2b2e32dd1b979d5d2 | /proxySTAR_V3/certbot/venv.1509389747.bak/lib/python2.7/site-packages/twine/repository.py | 7aeebcd2feec22f9e35f8ee11a1c85cd6c2ed485 | [
"Apache-2.0",
"MIT"
]
| permissive | mami-project/lurk | adff1fb86cb3e478fe1ded4cbafa6a1e0b93bfdd | 98c293251e9b1e9c9a4b02789486c5ddaf46ba3c | refs/heads/master | 2022-11-02T07:28:22.708152 | 2019-08-24T19:28:58 | 2019-08-24T19:28:58 | 88,050,138 | 2 | 2 | NOASSERTION | 2022-10-22T15:46:11 | 2017-04-12T12:38:33 | Python | UTF-8 | Python | false | false | 7,083 | py | # Copyright 2015 Ian Cordasco
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import absolute_import, unicode_literals, print_function
from tqdm import tqdm
import requests
from requests import adapters
from requests import codes
from requests.packages.urllib3 import util
from requests_toolbelt.multipart import (
MultipartEncoder, MultipartEncoderMonitor
)
from requests_toolbelt.utils import user_agent
import twine
KEYWORDS_TO_NOT_FLATTEN = set(["gpg_signature", "content"])
LEGACY_PYPI = 'https://pypi.python.org/'
WAREHOUSE = 'https://upload.pypi.org/'
OLD_WAREHOUSE = 'https://upload.pypi.io/'
class ProgressBar(tqdm):
def update_to(self, n):
"""Update the bar in the way compatible with requests-toolbelt.
This is identical to tqdm.update, except ``n`` will be the current
value - not the delta as tqdm expects.
"""
self.update(n - self.n)
class Repository(object):
def __init__(self, repository_url, username, password):
self.url = repository_url
self.session = requests.session()
self.session.auth = (username, password)
self.session.headers['User-Agent'] = self._make_user_agent_string()
for scheme in ('http://', 'https://'):
self.session.mount(scheme, self._make_adapter_with_retries())
self._releases_json_data = {}
@staticmethod
def _make_adapter_with_retries():
retry = util.Retry(
connect=5,
total=10,
method_whitelist=['GET'],
status_forcelist=[500, 501, 502, 503],
)
return adapters.HTTPAdapter(max_retries=retry)
@staticmethod
def _make_user_agent_string():
from twine import cli
dependencies = cli.list_dependencies_and_versions()
return user_agent.UserAgentBuilder(
'twine', twine.__version__,
).include_extras(
dependencies
).include_implementation().build()
def close(self):
self.session.close()
@staticmethod
def _convert_data_to_list_of_tuples(data):
data_to_send = []
for key, value in data.items():
if (key in KEYWORDS_TO_NOT_FLATTEN or
not isinstance(value, (list, tuple))):
data_to_send.append((key, value))
else:
for item in value:
data_to_send.append((key, item))
return data_to_send
def set_certificate_authority(self, cacert):
if cacert:
self.session.verify = cacert
def set_client_certificate(self, clientcert):
if clientcert:
self.session.cert = clientcert
def register(self, package):
data = package.metadata_dictionary()
data.update({
":action": "submit",
"protocol_version": "1",
})
print("Registering {0}".format(package.basefilename))
data_to_send = self._convert_data_to_list_of_tuples(data)
encoder = MultipartEncoder(data_to_send)
resp = self.session.post(
self.url,
data=encoder,
allow_redirects=False,
headers={'Content-Type': encoder.content_type},
)
# Bug 28. Try to silence a ResourceWarning by releasing the socket.
resp.close()
return resp
def _upload(self, package):
data = package.metadata_dictionary()
data.update({
# action
":action": "file_upload",
"protcol_version": "1",
})
data_to_send = self._convert_data_to_list_of_tuples(data)
print("Uploading {0}".format(package.basefilename))
with open(package.filename, "rb") as fp:
data_to_send.append((
"content",
(package.basefilename, fp, "application/octet-stream"),
))
encoder = MultipartEncoder(data_to_send)
with ProgressBar(total=encoder.len, unit='bytes',
unit_scale=True, leave=False) as bar:
monitor = MultipartEncoderMonitor(
encoder, lambda monitor: bar.update_to(monitor.bytes_read)
)
resp = self.session.post(
self.url,
data=monitor,
allow_redirects=False,
headers={'Content-Type': monitor.content_type},
)
return resp
def upload(self, package, max_redirects=5):
number_of_redirects = 0
while number_of_redirects < max_redirects:
resp = self._upload(package)
if resp.status_code == codes.OK:
return resp
if 500 <= resp.status_code < 600:
number_of_redirects += 1
print('Received "{status_code}: {reason}" Package upload '
'appears to have failed. Retry {retry} of 5'.format(
status_code=resp.status_code,
reason=resp.reason,
retry=number_of_redirects,
))
else:
return resp
return resp
def package_is_uploaded(self, package, bypass_cache=False):
# NOTE(sigmavirus24): Not all indices are PyPI and pypi.io doesn't
# have a similar interface for finding the package versions.
if not self.url.startswith((LEGACY_PYPI, WAREHOUSE, OLD_WAREHOUSE)):
return False
safe_name = package.safe_name
releases = None
if not bypass_cache:
releases = self._releases_json_data.get(safe_name)
if releases is None:
url = '{url}pypi/{package}/json'.format(package=safe_name,
url=LEGACY_PYPI)
headers = {'Accept': 'application/json'}
response = self.session.get(url, headers=headers)
if response.status_code == 200:
releases = response.json()['releases']
else:
releases = {}
self._releases_json_data[safe_name] = releases
packages = releases.get(package.metadata.version, [])
for uploaded_package in packages:
if uploaded_package['filename'] == package.basefilename:
return True
return False
def verify_package_integrity(self, package):
# TODO(sigmavirus24): Add a way for users to download the package and
# check it's hash against what it has locally.
pass
| [
"[email protected]"
]
| |
b481e3398e8eb866427b653cbdc85ab99eef4ee6 | 9f42a017eee2cacb18c6bf3bbea23932f2c49cf1 | /mogoksayadaw/mogoksaydaw/raw_html.py | 416b115d78383c2892b646502414a674923c05bf | []
| no_license | saisai/dhamma-upload | df78e3aa82b306056ce248c664e3919fc5ad3bf4 | 03f1071a27f69b760c78fe7292f1a5921fec3e9d | refs/heads/master | 2020-04-05T10:42:11.144533 | 2020-03-14T07:03:36 | 2020-03-14T07:03:36 | 156,807,037 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 4,463,331 | py | from bs4 import BeautifulSoup
html = """
<div id="contents" class="style-scope ytd-playlist-video-list-renderer"><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">1</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=OiWhB7J-UA4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=2">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=OiWhB7J-UA4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=2">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/OiWhB7J-UA4/hqdefault.jpg?sqp=-oaymwEZCPYBEIoBSFXyq4qpAwsIARUAAIhCGAFwAQ==&rs=AOn4CLBzOrjTcu3X9SC71ezN1HCnQ5sEgQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁။ သုဘဒ္ရဟန္း ဥပမာျပ၊ သခၤါရတရားေတာ္ ေခ်ာင္(၁၆)ေခ်ာင္ ခိုတတ္ပံု (၁၆-၃-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 119 views" title="၁။ သုဘဒ္ရဟန္း ဥပမာျပ၊ သခၤါရတရားေတာ္ ေခ်ာင္(၁၆)ေခ်ာင္ ခိုတတ္ပံု (၁၆-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁။ သုဘဒ္ရဟန္း ဥပမာျပ၊ သခၤါရတရားေတာ္ ေခ်ာင္(၁၆)ေခ်ာင္ ခိုတတ္ပံု (၁၆-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">2</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=LZvSQDfpNNU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=3">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=LZvSQDfpNNU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=3">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/LZvSQDfpNNU/hqdefault.jpg?sqp=-oaymwEZCPYBEIoBSFXyq4qpAwsIARUAAIhCGAFwAQ==&rs=AOn4CLB4uUHYS4JyOCOyLonUV6xR9eBghQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:12
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၂။ သတိႏွင့္ဆား ဥပမာျပ (၂၅-၁-၁၉၅၅) by mogok sayadaw 1 year ago 53 minutes 178 views" title="၂။ သတိႏွင့္ဆား ဥပမာျပ (၂၅-၁-၁၉၅၅)" style="font-family: ZawGyi-One !important;">
၂။ သတိႏွင့္ဆား ဥပမာျပ (၂၅-၁-၁၉၅၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">3</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=y3oQUTgRQ24&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=4">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=y3oQUTgRQ24&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=4">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/y3oQUTgRQ24/hqdefault.jpg?sqp=-oaymwEZCPYBEIoBSFXyq4qpAwsIARUAAIhCGAFwAQ==&rs=AOn4CLDogPUxm8LkHcHI7vKBGJyS7Gxgeg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၃။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမးေျဖ (၂၉-၁-၁၉၅၅) by mogok sayadaw 1 year ago 56 minutes 38 views" title="၃။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမးေျဖ (၂၉-၁-၁၉၅၅)" style="font-family: ZawGyi-One !important;">
၃။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမးေျဖ (၂၉-၁-၁၉၅၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">4</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WTCiCXK0yUw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=5">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WTCiCXK0yUw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=5">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/WTCiCXK0yUw/hqdefault.jpg?sqp=-oaymwEZCPYBEIoBSFXyq4qpAwsIARUAAIhCGAFwAQ==&rs=AOn4CLBR6OEFet_BHY_LhOvjBEcg5UwDXw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၄။ တရားအားထုတ္ေသာ ပုဂၢိဳလ္တို႔သည္ လိပ္ကဲ့သို႔ က်င့္ရမည္ (၈-၁၀-၁၉၅၆) by mogok sayadaw 1 year ago 1 hour 32 views" title="၄။ တရားအားထုတ္ေသာ ပုဂၢိဳလ္တို႔သည္ လိပ္ကဲ့သို႔ က်င့္ရမည္ (၈-၁၀-၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၄။ တရားအားထုတ္ေသာ ပုဂၢိဳလ္တို႔သည္ လိပ္ကဲ့သို႔ က်င့္ရမည္ (၈-၁၀-၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">5</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=84OD3MRhDE4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=6">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=84OD3MRhDE4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=6">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/84OD3MRhDE4/hqdefault.jpg?sqp=-oaymwEZCPYBEIoBSFXyq4qpAwsIARUAAIhCGAFwAQ==&rs=AOn4CLDxNaHioE3nWOYU13XNePkHrOSNnw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၅။ ေဇာတိက ဥပမာျပ (၁၁-၁၀-၁၉၅၆) by mogok sayadaw 1 year ago 58 minutes 138 views" title="၅။ ေဇာတိက ဥပမာျပ (၁၁-၁၀-၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၅။ ေဇာတိက ဥပမာျပ (၁၁-၁၀-၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">6</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2O7tRUqiCio&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=7">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2O7tRUqiCio&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=7">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/2O7tRUqiCio/hqdefault.jpg?sqp=-oaymwEZCPYBEIoBSFXyq4qpAwsIARUAAIhCGAFwAQ==&rs=AOn4CLC5LG7G22unuH7206CFrQZ0rBqZig"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၆။ ၀ိပႆနာရွဳေသာ ပုဂၢိဳလ္တို႔၏ မွတ္တိုင္တရား (၁၂-၁၁-၁၉၅၆) by mogok sayadaw 1 year ago 52 minutes 41 views" title="၆။ ၀ိပႆနာရွဳေသာ ပုဂၢိဳလ္တို႔၏ မွတ္တိုင္တရား (၁၂-၁၁-၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၆။ ၀ိပႆနာရွဳေသာ ပုဂၢိဳလ္တို႔၏ မွတ္တိုင္တရား (၁၂-၁၁-၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">7</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=O-lVwRg-kZs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=8">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=O-lVwRg-kZs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=8">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/O-lVwRg-kZs/hqdefault.jpg?sqp=-oaymwEZCPYBEIoBSFXyq4qpAwsIARUAAIhCGAFwAQ==&rs=AOn4CLCkgMAi4vk245RSwVc_qh5_tYkGxg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 10 minutes">
1:10:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၇။ ယမကရဟန္း ဥပမာျပ (၁၆-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 10 minutes 19 views" title="၇။ ယမကရဟန္း ဥပမာျပ (၁၆-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၇။ ယမကရဟန္း ဥပမာျပ (၁၆-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">8</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=X9EdF8mR2g4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=9">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=X9EdF8mR2g4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=9">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/X9EdF8mR2g4/hqdefault.jpg?sqp=-oaymwEZCPYBEIoBSFXyq4qpAwsIARUAAIhCGAFwAQ==&rs=AOn4CLAjE58Ftvjq0DiYKRLpT2WRXT1Mjw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၈။ ေဇာ(၇)ၾကိမ္ တရားေတာ္ (၁၀-၇-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour 41 views" title="၈။ ေဇာ(၇)ၾကိမ္ တရားေတာ္ (၁၀-၇-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၈။ ေဇာ(၇)ၾကိမ္ တရားေတာ္ (၁၀-၇-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">9</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=FBzorFoOUss&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=10">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=FBzorFoOUss&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=10">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/FBzorFoOUss/hqdefault.jpg?sqp=-oaymwEZCPYBEIoBSFXyq4qpAwsIARUAAIhCGAFwAQ==&rs=AOn4CLDarj0433WsyJRgPDpsB25o_iTipA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၉။ ပဋိစၥသမုပၸါဒ္ အႏုေလာမ၊ ပဋိေလာမနည္းျဖင့္ ဒုကၡသစၥာဆိုက္ပံုတရားေတာ္ (၁၀-၈-၁၉၅၈) by mogok sayadaw 1 year ago 54 minutes 105 views" title="၉။ ပဋိစၥသမုပၸါဒ္ အႏုေလာမ၊ ပဋိေလာမနည္းျဖင့္ ဒုကၡသစၥာဆိုက္ပံုတရားေတာ္ (၁၀-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၉။ ပဋိစၥသမုပၸါဒ္ အႏုေလာမ၊ ပဋိေလာမနည္းျဖင့္ ဒုကၡသစၥာဆိုက္ပံုတရားေတာ္ (၁၀-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">10</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=w9ZWnycKsS0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=11">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=w9ZWnycKsS0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=11">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/w9ZWnycKsS0/hqdefault.jpg?sqp=-oaymwEZCPYBEIoBSFXyq4qpAwsIARUAAIhCGAFwAQ==&rs=AOn4CLAkEEXRT-1TLDXdg3S6usPQqpauLg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁၀။ အ၀ိဇၨာလက္ေအာက္ခံ သခၤါရသံုးမ်ိဳး တရားေတာ္ (၁၂-၈-၁၉၅၈) by mogok sayadaw 1 year ago 50 minutes 24 views" title="၁၀။ အ၀ိဇၨာလက္ေအာက္ခံ သခၤါရသံုးမ်ိဳး တရားေတာ္ (၁၂-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၁၀။ အ၀ိဇၨာလက္ေအာက္ခံ သခၤါရသံုးမ်ိဳး တရားေတာ္ (၁၂-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">11</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WQ3qzR1oqK4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=12">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WQ3qzR1oqK4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=12">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/WQ3qzR1oqK4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLALYOGrZC499zuD0f2fcodOUmgFMg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁၁။ ခႏၶာကိုယ္ေစခိုင္း၍ နိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၁၃-၈-၁၉၅၈) by mogok sayadaw 1 year ago 58 minutes 43 views" title="၁၁။ ခႏၶာကိုယ္ေစခိုင္း၍ နိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၁၃-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၁၁။ ခႏၶာကိုယ္ေစခိုင္း၍ နိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၁၃-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">12</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KPQDajP-okw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=13">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KPQDajP-okw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=13">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/KPQDajP-okw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD0vTnBoA2zAwtZmotU305l-1y8gw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁၂။ အဓိပတိသံုးပါးထား၍ အားထုတ္ရန္ႏွင့္ ေ၀ဒနာႏွင့္တဏွာၾကား နိဗၺာန္ရွာပံု (၁၃-၈-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour 21 views" title="၁၂။ အဓိပတိသံုးပါးထား၍ အားထုတ္ရန္ႏွင့္ ေ၀ဒနာႏွင့္တဏွာၾကား နိဗၺာန္ရွာပံု (၁၃-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၁၂။ အဓိပတိသံုးပါးထား၍ အားထုတ္ရန္ႏွင့္ ေ၀ဒနာႏွင့္တဏွာၾကား နိဗၺာန္ရွာပံု (၁၃-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">13</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=8RHRZeaK2P8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=14">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=8RHRZeaK2P8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=14">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/8RHRZeaK2P8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA1s0NwtmMMpBpiR5Wd4VBAoPv5Vw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁၃။ ကံ ေစတနာ ကမၼ၀ါဒီ သႆတဒိ႒ိပယ္ပံု (၂၅-၁၁-၁၉၅၉) by mogok sayadaw 1 year ago 56 minutes 14 views" title="၁၃။ ကံ ေစတနာ ကမၼ၀ါဒီ သႆတဒိ႒ိပယ္ပံု (၂၅-၁၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၁၃။ ကံ ေစတနာ ကမၼ၀ါဒီ သႆတဒိ႒ိပယ္ပံု (၂၅-၁၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">14</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=R3inT8detO8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=15">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=R3inT8detO8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=15">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/R3inT8detO8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDZgl00b-1a-IwbRuQRZ1WpVanSJQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁၄။ ဂီလာနရဟန္းအား ေ၀ဒနာျပ၍ ေဟာၾကားပံု တရားေတာ္ (၂၈-၁၁-၁၉၅၉) by mogok sayadaw 1 year ago 57 minutes 11 views" title="၁၄။ ဂီလာနရဟန္းအား ေ၀ဒနာျပ၍ ေဟာၾကားပံု တရားေတာ္ (၂၈-၁၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၁၄။ ဂီလာနရဟန္းအား ေ၀ဒနာျပ၍ ေဟာၾကားပံု တရားေတာ္ (၂၈-၁၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">15</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=q1gkQB6MKHM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=16">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=q1gkQB6MKHM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=16">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/q1gkQB6MKHM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB0LxBze4gkuGs0IJQPxQUn1Rd1pQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁၅။ အ၀ိဇၨာ တဏွာ ႏွစ္ဘက္တန္းေနပံုတရား (၂၉-၁၁-၁၉၅၉) by mogok sayadaw 1 year ago 53 minutes 26 views" title="၁၅။ အ၀ိဇၨာ တဏွာ ႏွစ္ဘက္တန္းေနပံုတရား (၂၉-၁၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၁၅။ အ၀ိဇၨာ တဏွာ ႏွစ္ဘက္တန္းေနပံုတရား (၂၉-၁၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">16</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=FTYLUyCfUd8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=17">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=FTYLUyCfUd8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=17">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/FTYLUyCfUd8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA1M2OL_MWQIyiwIedv3VU4SiKp3Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁၆။ တဏွာအပ္ခ်ဳပ္သမား ဥပမာျပ(၁) (၃၀-၁၁-၁၉၅၉) by mogok sayadaw 1 year ago 52 minutes 16 views" title="၁၆။ တဏွာအပ္ခ်ဳပ္သမား ဥပမာျပ(၁) (၃၀-၁၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၁၆။ တဏွာအပ္ခ်ဳပ္သမား ဥပမာျပ(၁) (၃၀-၁၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">17</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=j6-_wL_D0eQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=18">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=j6-_wL_D0eQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=18">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/j6-_wL_D0eQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDR7vGmHR9AtxhPK7M8QEh11-aIng"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁၇။ တဏွာအပ္ခ်ဳပ္သမား ဥပမာျပ(၂) (၁-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 53 minutes 8 views" title="၁၇။ တဏွာအပ္ခ်ဳပ္သမား ဥပမာျပ(၂) (၁-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၁၇။ တဏွာအပ္ခ်ဳပ္သမား ဥပမာျပ(၂) (၁-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">18</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Tz9rpwJHzUE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=19">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Tz9rpwJHzUE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=19">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Tz9rpwJHzUE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC-Grl4P_Dxod1b1JPwNMp9Cz5rww"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁၈။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား မီးအလင္းျဖင့္ ဥပမာျပပံု (၂-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 59 minutes 6 views" title="၁၈။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား မီးအလင္းျဖင့္ ဥပမာျပပံု (၂-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၁၈။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား မီးအလင္းျဖင့္ ဥပမာျပပံု (၂-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">19</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Cs7UhXbmn40&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=20">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Cs7UhXbmn40&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=20">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Cs7UhXbmn40/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBfIpZwroKkJ-FtjNzz1fXTEM-X3Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁၉။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား သစ္ပင္ျဖင့္ ဥပမာျပပံု (၃-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 55 minutes 10 views" title="၁၉။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား သစ္ပင္ျဖင့္ ဥပမာျပပံု (၃-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၁၉။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား သစ္ပင္ျဖင့္ ဥပမာျပပံု (၃-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">20</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=SjyKf6gOW4Q&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=21">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=SjyKf6gOW4Q&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=21">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/SjyKf6gOW4Q/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBbO_T9WfR3p9ioMaTi_2jcc172Rw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၂၀။ အာသေ၀ါတရား ေလးပါးတရားေတာ္ (၄-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 52 minutes 14 views" title="၂၀။ အာသေ၀ါတရား ေလးပါးတရားေတာ္ (၄-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၂၀။ အာသေ၀ါတရား ေလးပါးတရားေတာ္ (၄-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">21</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=PgUzUnc6PgI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=22">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=PgUzUnc6PgI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=22">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/PgUzUnc6PgI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDqB0MdAoBL7XWLDvWkTwHQVFTOmA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၂၁။ ၀ဲၾသဃ တရားေတာ္ (၅-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 57 minutes 7 views" title="၂၁။ ၀ဲၾသဃ တရားေတာ္ (၅-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၂၁။ ၀ဲၾသဃ တရားေတာ္ (၅-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">22</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-4y3nCansys&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=23">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-4y3nCansys&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=23">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/-4y3nCansys/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCwbNwuS4DfZL-CRhoLnXM41T3Slw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၂၂။ ကံေျခာက္မ်ိဳး တရားေတာ္ (၆-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 55 minutes 7 views" title="၂၂။ ကံေျခာက္မ်ိဳး တရားေတာ္ (၆-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၂၂။ ကံေျခာက္မ်ိဳး တရားေတာ္ (၆-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">23</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=_uQnBfJtAOw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=24">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=_uQnBfJtAOw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=24">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/_uQnBfJtAOw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAawr-FPgsW6FZBIPd1eum6iKdr4Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၂၃။ ဒုကၡေျခာက္မ်ိဳး တရားေတာ္ (၇-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 54 minutes 7 views" title="၂၃။ ဒုကၡေျခာက္မ်ိဳး တရားေတာ္ (၇-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၂၃။ ဒုကၡေျခာက္မ်ိဳး တရားေတာ္ (၇-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">24</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=bvCFr65l9BI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=25">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=bvCFr65l9BI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=25">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/bvCFr65l9BI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDgCh0ih2-99WNwjxmVmJhU3BGFTA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၂၄။ ကာမေျခာက္မ်ိဳး တရားေတာ္ (၈-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 54 minutes 11 views" title="၂၄။ ကာမေျခာက္မ်ိဳး တရားေတာ္ (၈-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၂၄။ ကာမေျခာက္မ်ိဳး တရားေတာ္ (၈-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">25</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qbLu7PHVlVE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=26">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qbLu7PHVlVE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=26">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/qbLu7PHVlVE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBkbZ-LUC-sAFWekojmYpp-IP-W8A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၂၅။ ေ၀ဒနာေျခာက္မ်ိဳး တရားေတာ္ (၉-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 54 minutes 8 views" title="၂၅။ ေ၀ဒနာေျခာက္မ်ိဳး တရားေတာ္ (၉-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၂၅။ ေ၀ဒနာေျခာက္မ်ိဳး တရားေတာ္ (၉-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">26</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=boIvfmlovFE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=27">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=boIvfmlovFE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=27">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/boIvfmlovFE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCioc_3w3IbBe1n09J31fNldAFShA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၂၆။ ဉာဏ္သံုးဆင့္တက္ပံုႏွင့္ အလုပ္စဥ္ျပတရား (၉-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 55 minutes 9 views" title="၂၆။ ဉာဏ္သံုးဆင့္တက္ပံုႏွင့္ အလုပ္စဥ္ျပတရား (၉-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၂၆။ ဉာဏ္သံုးဆင့္တက္ပံုႏွင့္ အလုပ္စဥ္ျပတရား (၉-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">27</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=H5O76BL4_Bs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=28">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=H5O76BL4_Bs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=28">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/H5O76BL4_Bs/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCKBJZ-ToHxXa68Bc4i3g6Vrpe_RA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၂၇။ ဥတၱရလုလင္ ဥပမာျပ ၀ိပႆနာ အားထုတ္နည္း (၁၀-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 58 minutes 17 views" title="၂၇။ ဥတၱရလုလင္ ဥပမာျပ ၀ိပႆနာ အားထုတ္နည္း (၁၀-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၂၇။ ဥတၱရလုလင္ ဥပမာျပ ၀ိပႆနာ အားထုတ္နည္း (၁၀-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">28</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Z_LBKin3S8c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=29">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Z_LBKin3S8c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=29">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Z_LBKin3S8c/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAby-i4pQ73meTyP-YQL9Z7JqscSQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 12 minutes">
1:12:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၂၈။ လူမိုက္ႏွင့္ လူလိမၼာခြဲျခားပံု တရားေတာ္ (၂၈-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 1 hour, 12 minutes 11 views" title="၂၈။ လူမိုက္ႏွင့္ လူလိမၼာခြဲျခားပံု တရားေတာ္ (၂၈-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၂၈။ လူမိုက္ႏွင့္ လူလိမၼာခြဲျခားပံု တရားေတာ္ (၂၈-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">29</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=HLlyN7pSgNI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=30">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=HLlyN7pSgNI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=30">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/HLlyN7pSgNI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDo66VzCikFJEthKrd_iiczXV10Rg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၂၉။ ေသာတာပန္တည္နည္း တရားေတာ္ (၃၁-၁၂-၁၉၅၉) by mogok sayadaw 1 year ago 56 minutes 11 views" title="၂၉။ ေသာတာပန္တည္နည္း တရားေတာ္ (၃၁-၁၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၂၉။ ေသာတာပန္တည္နည္း တရားေတာ္ (၃၁-၁၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">30</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Aj-lLaXGvGo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=31">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Aj-lLaXGvGo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=31">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Aj-lLaXGvGo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAj9T09YUbAeVyr_r1VjhMNXNhkSg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၃၀။ ေ၀ဒနာသံုးပါး(၁) စရိုက္ေရြးခ်ယ္ပံု (၇-၁-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 16 views" title="၃၀။ ေ၀ဒနာသံုးပါး(၁) စရိုက္ေရြးခ်ယ္ပံု (၇-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၃၀။ ေ၀ဒနာသံုးပါး(၁) စရိုက္ေရြးခ်ယ္ပံု (၇-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">31</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Ja36TO8YwI8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=32">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Ja36TO8YwI8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=32">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Ja36TO8YwI8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCO6CrWxiZNJETco45pqTGJ4ChD8w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၃၁။ ေ၀ဒနာသံုးပါး(၂) ကိုယ့္အေသကိုယ္ၾကည့္ရန္ (၈-၁-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 8 views" title="၃၁။ ေ၀ဒနာသံုးပါး(၂) ကိုယ့္အေသကိုယ္ၾကည့္ရန္ (၈-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၃၁။ ေ၀ဒနာသံုးပါး(၂) ကိုယ့္အေသကိုယ္ၾကည့္ရန္ (၈-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">32</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wvWuVnJtnCE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=33">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wvWuVnJtnCE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=33">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/wvWuVnJtnCE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCShVfkymAfXuUIvJHEDuzqRwc4ag"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၃၂။ သခၤါရတရား အနိစၥေပၚေအာင္ ၾကည့္ရန္ (၉-၁-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 13 views" title="၃၂။ သခၤါရတရား အနိစၥေပၚေအာင္ ၾကည့္ရန္ (၉-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၃၂။ သခၤါရတရား အနိစၥေပၚေအာင္ ၾကည့္ရန္ (၉-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">33</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=HGOBJj5ynEY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=34">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=HGOBJj5ynEY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=34">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/HGOBJj5ynEY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA1rPKZaWCR6W1UveGslU-hNVvftA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၃၃။ မဂ္ဉာဏ္လုိခ်င္လွ်င္ ၀ိပႆနာအားထုတ္ပါ (၁၀-၁-၁၉၆၀) by mogok sayadaw 1 year ago 50 minutes 13 views" title="၃၃။ မဂ္ဉာဏ္လုိခ်င္လွ်င္ ၀ိပႆနာအားထုတ္ပါ (၁၀-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၃၃။ မဂ္ဉာဏ္လုိခ်င္လွ်င္ ၀ိပႆနာအားထုတ္ပါ (၁၀-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">34</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2pvsSJk_i3M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=35">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2pvsSJk_i3M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=35">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/2pvsSJk_i3M/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAJ0IDKPtURP0qo4-Ao53dPr7qPYQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၃၄။ ေသာတာပန္ပုဂၢိဳလ္၏ ျမင္ပံုတရားေတာ္ (၁၅-၁-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 12 views" title="၃၄။ ေသာတာပန္ပုဂၢိဳလ္၏ ျမင္ပံုတရားေတာ္ (၁၅-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၃၄။ ေသာတာပန္ပုဂၢိဳလ္၏ ျမင္ပံုတရားေတာ္ (၁၅-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">35</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=JtR-98mTUkk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=36">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=JtR-98mTUkk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=36">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/JtR-98mTUkk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBduesSS79yMDExKorN_f4YvRms1A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၃၅။ ဒိ႒ိျပဳတ္မွ နိဗၺာန္ျမင္မည္ (၁၆-၁-၁၉၆၀) by mogok sayadaw 1 year ago 50 minutes 7 views" title="၃၅။ ဒိ႒ိျပဳတ္မွ နိဗၺာန္ျမင္မည္ (၁၆-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၃၅။ ဒိ႒ိျပဳတ္မွ နိဗၺာန္ျမင္မည္ (၁၆-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">36</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=vhUbmTpy9i0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=37">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=vhUbmTpy9i0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=37">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/vhUbmTpy9i0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD3VDL0Ic5MtOwB0w1BWb-9QkM4eQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 12 minutes">
1:12:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၃၆။ ဒိ႒ိသတ္လွ်င္ ေသာတာပန္တည္သည္ (၁၉-၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 12 minutes 5 views" title="၃၆။ ဒိ႒ိသတ္လွ်င္ ေသာတာပန္တည္သည္ (၁၉-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၃၆။ ဒိ႒ိသတ္လွ်င္ ေသာတာပန္တည္သည္ (၁၉-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">37</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gxElia4ZqKY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=38">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gxElia4ZqKY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=38">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/gxElia4ZqKY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDjQI7EqrxXILFSJKssycl0EqEgCA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၃၇။ ကံသည္ အနတၱသေဘာျဖစ္ပံု (၂၀-၁-၁၉၆၀) by mogok sayadaw 1 year ago 51 minutes 9 views" title="၃၇။ ကံသည္ အနတၱသေဘာျဖစ္ပံု (၂၀-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၃၇။ ကံသည္ အနတၱသေဘာျဖစ္ပံု (၂၀-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">38</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ERnM_A-rsho&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=39">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ERnM_A-rsho&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=39">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ERnM_A-rsho/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCE1O-lIHXNUYIlTw_oFUZmlh_xmw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၃၈။ လူမုိက္ႏွင့္ လူမိုက္ထက္ပိုမိုက္ေသာသူ တရား (၂၁-၁-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 33 views" title="၃၈။ လူမုိက္ႏွင့္ လူမိုက္ထက္ပိုမိုက္ေသာသူ တရား (၂၁-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၃၈။ လူမုိက္ႏွင့္ လူမိုက္ထက္ပိုမိုက္ေသာသူ တရား (၂၁-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">39</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=DCiFCgEl94E&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=40">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=DCiFCgEl94E&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=40">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/DCiFCgEl94E/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAYR8sQgFM0SoXVqvqi3WGHGtHsVw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၃၉။ ပဋိစၥသမုပၸါဒ္ အေၾကာင္းႏွင့္ အက်ိဳးတရားနာေနၾကပံု (၂၂-၁-၁၉၆၀) by mogok sayadaw 1 year ago 58 minutes 15 views" title="၃၉။ ပဋိစၥသမုပၸါဒ္ အေၾကာင္းႏွင့္ အက်ိဳးတရားနာေနၾကပံု (၂၂-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၃၉။ ပဋိစၥသမုပၸါဒ္ အေၾကာင္းႏွင့္ အက်ိဳးတရားနာေနၾကပံု (၂၂-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">40</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=8bO883LaHiw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=41">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=8bO883LaHiw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=41">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/8bO883LaHiw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA0jli6IRzmHcNGzVFrFH58kTe0wQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:56
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၄၀။ မဂၢျဗဟၼစရိယအက်င့္ လူမိုက္လမ္းျဖတ္ရန္ (၂၃-၁-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 12 views" title="၄၀။ မဂၢျဗဟၼစရိယအက်င့္ လူမိုက္လမ္းျဖတ္ရန္ (၂၃-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၄၀။ မဂၢျဗဟၼစရိယအက်င့္ လူမိုက္လမ္းျဖတ္ရန္ (၂၃-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">41</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lBxK4gD3cTs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=42">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lBxK4gD3cTs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=42">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/lBxK4gD3cTs/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCECsuX23k8z-RP6E3Ep18j5Ar_6Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၄၁။ လူမိုက္ႏွင့္ လူလိမၼာခြဲျခားပံု (၂၄-၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 7 views" title="၄၁။ လူမိုက္ႏွင့္ လူလိမၼာခြဲျခားပံု (၂၄-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၄၁။ လူမိုက္ႏွင့္ လူလိမၼာခြဲျခားပံု (၂၄-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">42</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5hWfl_ZkTRc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=43">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5hWfl_ZkTRc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=43">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5hWfl_ZkTRc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCIFrbdIfRgNtZruDJohRm5h_dSkA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၄၂။ အရွင္ေခမက ဥပမာျပ၊ ငါဟူေသာ သကၠာယဒိ႒ိျဖဳတ္ရန္ (၂၅-၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 10 views" title="၄၂။ အရွင္ေခမက ဥပမာျပ၊ ငါဟူေသာ သကၠာယဒိ႒ိျဖဳတ္ရန္ (၂၅-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၄၂။ အရွင္ေခမက ဥပမာျပ၊ ငါဟူေသာ သကၠာယဒိ႒ိျဖဳတ္ရန္ (၂၅-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">43</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Tz-CXvc9TMw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=44">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Tz-CXvc9TMw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=44">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Tz-CXvc9TMw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLARkw7AuB4Qp6jr17bYm3gSKrpDow"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၄၃။ အရွင္ေခမက ဥပမာျပ(၂)၊ အနိစၥႏွင့္ အနိစၥလကၡဏာ (၂၆-၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 8 views" title="၄၃။ အရွင္ေခမက ဥပမာျပ(၂)၊ အနိစၥႏွင့္ အနိစၥလကၡဏာ (၂၆-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၄၃။ အရွင္ေခမက ဥပမာျပ(၂)၊ အနိစၥႏွင့္ အနိစၥလကၡဏာ (၂၆-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">44</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BT06wYdVKpI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=45">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BT06wYdVKpI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=45">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/BT06wYdVKpI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC9Q_kbTCJafMoACYYLhkN0W-b-ug"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 11 minutes">
1:11:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၄၄။ အိပ္ျခင္းမွ ႏိုးၿပီး မဂၢင္ေဖာင္ကို ျပင္ဆင္ၾကရန္ (၂၇-၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 11 minutes 10 views" title="၄၄။ အိပ္ျခင္းမွ ႏိုးၿပီး မဂၢင္ေဖာင္ကို ျပင္ဆင္ၾကရန္ (၂၇-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၄၄။ အိပ္ျခင္းမွ ႏိုးၿပီး မဂၢင္ေဖာင္ကို ျပင္ဆင္ၾကရန္ (၂၇-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">45</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CdwAhy2lgg4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=46">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CdwAhy2lgg4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=46">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/CdwAhy2lgg4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA-NTj5_MUOI0z_PIduUoUnFRQQWw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၄၅။ ၀ိပႆနာလမ္းႏွင့္ နိဗၺာန္သို႔သြားႏိုင္ပံု (၂၈-၁-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 9 views" title="၄၅။ ၀ိပႆနာလမ္းႏွင့္ နိဗၺာန္သို႔သြားႏိုင္ပံု (၂၈-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၄၅။ ၀ိပႆနာလမ္းႏွင့္ နိဗၺာန္သို႔သြားႏိုင္ပံု (၂၈-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">46</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=90u9ORO1k0Y&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=47">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=90u9ORO1k0Y&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=47">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/90u9ORO1k0Y/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBeQIji5x-gwrxEIdqgEultqgsVHw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၄၆။ သုသိမပရိဗိုဇ္ တရားခိုးခန္း(၁) (၂၉-၁-၁၉၆၀) by mogok sayadaw 1 year ago 58 minutes 13 views" title="၄၆။ သုသိမပရိဗိုဇ္ တရားခိုးခန္း(၁) (၂၉-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၄၆။ သုသိမပရိဗိုဇ္ တရားခိုးခန္း(၁) (၂၉-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">47</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=c0m3pUMCvPc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=48">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=c0m3pUMCvPc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=48">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/c0m3pUMCvPc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBIhps0F7bLD3VvwH5EYnlqr1k4Zw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၄၇။ သုသိမပရိဗိုဇ္ တရားခိုးခန္း(၁) (၃၀-၁-၁၉၆၀) by mogok sayadaw 1 year ago 58 minutes 16 views" title="၄၇။ သုသိမပရိဗိုဇ္ တရားခိုးခန္း(၁) (၃၀-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၄၇။ သုသိမပရိဗိုဇ္ တရားခိုးခန္း(၁) (၃၀-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">48</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=nkho5uCbBLA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=49">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=nkho5uCbBLA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=49">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/nkho5uCbBLA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCR6Q6Ja1isb0UmJYnjLR4QDN0JNA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၄၈။ သုသိမပရိဗိုဇ္ ရဟႏၱာျဖစ္ပံု (၃၁-၁-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 16 views" title="၄၈။ သုသိမပရိဗိုဇ္ ရဟႏၱာျဖစ္ပံု (၃၁-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၄၈။ သုသိမပရိဗိုဇ္ ရဟႏၱာျဖစ္ပံု (၃၁-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">49</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=f-wg20bJn-g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=50">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=f-wg20bJn-g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=50">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/f-wg20bJn-g/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDr3ic0gB2CpIpe53kjZldSLu_lVw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၄၉။ အနိစၥရွဳ၊ အနိစၥမွတ္၊ အနိစၥသိက်င့္စဥ္ (၁-၂-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 16 views" title="၄၉။ အနိစၥရွဳ၊ အနိစၥမွတ္၊ အနိစၥသိက်င့္စဥ္ (၁-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၄၉။ အနိစၥရွဳ၊ အနိစၥမွတ္၊ အနိစၥသိက်င့္စဥ္ (၁-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">50</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=c0aq35yf8F4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=51">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=c0aq35yf8F4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=51">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/c0aq35yf8F4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAwGLsqqq2qsmINEivu_AtFrp0Zqw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၅၀။ ခဏေကာင္းကို မလြန္မိပါေစနဲ႔တရား (၂-၂-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 9 views" title="၅၀။ ခဏေကာင္းကို မလြန္မိပါေစနဲ႔တရား (၂-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၅၀။ ခဏေကာင္းကို မလြန္မိပါေစနဲ႔တရား (၂-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">51</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=FyxwkqbBSbI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=52">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=FyxwkqbBSbI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=52">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/FyxwkqbBSbI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCQoHdYxXztYl7K9Qtm0MwhGP0lWQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၅၁။ အဂၢိ၀စၦပုဏၰားအား နိဗၺာန္အေၾကာင္း ရွင္းျပပံုတရား (၃-၂-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 11 views" title="၅၁။ အဂၢိ၀စၦပုဏၰားအား နိဗၺာန္အေၾကာင္း ရွင္းျပပံုတရား (၃-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၅၁။ အဂၢိ၀စၦပုဏၰားအား နိဗၺာန္အေၾကာင္း ရွင္းျပပံုတရား (၃-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">52</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=es8amBscx1c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=53">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=es8amBscx1c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=53">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/es8amBscx1c/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBfFIzfPbhMjplbmoVZUU1LyCtGgA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၅၂။ အဂၢိ၀စၦပုဏၰားအား မီးႏွင့္ဥပမာျပပံု (၅-၂-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 5 views" title="၅၂။ အဂၢိ၀စၦပုဏၰားအား မီးႏွင့္ဥပမာျပပံု (၅-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၅၂။ အဂၢိ၀စၦပုဏၰားအား မီးႏွင့္ဥပမာျပပံု (၅-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">53</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=vfhBDI-Vwzs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=54">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=vfhBDI-Vwzs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=54">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/vfhBDI-Vwzs/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDmotQ8bnetZzW9sVR5Cvh70O6shw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၅၃။ သစၥာႏွစ္ပါးတရားေတာ္ (၆-၂-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 10 views" title="၅၃။ သစၥာႏွစ္ပါးတရားေတာ္ (၆-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၅၃။ သစၥာႏွစ္ပါးတရားေတာ္ (၆-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">54</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=DyqCkhqMspU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=55">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=DyqCkhqMspU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=55">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/DyqCkhqMspU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBrB7Dp8TpQ-grMojfrJcRO4VPOBw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၅၄။ အားကိုးထိုက္ေသာ မဂၢင္ေဖာင္ကိုဖြဲ႔ထားရန္ တရား (၇-၂-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 201 views" title="၅၄။ အားကိုးထိုက္ေသာ မဂၢင္ေဖာင္ကိုဖြဲ႔ထားရန္ တရား (၇-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၅၄။ အားကိုးထိုက္ေသာ မဂၢင္ေဖာင္ကိုဖြဲ႔ထားရန္ တရား (၇-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">55</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=JOjwZ3xv4Jc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=56">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=JOjwZ3xv4Jc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=56">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/JOjwZ3xv4Jc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB0YWW5BsFwTsW1iYSeoea_Ldt-cA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:40
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၅၅။ ရွင္သာရိပုတၱရာက အနာထပိဏ္သူေ႒းအား ျဖစ္ပ်က္ရွဳနည္းသင္ေပးပံု (၈-၂-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 16 views" title="၅၅။ ရွင္သာရိပုတၱရာက အနာထပိဏ္သူေ႒းအား ျဖစ္ပ်က္ရွဳနည္းသင္ေပးပံု (၈-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၅၅။ ရွင္သာရိပုတၱရာက အနာထပိဏ္သူေ႒းအား ျဖစ္ပ်က္ရွဳနည္းသင္ေပးပံု (၈-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">56</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=YH9WXzMLokg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=57">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=YH9WXzMLokg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=57">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/YH9WXzMLokg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCdbIkXI9jGEtPphp8X8H0duGjrgg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၅၆။ ဒိ႒ိျဖဳတ္ၿပီးမွ ၀ိပႆနာရွဳပါ တရားေတာ္ (၁၃-၂-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 12 views" title="၅၆။ ဒိ႒ိျဖဳတ္ၿပီးမွ ၀ိပႆနာရွဳပါ တရားေတာ္ (၁၃-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၅၆။ ဒိ႒ိျဖဳတ္ၿပီးမွ ၀ိပႆနာရွဳပါ တရားေတာ္ (၁၃-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">57</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Z60xRjG3iYg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=58">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Z60xRjG3iYg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=58">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Z60xRjG3iYg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDwF1QThF4vN3uZAqF4tnaSvEwx3w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၅၇။ ျဖစ္ပ်က္ႏွင့္မဂ္မွာ ကိေလသာ ၾကားမခိုပါေစနဲ႔တရား (၁၅-၂-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 56 views" title="၅၇။ ျဖစ္ပ်က္ႏွင့္မဂ္မွာ ကိေလသာ ၾကားမခိုပါေစနဲ႔တရား (၁၅-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၅၇။ ျဖစ္ပ်က္ႏွင့္မဂ္မွာ ကိေလသာ ၾကားမခိုပါေစနဲ႔တရား (၁၅-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">58</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=AALCW_LeEFE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=59">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=AALCW_LeEFE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=59">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/AALCW_LeEFE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBQrdLOP5_peAqr2TMxoVU4WBzuDA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၅၈။ ရွင္ဆႏၵဥပမာျပ၊ ေ၀ဒနာႏွင့္ အသက္ရွင္ေနပံု (၁၆-၂-၁၉၆၀) by mogok sayadaw 1 year ago 58 minutes 8 views" title="၅၈။ ရွင္ဆႏၵဥပမာျပ၊ ေ၀ဒနာႏွင့္ အသက္ရွင္ေနပံု (၁၆-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၅၈။ ရွင္ဆႏၵဥပမာျပ၊ ေ၀ဒနာႏွင့္ အသက္ရွင္ေနပံု (၁၆-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">59</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1b0yc8kH_Cg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=60">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1b0yc8kH_Cg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=60">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/1b0yc8kH_Cg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCRFKTsIDJXSLaXlV3MKaOpvNTfVg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၅၉။ ရွင္ဆႏၵရဟန္းအား ဒိ႒ိခြါခန္း (၁၇-၂-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 6 views" title="၅၉။ ရွင္ဆႏၵရဟန္းအား ဒိ႒ိခြါခန္း (၁၇-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၅၉။ ရွင္ဆႏၵရဟန္းအား ဒိ႒ိခြါခန္း (၁၇-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">60</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=_eCqWCp6FV4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=61">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=_eCqWCp6FV4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=61">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/_eCqWCp6FV4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDuYHLfM1-wTbU3d9iUEshU0DFZfQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၆၀။ ရွင္ဆႏၵရဟန္းအား ဒိ႒ိခြါခန္း (၁၈-၂-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 8 views" title="၆၀။ ရွင္ဆႏၵရဟန္းအား ဒိ႒ိခြါခန္း (၁၈-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၀။ ရွင္ဆႏၵရဟန္းအား ဒိ႒ိခြါခန္း (၁၈-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">61</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1YeM-h0H7k0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=62">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1YeM-h0H7k0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=62">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/1YeM-h0H7k0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAzcZtm9QBwR5i_hpUSM98z59vcew"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၆၁။ ရွင္ဆႏၵ ဒိ႒ိ ၀ိစိကိစၦာကြာၿပီး ရဟႏၱာျဖစ္ပံုတရားေတာ္ (၁၉-၂-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 13 views" title="၆၁။ ရွင္ဆႏၵ ဒိ႒ိ ၀ိစိကိစၦာကြာၿပီး ရဟႏၱာျဖစ္ပံုတရားေတာ္ (၁၉-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၁။ ရွင္ဆႏၵ ဒိ႒ိ ၀ိစိကိစၦာကြာၿပီး ရဟႏၱာျဖစ္ပံုတရားေတာ္ (၁၉-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">62</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1xXJM-2XX2M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=63">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1xXJM-2XX2M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=63">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/1xXJM-2XX2M/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDWd9mS7ZP_z8I4A4a9Hl_XJ_-YHg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၆၂။ လူမိုက္ႏွင့္ လူလိမၼာတရားေတာ္ (၂၄-၂-၁၉၆၀) by mogok sayadaw 1 year ago 52 minutes 10 views" title="၆၂။ လူမိုက္ႏွင့္ လူလိမၼာတရားေတာ္ (၂၄-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၂။ လူမိုက္ႏွင့္ လူလိမၼာတရားေတာ္ (၂၄-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">63</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=vdgCLlBERYU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=64">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=vdgCLlBERYU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=64">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/vdgCLlBERYU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDvISOgR89Ukj9gp7S3IXtCCTJJ4g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:17
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၆၃။ တလပ႑ိတသုတ္ တရားေတာ္ (၂၅-၂-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 8 views" title="၆၃။ တလပ႑ိတသုတ္ တရားေတာ္ (၂၅-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၃။ တလပ႑ိတသုတ္ တရားေတာ္ (၂၅-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">64</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VNd73Lwq-t4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=65">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VNd73Lwq-t4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=65">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/VNd73Lwq-t4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDHkTUUHZGR49DiipnRGBluXuCXEA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၆၄။ သူေတာင္းစားေျခာက္ေယာက္ ဥပမာျပတရားေတာ္ (၂၄-၂-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၆၄။ သူေတာင္းစားေျခာက္ေယာက္ ဥပမာျပတရားေတာ္ (၂၄-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၄။ သူေတာင္းစားေျခာက္ေယာက္ ဥပမာျပတရားေတာ္ (၂၄-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">65</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-01yjZfXv08&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=66">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-01yjZfXv08&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=66">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/-01yjZfXv08/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDurmE0LpTXDHSDXAA18RE8JB0-mw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၆၅။ ဒိ႒ိကိေလသာ သတ္ရန္တရားေတာ္ (၂၇-၂-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 6 views" title="၆၅။ ဒိ႒ိကိေလသာ သတ္ရန္တရားေတာ္ (၂၇-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၅။ ဒိ႒ိကိေလသာ သတ္ရန္တရားေတာ္ (၂၇-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">66</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fhwelrjD-AM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=67">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fhwelrjD-AM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=67">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/fhwelrjD-AM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBWdfidSzSDt30QftIiJ4doxODwRQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၆၆။ သမၼာဒိ႒ိငါးမ်ိဳး တရားေတာ္ (၂၈-၂-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 9 views" title="၆၆။ သမၼာဒိ႒ိငါးမ်ိဳး တရားေတာ္ (၂၈-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၆။ သမၼာဒိ႒ိငါးမ်ိဳး တရားေတာ္ (၂၈-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">67</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=kgqM3opS3oY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=68">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=kgqM3opS3oY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=68">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/kgqM3opS3oY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDTptfKnSadcSkd4vWLwsIvTxbi1Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၆၇။ သမၼာဒိ႒ိငါးမ်ိဳးတရား(၂) (၂၉-၂-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 6 views" title="၆၇။ သမၼာဒိ႒ိငါးမ်ိဳးတရား(၂) (၂၉-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၇။ သမၼာဒိ႒ိငါးမ်ိဳးတရား(၂) (၂၉-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">68</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=bbS06jMW2yI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=69">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=bbS06jMW2yI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=69">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/bbS06jMW2yI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB8u_WtFWcu9jKaijysnPLTopMy9g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၆၈။ သမၼာဒိ႒ိငါးမ်ိဳးတရား(၃) (၁-၃-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၆၈။ သမၼာဒိ႒ိငါးမ်ိဳးတရား(၃) (၁-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၈။ သမၼာဒိ႒ိငါးမ်ိဳးတရား(၃) (၁-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">69</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=OkJvwd7bLhQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=70">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=OkJvwd7bLhQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=70">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/OkJvwd7bLhQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAoJeKM9fkS0QZeoKRPcrFavixu-Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၆၉။ သမၼာဒိ႒ိငါးမ်ိဳးတရား(၄) (၂-၃-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 9 views" title="၆၉။ သမၼာဒိ႒ိငါးမ်ိဳးတရား(၄) (၂-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၉။ သမၼာဒိ႒ိငါးမ်ိဳးတရား(၄) (၂-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">70</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=N4s01kaTdsk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=71">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=N4s01kaTdsk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=71">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/N4s01kaTdsk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBZ7VQVYRMUpaS4Wl-xwEPikBZGzA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၇၀။ ဖဂၢဳဏရဟန္းဥပမာျပ ခႏၶာၾကီးက ေသရြာသို႔သြားေနပံု (၄-၃-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 4 views" title="၇၀။ ဖဂၢဳဏရဟန္းဥပမာျပ ခႏၶာၾကီးက ေသရြာသို႔သြားေနပံု (၄-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၇၀။ ဖဂၢဳဏရဟန္းဥပမာျပ ခႏၶာၾကီးက ေသရြာသို႔သြားေနပံု (၄-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">71</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=My4ERNcvxt4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=72">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=My4ERNcvxt4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=72">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/My4ERNcvxt4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAJB1xZXa5ykZYTDO0kV-P0J6BioA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၇၁။ ခင္ရာမင္ရာမွ တဏွာလာပံုတရားေတာ္ (၆-၃-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 9 views" title="၇၁။ ခင္ရာမင္ရာမွ တဏွာလာပံုတရားေတာ္ (၆-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၇၁။ ခင္ရာမင္ရာမွ တဏွာလာပံုတရားေတာ္ (၆-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">72</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WzmwX83Gp68&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=73">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WzmwX83Gp68&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=73">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/WzmwX83Gp68/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD7q2F4G7EiQ3CoTpLVrSKjrq0bdw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၇၂။ အဆိပ္ေရာသည့္ေရ မေသာက္မိေစရန္တရားေတာ္ (၇-၃-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 12 views" title="၇၂။ အဆိပ္ေရာသည့္ေရ မေသာက္မိေစရန္တရားေတာ္ (၇-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၇၂။ အဆိပ္ေရာသည့္ေရ မေသာက္မိေစရန္တရားေတာ္ (၇-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">73</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hzefTafO9bg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=74">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hzefTafO9bg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=74">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/hzefTafO9bg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAZ88VXcZKRQqdAmFZoTYCcDGVI8g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၇၃။ နိဗၺာန္သြား လမ္းျပေျမပံု တရားေတာ္ (၈-၃-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 7 views" title="၇၃။ နိဗၺာန္သြား လမ္းျပေျမပံု တရားေတာ္ (၈-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၇၃။ နိဗၺာန္သြား လမ္းျပေျမပံု တရားေတာ္ (၈-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">74</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=n8LMiVsOeus&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=75">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=n8LMiVsOeus&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=75">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/n8LMiVsOeus/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAouKixHTdJFrc2xMp-_FtnRgrdXQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၇၄။ စိတ္(၁၁)မ်ိဳး ရွဳပြားနည္းတရားေတာ္(ရွင္အႏုရာဓ) (၉-၃-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 13 views" title="၇၄။ စိတ္(၁၁)မ်ိဳး ရွဳပြားနည္းတရားေတာ္(ရွင္အႏုရာဓ) (၉-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၇၄။ စိတ္(၁၁)မ်ိဳး ရွဳပြားနည္းတရားေတာ္(ရွင္အႏုရာဓ) (၉-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">75</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=cULO1nhiOys&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=76">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=cULO1nhiOys&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=76">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/cULO1nhiOys/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCE82bsi1WAqw4L6QmFekxfqPFTFg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၇၅။ ဒိ႒ိႏွင့္၀ိစိကိစၦာကို အသိႏွင့္ပထမပယ္နည္း(ရွင္အႏုရာဓ-၂) (၁၀-၃-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 12 views" title="၇၅။ ဒိ႒ိႏွင့္၀ိစိကိစၦာကို အသိႏွင့္ပထမပယ္နည္း(ရွင္အႏုရာဓ-၂) (၁၀-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၇၅။ ဒိ႒ိႏွင့္၀ိစိကိစၦာကို အသိႏွင့္ပထမပယ္နည္း(ရွင္အႏုရာဓ-၂) (၁၀-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">76</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=XL3hz5XVDMM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=77">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=XL3hz5XVDMM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=77">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/XL3hz5XVDMM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCh-dBr3lASNKRBk81fF8_flH2Omg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၇၆။ ႏွစ္ေၾကာင္းေသာတရားျဖင့္ နိဗၺာန္သို႔ေရာက္ႏိုင္ပံု (၁၄-၃-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 11 views" title="၇၆။ ႏွစ္ေၾကာင္းေသာတရားျဖင့္ နိဗၺာန္သို႔ေရာက္ႏိုင္ပံု (၁၄-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၇၆။ ႏွစ္ေၾကာင္းေသာတရားျဖင့္ နိဗၺာန္သို႔ေရာက္ႏိုင္ပံု (၁၄-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">77</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hbf46zjwbK8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=78">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hbf46zjwbK8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=78">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/hbf46zjwbK8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDLUNdAVaADBiyjiEu3H3XQuddEcA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:17
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၇၇။ ခ်ည္တိုင္ႏွင့္ၾကိဳး၊ ေခြးႏွင့္လည္ပတ္ (၁၅-၃-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 9 views" title="၇၇။ ခ်ည္တိုင္ႏွင့္ၾကိဳး၊ ေခြးႏွင့္လည္ပတ္ (၁၅-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၇၇။ ခ်ည္တိုင္ႏွင့္ၾကိဳး၊ ေခြးႏွင့္လည္ပတ္ (၁၅-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">78</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Rt7WZMRvFQc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=79">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Rt7WZMRvFQc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=79">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Rt7WZMRvFQc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBmAVHMe2FTvw3wJ9ZpXWemnHL_EA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:17
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၇၈။ အာသေ၀ါတရား ေလးပါးျဖဳတ္ေသာဉာဏ္(၁) (၁၆-၃-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 8 views" title="၇၈။ အာသေ၀ါတရား ေလးပါးျဖဳတ္ေသာဉာဏ္(၁) (၁၆-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၇၈။ အာသေ၀ါတရား ေလးပါးျဖဳတ္ေသာဉာဏ္(၁) (၁၆-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">79</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Wt8WO1ObUXk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=80">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Wt8WO1ObUXk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=80">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Wt8WO1ObUXk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDZUkiy9IGDfBY3yh_7yYRW-b4atg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၇၉။ ၀ိပႆနာရွဳေနရမည့္ ဘာေ၀တဗၺအလုပ္ေပးတရား (၁၇-၃-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 14 views" title="၇၉။ ၀ိပႆနာရွဳေနရမည့္ ဘာေ၀တဗၺအလုပ္ေပးတရား (၁၇-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၇၉။ ၀ိပႆနာရွဳေနရမည့္ ဘာေ၀တဗၺအလုပ္ေပးတရား (၁၇-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">80</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TQbP34f9XJg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=81">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TQbP34f9XJg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=81">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/TQbP34f9XJg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBNKZInqsCD4uTPbTBgDTTj0SpzQQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၀။ အနတၱလကၡဏဉာဏ္ (၁၉-၃-၁၉၆၀) by mogok sayadaw 1 year ago 58 minutes 17 views" title="၈၀။ အနတၱလကၡဏဉာဏ္ (၁၉-၃-၁၉၆၀)">
၈၀။ အနတၱလကၡဏဉာဏ္ (၁၉-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">81</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=8QgGMn-rHnk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=82">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=8QgGMn-rHnk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=82">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/8QgGMn-rHnk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCwYlafz5qTUeDqnA5QNWt2QtuQXg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၈၁။ ခႏၶာငါးပါးကို ေမ်ာက္ျဖင့္ဥပမာျပ (၂၀-၃-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 6 views" title="၈၁။ ခႏၶာငါးပါးကို ေမ်ာက္ျဖင့္ဥပမာျပ (၂၀-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၈၁။ ခႏၶာငါးပါးကို ေမ်ာက္ျဖင့္ဥပမာျပ (၂၀-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">82</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=T2XHTTcMxYU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=83">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=T2XHTTcMxYU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=83">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/T2XHTTcMxYU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAFR3BWc7jNo3lkBpWV5qgzWaR9ug"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:54
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၈၂။ ကုသိုလ္ေခြး အကုသိုလ္ေခြးတရားေတာ္ (၂၂-၃-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၈၂။ ကုသိုလ္ေခြး အကုသိုလ္ေခြးတရားေတာ္ (၂၂-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၈၂။ ကုသိုလ္ေခြး အကုသိုလ္ေခြးတရားေတာ္ (၂၂-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">83</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=FymOEvPjk-I&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=84">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=FymOEvPjk-I&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=84">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/FymOEvPjk-I/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDaYVlgcxCLoNDAOJH2Z9D3HDKvxA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၈၃။ လူ႔သံေယာဇဥ္စြန္႔မွ နိဗၺာန္ရႏိုင္ပံု တရားေတာ္ (၂၂-၃-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 4 views" title="၈၃။ လူ႔သံေယာဇဥ္စြန္႔မွ နိဗၺာန္ရႏိုင္ပံု တရားေတာ္ (၂၂-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၈၃။ လူ႔သံေယာဇဥ္စြန္႔မွ နိဗၺာန္ရႏိုင္ပံု တရားေတာ္ (၂၂-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">84</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=j-wssAVZCkk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=85">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=j-wssAVZCkk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=85">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/j-wssAVZCkk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBzWO2WS4pCPihIzte0yaJdWLfJEA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၈၄။ ျပံဳးေသမဲ့ေသ (၂၃-၃-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 35 views" title="၈၄။ ျပံဳးေသမဲ့ေသ (၂၃-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၈၄။ ျပံဳးေသမဲ့ေသ (၂၃-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">85</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ucWPcHHPirc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=86">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ucWPcHHPirc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=86">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ucWPcHHPirc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBpjI4NgEyGZZFJKi6kBcu7xzt6aA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၈၅။ ကံေလးမ်ိဳးအေၾကာင္း ရွင္းျပပံု (၂၄-၃-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 6 views" title="၈၅။ ကံေလးမ်ိဳးအေၾကာင္း ရွင္းျပပံု (၂၄-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၈၅။ ကံေလးမ်ိဳးအေၾကာင္း ရွင္းျပပံု (၂၄-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">86</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5cVZGCq-owg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=87">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5cVZGCq-owg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=87">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5cVZGCq-owg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCHQlDt1_cep0R51oiIeEx0EP2JoA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၈၆။ ဘုရားေျပာေသာ စကားႏွစ္ခြန္းတရားေတာ္ (၂၅-၃-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 9 views" title="၈၆။ ဘုရားေျပာေသာ စကားႏွစ္ခြန္းတရားေတာ္ (၂၅-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၈၆။ ဘုရားေျပာေသာ စကားႏွစ္ခြန္းတရားေတာ္ (၂၅-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">87</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KsLkVJ8Po_0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=88">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KsLkVJ8Po_0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=88">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/KsLkVJ8Po_0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBBB_aqWvfI1MTN6hw8q3CHMC8ceQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၈၇။ စိတၱႏုပႆနာ သတိပ႒ာန္ (၂၆-၃-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 27 views" title="၈၇။ စိတၱႏုပႆနာ သတိပ႒ာန္ (၂၆-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၈၇။ စိတၱႏုပႆနာ သတိပ႒ာန္ (၂၆-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">88</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=pCoyBZU8XN0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=89">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=pCoyBZU8XN0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=89">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/pCoyBZU8XN0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDDekGSz-dNNWuerxvgEhU3jDdjug"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၈၈။ ၾသဃေလးပါးနစ္ျမဳပ္ေနပံုႏွင့္ ယင္းမွထြက္ပံု (၂၇-၃-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 12 views" title="၈၈။ ၾသဃေလးပါးနစ္ျမဳပ္ေနပံုႏွင့္ ယင္းမွထြက္ပံု (၂၇-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၈၈။ ၾသဃေလးပါးနစ္ျမဳပ္ေနပံုႏွင့္ ယင္းမွထြက္ပံု (၂၇-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">89</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=HHIktE6HxZg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=90">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=HHIktE6HxZg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=90">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/HHIktE6HxZg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAsiL_yeaJdzBDZpj5ey6abJbYj3Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၈၉။ အေခၚရွိႏွင့္တကယ္ရွိ အရွိႏွစ္ပါးခြဲျခားရန္ (၂၈-၃-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 10 views" title="၈၉။ အေခၚရွိႏွင့္တကယ္ရွိ အရွိႏွစ္ပါးခြဲျခားရန္ (၂၈-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၈၉။ အေခၚရွိႏွင့္တကယ္ရွိ အရွိႏွစ္ပါးခြဲျခားရန္ (၂၈-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">90</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=HDdsvZNIvsU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=91">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=HDdsvZNIvsU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=91">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/HDdsvZNIvsU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCK18OTZjOHyS7jiyRZoNeF_Qo1TQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 11 minutes">
1:11:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၉၀။ ေ၀ဒနာႏွင့္တဏွာၾကား သဗၺညဳတဉာဏ္ရ၍ ဘုရားျဖစ္လာပံု (၃၁-၃-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 11 minutes 3 views" title="၉၀။ ေ၀ဒနာႏွင့္တဏွာၾကား သဗၺညဳတဉာဏ္ရ၍ ဘုရားျဖစ္လာပံု (၃၁-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၉၀။ ေ၀ဒနာႏွင့္တဏွာၾကား သဗၺညဳတဉာဏ္ရ၍ ဘုရားျဖစ္လာပံု (၃၁-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">91</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=3dSeY6NNpcs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=92">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=3dSeY6NNpcs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=92">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/3dSeY6NNpcs/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCxGTwYWuF2CW8P7PuRp1g_ftAUHA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 12 minutes">
1:12:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၉၁။ သစၥာေလးပါးႏွင့္ ကထိန္ေရစက္ခ်တရားေတာ္ (၁၀-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 12 minutes 2 views" title="၉၁။ သစၥာေလးပါးႏွင့္ ကထိန္ေရစက္ခ်တရားေတာ္ (၁၀-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၉၁။ သစၥာေလးပါးႏွင့္ ကထိန္ေရစက္ခ်တရားေတာ္ (၁၀-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">92</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EX-PV1MujUg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=93">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EX-PV1MujUg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=93">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/EX-PV1MujUg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBWiREAKF-wgRXnePheu4fwEwLbhg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 4 minutes">
1:04:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၉၂။ ၀ိပႆနာအလုပ္ေပး တရားေတာ္ (၁၃-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 4 minutes 8 views" title="၉၂။ ၀ိပႆနာအလုပ္ေပး တရားေတာ္ (၁၃-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၉၂။ ၀ိပႆနာအလုပ္ေပး တရားေတာ္ (၁၃-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">93</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=b4tJoyHKq7c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=94">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=b4tJoyHKq7c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=94">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/b4tJoyHKq7c/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCOuVwv8jwGIxaQrybB8rB_-IQXrA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 6 minutes">
1:06:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၉၃။ ဒိ႒ိ၀ိစိကိစၦာ ပယ္ပံုတရားေတာ္ (၁၄-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 6 minutes 6 views" title="၉၃။ ဒိ႒ိ၀ိစိကိစၦာ ပယ္ပံုတရားေတာ္ (၁၄-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၉၃။ ဒိ႒ိ၀ိစိကိစၦာ ပယ္ပံုတရားေတာ္ (၁၄-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">94</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NNxBkRofF9s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=95">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NNxBkRofF9s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=95">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/NNxBkRofF9s/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAXw_K8HUT6lvz7OGYhlsI1ehnV7g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၉၄။ သကၠပဉာသုတ္(၄) ၀ိတက္ရွဳနိသွ်ည္း (၁၅-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၉၄။ သကၠပဉာသုတ္(၄) ၀ိတက္ရွဳနိသွ်ည္း (၁၅-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၉၄။ သကၠပဉာသုတ္(၄) ၀ိတက္ရွဳနိသွ်ည္း (၁၅-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">95</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZMPLdZsN-Dw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=96">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZMPLdZsN-Dw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=96">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ZMPLdZsN-Dw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC_UcDM2hMX50yrBeUQZTFJmFE17w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၉၅။ ဒုလႅဘတရားငါးပါး (၁၆-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 7 views" title="၉၅။ ဒုလႅဘတရားငါးပါး (၁၆-၁၁-၁၉၆၀)">
၉၅။ ဒုလႅဘတရားငါးပါး (၁၆-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">96</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=cJ_yzkKQ-lw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=97">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=cJ_yzkKQ-lw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=97">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/cJ_yzkKQ-lw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLApJEnr7h3AunANk-J3PZ_aldYuKg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၉၆။ တိတၳိေတြအေမး အနာထပိဏ္သူေ႒းအေျဖ (၁၈-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 6 views" title="၉၆။ တိတၳိေတြအေမး အနာထပိဏ္သူေ႒းအေျဖ (၁၈-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၉၆။ တိတၳိေတြအေမး အနာထပိဏ္သူေ႒းအေျဖ (၁၈-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">97</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=3lG4Pq06tHg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=98">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=3lG4Pq06tHg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=98">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/3lG4Pq06tHg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC37U3iZq79w7OOcsmBHzDhAMWRrA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၉၇။ ဖဂၢဳဏရဟန္း ဥပမာျပ ေသတတ္ေအာင္ ေသနည္း (၁၉-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 6 views" title="၉၇။ ဖဂၢဳဏရဟန္း ဥပမာျပ ေသတတ္ေအာင္ ေသနည္း (၁၉-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၉၇။ ဖဂၢဳဏရဟန္း ဥပမာျပ ေသတတ္ေအာင္ ေသနည္း (၁၉-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">98</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Vz4nEqSRvMI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=99">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Vz4nEqSRvMI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=99">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Vz4nEqSRvMI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAt1f3lRfUyOjn_eTg4kOFlImweOQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၉၈။ ရွာမွီးျခင္းမလြဲၾကရန္ (၂၀-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၉၈။ ရွာမွီးျခင္းမလြဲၾကရန္ (၂၀-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၉၈။ ရွာမွီးျခင္းမလြဲၾကရန္ (၂၀-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">99</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=svA7A9gDMx4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=100">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=svA7A9gDMx4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=100">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/svA7A9gDMx4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAwUW_2AwwLIntMXoJrKW6gJPAC9Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၉၉။ ရွင္ယမကဥပမာျပ(၁) ဒုကၡေပ်ာက္ေဆးမဂ္ေရေအး (၂၁-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 50 minutes 8 views" title="၉၉။ ရွင္ယမကဥပမာျပ(၁) ဒုကၡေပ်ာက္ေဆးမဂ္ေရေအး (၂၁-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၉၉။ ရွင္ယမကဥပမာျပ(၁) ဒုကၡေပ်ာက္ေဆးမဂ္ေရေအး (၂၁-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">100</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zWt6kNXNbtQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=101">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zWt6kNXNbtQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=101">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" style="background-color: transparent;" loaded=""><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/zWt6kNXNbtQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC8kKFvTsBsnEh6kYAPl-RoCRj63A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 4 minutes">
1:04:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg" aria-label="၁၀၀။ အနာထပိ႑ေကာ၀ါဒသုတ္ (၂၁-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 4 minutes 3 views" title="၁၀၀။ အနာထပိ႑ေကာ၀ါဒသုတ္ (၂၁-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၀၀။ အနာထပိ႑ေကာ၀ါဒသုတ္ (၂၁-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">101</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=q5q09SRLbM8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=102">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=q5q09SRLbM8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=102">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၀၁။ ရွင္ယမကဥပမာျပ(၂) ေရွ႕ေနာက္ခြဲၾကရန္ (၂၂-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 51 minutes 3 views" title="၁၀၁။ ရွင္ယမကဥပမာျပ(၂) ေရွ႕ေနာက္ခြဲၾကရန္ (၂၂-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၀၁။ ရွင္ယမကဥပမာျပ(၂) ေရွ႕ေနာက္ခြဲၾကရန္ (၂၂-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">102</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1hTpRNSfxUM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=103">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1hTpRNSfxUM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=103">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 4 minutes">
1:04:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၁၀၂။ သေဗၺသခၤါရာ အနိစၥာ (၂၂-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 4 minutes 7 views" title="၁၀၂။ သေဗၺသခၤါရာ အနိစၥာ (၂၂-၁၁-၁၉၆၀)">
၁၀၂။ သေဗၺသခၤါရာ အနိစၥာ (၂၂-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">103</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zVmOTvEIaEM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=104">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zVmOTvEIaEM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=104">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၀၃။ အေစလက ကႆဖဥပမာျပ(၁) ဆရာ့တာ၀န္ႏွင့္ ဒကာ့တာ၀န္ (၂၃-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၁၀၃။ အေစလက ကႆဖဥပမာျပ(၁) ဆရာ့တာ၀န္ႏွင့္ ဒကာ့တာ၀န္ (၂၃-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၀၃။ အေစလက ကႆဖဥပမာျပ(၁) ဆရာ့တာ၀န္ႏွင့္ ဒကာ့တာ၀န္ (၂၃-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">104</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=6ul6LHkv0Ec&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=105">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=6ul6LHkv0Ec&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=105">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၀၄။ အေစလက ကႆဖဥပမာျပ(၂) ဒုကၡလာပံုအေမးအေျဖ (၂၄-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၁၀၄။ အေစလက ကႆဖဥပမာျပ(၂) ဒုကၡလာပံုအေမးအေျဖ (၂၄-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၀၄။ အေစလက ကႆဖဥပမာျပ(၂) ဒုကၡလာပံုအေမးအေျဖ (၂၄-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">105</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VqxzZA_s2ss&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=106">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VqxzZA_s2ss&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=106">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 5 minutes">
1:05:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၀၅။ သုတ၀ါႏွင့္ အသုတ၀ါကြာျခားပံု (၂၄-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 5 minutes 4 views" title="၁၀၅။ သုတ၀ါႏွင့္ အသုတ၀ါကြာျခားပံု (၂၄-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၀၅။ သုတ၀ါႏွင့္ အသုတ၀ါကြာျခားပံု (၂၄-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">106</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=h3vTlcTSIhM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=107">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=h3vTlcTSIhM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=107">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၀၆။ သကၠာယဒိ႒ိခြြါေရး (၂၆-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 51 minutes 3 views" title="၁၀၆။ သကၠာယဒိ႒ိခြြါေရး (၂၆-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၀၆။ သကၠာယဒိ႒ိခြြါေရး (၂၆-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">107</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Yp00m8Cmrvw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=108">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Yp00m8Cmrvw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=108">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၀၇။ ေသရမွာေၾကာက္သူႏွင့္ မေၾကာက္သူတရားေတာ္ (၂၇-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 2 views" title="၁၀၇။ ေသရမွာေၾကာက္သူႏွင့္ မေၾကာက္သူတရားေတာ္ (၂၇-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၀၇။ ေသရမွာေၾကာက္သူႏွင့္ မေၾကာက္သူတရားေတာ္ (၂၇-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">108</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=W0Tt_OViO-A&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=109">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=W0Tt_OViO-A&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=109">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၀၈။ မိတ္ေဆြေကာင္းတစ္ေယာက္က ေျပာသည္ဟု သေဘာထားက်င့္ရန္ (၂၈-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 4 views" title="၁၀၈။ မိတ္ေဆြေကာင္းတစ္ေယာက္က ေျပာသည္ဟု သေဘာထားက်င့္ရန္ (၂၈-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၀၈။ မိတ္ေဆြေကာင္းတစ္ေယာက္က ေျပာသည္ဟု သေဘာထားက်င့္ရန္ (၂၈-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">109</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=bu-1EuO5jCY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=110">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=bu-1EuO5jCY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=110">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၀၉။ အျမင္မွန္ေပးပံု (၂၉-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၁၀၉။ အျမင္မွန္ေပးပံု (၂၉-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၀၉။ အျမင္မွန္ေပးပံု (၂၉-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">110</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jyPVShkxZuk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=111">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jyPVShkxZuk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=111">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/jyPVShkxZuk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAGCP_qFT8hZg6YKSckbIisr3dVXA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၁၀။ ေလာက္စာႏွင့္မီးခြဲျခားျပပံု (၃၀-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၁၁၀။ ေလာက္စာႏွင့္မီးခြဲျခားျပပံု (၃၀-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၁၀။ ေလာက္စာႏွင့္မီးခြဲျခားျပပံု (၃၀-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">111</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hcbtJbCcY-s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=112">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hcbtJbCcY-s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=112">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/hcbtJbCcY-s/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAs4SmWsZxkUrcUWNteYIMk2GrB6A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၁၁။ ေကာသလမင္းၾကီးအား ေသျခင္းတရားျပပံု (၃-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 49 minutes 3 views" title="၁၁၁။ ေကာသလမင္းၾကီးအား ေသျခင္းတရားျပပံု (၃-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၁၁။ ေကာသလမင္းၾကီးအား ေသျခင္းတရားျပပံု (၃-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">112</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=H5gqfR9EQvE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=113">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=H5gqfR9EQvE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=113">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/H5gqfR9EQvE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB6LsNZxbQ3KmMbAtG-x_Bxqh5tvw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၁၂။ အဓိပတိသံုးပါးႏွင့္ အားထုတ္ပါ၊ နံနက္အားထုတ္လွ်င္ ညေနရႏိုင္ပံု (၄-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 51 minutes 3 views" title="၁၁၂။ အဓိပတိသံုးပါးႏွင့္ အားထုတ္ပါ၊ နံနက္အားထုတ္လွ်င္ ညေနရႏိုင္ပံု (၄-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၁၂။ အဓိပတိသံုးပါးႏွင့္ အားထုတ္ပါ၊ နံနက္အားထုတ္လွ်င္ ညေနရႏိုင္ပံု (၄-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">113</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-qDLuUgpLy8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=114">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-qDLuUgpLy8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=114">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/-qDLuUgpLy8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDW0sgg8W9T9rVSvNVgKKsnjBGJAA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၁၃။ လူ႔သံေယာဇဥ္စြန္႔မွ နိဗၺာန္ရႏိုင္ပံု တရားေတာ္ (၅-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 50 minutes 8 views" title="၁၁၃။ လူ႔သံေယာဇဥ္စြန္႔မွ နိဗၺာန္ရႏိုင္ပံု တရားေတာ္ (၅-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၁၃။ လူ႔သံေယာဇဥ္စြန္႔မွ နိဗၺာန္ရႏိုင္ပံု တရားေတာ္ (၅-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">114</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=V_9yyBJl_Mk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=115">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=V_9yyBJl_Mk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=115">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/V_9yyBJl_Mk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBoA4K6c0i9axzyYtfDKqpD0WiwRg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၁၄။ သဒၵါတရားျဖင့္ ၾသဃမွ လြန္ေျမာက္ႏိုင္ပံု တရားေတာ္ (၆-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 50 minutes 5 views" title="၁၁၄။ သဒၵါတရားျဖင့္ ၾသဃမွ လြန္ေျမာက္ႏိုင္ပံု တရားေတာ္ (၆-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၁၄။ သဒၵါတရားျဖင့္ ၾသဃမွ လြန္ေျမာက္ႏိုင္ပံု တရားေတာ္ (၆-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">115</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=35giK6DFYP4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=116">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=35giK6DFYP4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=116">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/35giK6DFYP4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBk45xoGDiQZMY-BETgSgAYBxqHkg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၁၅။ ေသမင္းတမန္သတ္နည္း (၇-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 4 views" title="၁၁၅။ ေသမင္းတမန္သတ္နည္း (၇-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၁၅။ ေသမင္းတမန္သတ္နည္း (၇-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">116</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TnIV7r3cBZo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=117">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TnIV7r3cBZo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=117">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/TnIV7r3cBZo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDtW4tF0nzRZ_61PaoZad0nO-Ov-A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၁၆။ ကာလိကႏွင့္ အကာလိက (၈-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 2 views" title="၁၁၆။ ကာလိကႏွင့္ အကာလိက (၈-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၁၆။ ကာလိကႏွင့္ အကာလိက (၈-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">117</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CyZ1SKdy-Vg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=118">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CyZ1SKdy-Vg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=118">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/CyZ1SKdy-Vg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDqEsJAkt-neD48V4D9kHz4pCbmWw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="39 minutes">
39:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၁၇။ သႆတ၊ ဥေစၦဒရွိမရွိသိရန္ ကိုယ္တြင္းစံုစမ္းေရး (၉-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 39 minutes 6 views" title="၁၁၇။ သႆတ၊ ဥေစၦဒရွိမရွိသိရန္ ကိုယ္တြင္းစံုစမ္းေရး (၉-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၁၇။ သႆတ၊ ဥေစၦဒရွိမရွိသိရန္ ကိုယ္တြင္းစံုစမ္းေရး (၉-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">118</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=O4JHu8j8rss&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=119">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=O4JHu8j8rss&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=119">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/O4JHu8j8rss/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCK5B58zWmRRbcHGx_Z8pdmoFWN4g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၁၈။ ပ႑ိတတာနစၥေသ၀နာ မဂၤလာတရားေတာ္ (၁၁-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 21 views" title="၁၁၈။ ပ႑ိတတာနစၥေသ၀နာ မဂၤလာတရားေတာ္ (၁၁-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၁၈။ ပ႑ိတတာနစၥေသ၀နာ မဂၤလာတရားေတာ္ (၁၁-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">119</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NCujGlayd78&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=120">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NCujGlayd78&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=120">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/NCujGlayd78/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCTsVzK048AcoNG6Lx3OuH9wB_Hig"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၁၉။ ေဘးၾကီးေလးပါး တရားေတာ္ (၁၂-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 51 minutes 4 views" title="၁၁၉။ ေဘးၾကီးေလးပါး တရားေတာ္ (၁၂-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၁၉။ ေဘးၾကီးေလးပါး တရားေတာ္ (၁၂-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">120</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=w1RL9N_xjk8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=121">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=w1RL9N_xjk8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=121">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/w1RL9N_xjk8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAfOMn22ycQFyufsg2cafo3j8n8rg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၂၀။ နီ၀ရဏပယ္နည္း(၁) သံသရာတြင္းေနထိုင္ရပံု (၁၃-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 10 views" title="၁၂၀။ နီ၀ရဏပယ္နည္း(၁) သံသရာတြင္းေနထိုင္ရပံု (၁၃-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၂၀။ နီ၀ရဏပယ္နည္း(၁) သံသရာတြင္းေနထိုင္ရပံု (၁၃-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">121</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mtuJ65GRDbk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=122">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mtuJ65GRDbk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=122">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/mtuJ65GRDbk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBhMedlmrdC74_V42VUlIrrOEXDyA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၂၁။ နီ၀ရဏပယ္နည္း(၂) (၁၄-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 52 minutes 9 views" title="၁၂၁။ နီ၀ရဏပယ္နည္း(၂) (၁၄-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၂၁။ နီ၀ရဏပယ္နည္း(၂) (၁၄-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">122</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2SbSwbuaUoI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=123">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2SbSwbuaUoI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=123">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/2SbSwbuaUoI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDJ6SKbXIWVEEn5sVf8GSjqdqcoLQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၂၂။ နီ၀ရဏပယ္နည္း(၃) (၁၅-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 52 minutes 8 views" title="၁၂၂။ နီ၀ရဏပယ္နည္း(၃) (၁၅-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၂၂။ နီ၀ရဏပယ္နည္း(၃) (၁၅-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">123</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Y6THQYj-9Sw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=124">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Y6THQYj-9Sw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=124">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Y6THQYj-9Sw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCg0GVKvFSE8u9dQJJV9STrLgmN_g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၂၃။ ေလာဘကာမစၦႏၵနီ၀ရဏရွိေနလွ်င္ ေၾကြးတင္ေနေသာသူႏွင့္တူပံု (၁၇-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 10 views" title="၁၂၃။ ေလာဘကာမစၦႏၵနီ၀ရဏရွိေနလွ်င္ ေၾကြးတင္ေနေသာသူႏွင့္တူပံု (၁၇-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၂၃။ ေလာဘကာမစၦႏၵနီ၀ရဏရွိေနလွ်င္ ေၾကြးတင္ေနေသာသူႏွင့္တူပံု (၁၇-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">124</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=uNlFlbsDIzQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=125">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=uNlFlbsDIzQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=125">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/uNlFlbsDIzQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD626_beVK_gc20TlxQrK4RyG3mwA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၂၄။ ဗ်ာပါဒ နီ၀ရဏတရားရွိေနလွ်င္ ေရာဂါရေနသူႏွင့္တူပံု (၁၈-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 2 views" title="၁၂၄။ ဗ်ာပါဒ နီ၀ရဏတရားရွိေနလွ်င္ ေရာဂါရေနသူႏွင့္တူပံု (၁၈-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၂၄။ ဗ်ာပါဒ နီ၀ရဏတရားရွိေနလွ်င္ ေရာဂါရေနသူႏွင့္တူပံု (၁၈-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">125</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=rL_l-7OHbOw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=126">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=rL_l-7OHbOw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=126">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/rL_l-7OHbOw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCs1X5Pli7vhq-erWjVwalbvgnSmg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၂၅။ ဥဒၶစၥ ကုကၠဳစၥနီ၀ရဏရွိေနလွ်င္ ကၽြန္ဘ၀ေရာက္ေနသူႏွင့္တူပံု (၁၉-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 10 views" title="၁၂၅။ ဥဒၶစၥ ကုကၠဳစၥနီ၀ရဏရွိေနလွ်င္ ကၽြန္ဘ၀ေရာက္ေနသူႏွင့္တူပံု (၁၉-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၂၅။ ဥဒၶစၥ ကုကၠဳစၥနီ၀ရဏရွိေနလွ်င္ ကၽြန္ဘ၀ေရာက္ေနသူႏွင့္တူပံု (၁၉-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">126</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZazAV1ZBSxI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=127">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZazAV1ZBSxI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=127">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ZazAV1ZBSxI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDKsy7gD4coax4GPtZpdhoFLQrRoA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၂၆။ အႏွစ္ႏွစ္ေသာင္း အားထုတ္ေသာ ရဟန္းၾကီးဥပမာျပ (၂၀-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 6 views" title="၁၂၆။ အႏွစ္ႏွစ္ေသာင္း အားထုတ္ေသာ ရဟန္းၾကီးဥပမာျပ (၂၀-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၂၆။ အႏွစ္ႏွစ္ေသာင္း အားထုတ္ေသာ ရဟန္းၾကီးဥပမာျပ (၂၀-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">127</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Z-WOyjeUe90&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=128">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Z-WOyjeUe90&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=128">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Z-WOyjeUe90/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA98O5vFEw0HuGsiq50iNvxBd5d_g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၂၇။ ပထမမဂ္ကိုတားေသာ အ၀ိဇၨာ ၀ိစိကိစၦာနီ၀ရဏ ျဖစ္ေပၚျခင္း၏လက္သည္ (၂၁-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 51 minutes 6 views" title="၁၂၇။ ပထမမဂ္ကိုတားေသာ အ၀ိဇၨာ ၀ိစိကိစၦာနီ၀ရဏ ျဖစ္ေပၚျခင္း၏လက္သည္ (၂၁-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၂၇။ ပထမမဂ္ကိုတားေသာ အ၀ိဇၨာ ၀ိစိကိစၦာနီ၀ရဏ ျဖစ္ေပၚျခင္း၏လက္သည္ (၂၁-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">128</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-hMZWAKHm6g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=129">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-hMZWAKHm6g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=129">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/-hMZWAKHm6g/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCh9Oo9mabrKLFaUh_ZerS-Tp22Cg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၂၈။ ရွင္အႏုရာဓရဟန္းအား ဒိ႒ိကိစၦာခြါေပးပံု (၂၂-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၁၂၈။ ရွင္အႏုရာဓရဟန္းအား ဒိ႒ိကိစၦာခြါေပးပံု (၂၂-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၂၈။ ရွင္အႏုရာဓရဟန္းအား ဒိ႒ိကိစၦာခြါေပးပံု (၂၂-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">129</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=rLURv8jq1hc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=130">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=rLURv8jq1hc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=130">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/rLURv8jq1hc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAAmwW_Nl8cOb_J2JvquGnKhTvLZw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၂၉။ ရွင္ဆႏၵရဟန္း ဥပမာျပ ဒိ႒ိခြါနည္းႏွင့္ ၀ိပႆနာအလုပ္စဥ္ (၂၃-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 5 views" title="၁၂၉။ ရွင္ဆႏၵရဟန္း ဥပမာျပ ဒိ႒ိခြါနည္းႏွင့္ ၀ိပႆနာအလုပ္စဥ္ (၂၃-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၂၉။ ရွင္ဆႏၵရဟန္း ဥပမာျပ ဒိ႒ိခြါနည္းႏွင့္ ၀ိပႆနာအလုပ္စဥ္ (၂၃-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">130</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5UBZ-EGhBaE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=131">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5UBZ-EGhBaE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=131">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5UBZ-EGhBaE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDhuaA0SMH2y5t_4FKgUMqbKgNVxw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၃၀။ မာဂ႑ီပရိဗိုဇ္ သမုဒၵရာေျခာက္စင္း ဥပမာျပ (၂၅-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 3 views" title="၁၃၀။ မာဂ႑ီပရိဗိုဇ္ သမုဒၵရာေျခာက္စင္း ဥပမာျပ (၂၅-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၃၀။ မာဂ႑ီပရိဗိုဇ္ သမုဒၵရာေျခာက္စင္း ဥပမာျပ (၂၅-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">131</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=bOojwNBFdv0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=132">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=bOojwNBFdv0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=132">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/bOojwNBFdv0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLANuPAvV_6gljQnxqBQOy7TiCHVHQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၃၁။ မာဂ႑ီပုဏၰားၾကီးအား တရာေပးပံု (၂၆-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 49 minutes 6 views" title="၁၃၁။ မာဂ႑ီပုဏၰားၾကီးအား တရာေပးပံု (၂၆-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၃၁။ မာဂ႑ီပုဏၰားၾကီးအား တရာေပးပံု (၂၆-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">132</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=G0GtIusT45M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=133">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=G0GtIusT45M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=133">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/G0GtIusT45M/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA8q5k7QJks1b9KAk_dpNIQP8tv8Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၃၂။ မာဂ႑ီပုဏၰားၾကီးအား အရိယာမ်က္လံုးတပ္ေပးပံု (၂၇-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၁၃၂။ မာဂ႑ီပုဏၰားၾကီးအား အရိယာမ်က္လံုးတပ္ေပးပံု (၂၇-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၃၂။ မာဂ႑ီပုဏၰားၾကီးအား အရိယာမ်က္လံုးတပ္ေပးပံု (၂၇-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">133</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=iqmgEW0EB6k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=134">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=iqmgEW0EB6k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=134">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/iqmgEW0EB6k/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC5w085JLcDxsSyTfoFhAx3YlQd3g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၃၃။ မာဂ႑ီပုဏၰားၾကီးအား အရိယာမ်က္လံုးတပ္ေပးပံု(၂) (၂၈-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၁၃၃။ မာဂ႑ီပုဏၰားၾကီးအား အရိယာမ်က္လံုးတပ္ေပးပံု(၂) (၂၈-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၃၃။ မာဂ႑ီပုဏၰားၾကီးအား အရိယာမ်က္လံုးတပ္ေပးပံု(၂) (၂၈-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">134</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=UIURoDOIogY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=135">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=UIURoDOIogY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=135">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/UIURoDOIogY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDm6SSkQD0-g5q1SO-sQ-M-TPfMKw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၃၄။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား တရားေပးပံု (၂၉-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 3 views" title="၁၃၄။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား တရားေပးပံု (၂၉-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၃၄။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား တရားေပးပံု (၂၉-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">135</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=f0cTacDSakw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=136">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=f0cTacDSakw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=136">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/f0cTacDSakw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC18R9G8a1aGu7WsPYrMIM3Gv9cSA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၃၅။ ဣေျႏၵလံုျခံဳေစနည္း ဣျႏၵိယဘာ၀နာသုတ္ (၃၀-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 4 views" title="၁၃၅။ ဣေျႏၵလံုျခံဳေစနည္း ဣျႏၵိယဘာ၀နာသုတ္ (၃၀-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၃၅။ ဣေျႏၵလံုျခံဳေစနည္း ဣျႏၵိယဘာ၀နာသုတ္ (၃၀-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">136</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-qeI0_BfEEw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=137">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-qeI0_BfEEw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=137">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/-qeI0_BfEEw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBTRGVcnz8fmUSqEjK4kwFgh2Sciw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 8 minutes">
1:08:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၃၆။ ဦးေက်ာ္သိန္း+ေဒၚတင္လွတို႔၏ မဂၤလာေက်ာင္းတိုက္ ေရစက္ခ် (၃၁-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 8 minutes 6 views" title="၁၃၆။ ဦးေက်ာ္သိန္း+ေဒၚတင္လွတို႔၏ မဂၤလာေက်ာင္းတိုက္ ေရစက္ခ် (၃၁-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၁၃၆။ ဦးေက်ာ္သိန္း+ေဒၚတင္လွတို႔၏ မဂၤလာေက်ာင္းတိုက္ ေရစက္ခ် (၃၁-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">137</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=umUom6o8a5Y&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=138">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=umUom6o8a5Y&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=138">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/umUom6o8a5Y/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBiPgU1UhqiDyLzLpp5bDn9-bwCfw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၃၇။ ၀ဋ္ေၾကြးကို ခႏၶာႏွင့္မဆပ္ဘဲ ဉာဏ္ႏွင့္ဆပ္ၾကရန္ (၁-၁-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 6 views" title="၁၃၇။ ၀ဋ္ေၾကြးကို ခႏၶာႏွင့္မဆပ္ဘဲ ဉာဏ္ႏွင့္ဆပ္ၾကရန္ (၁-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၃၇။ ၀ဋ္ေၾကြးကို ခႏၶာႏွင့္မဆပ္ဘဲ ဉာဏ္ႏွင့္ဆပ္ၾကရန္ (၁-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">138</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=o0JIV3D4FTU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=139">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=o0JIV3D4FTU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=139">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/o0JIV3D4FTU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLATVB6psCCgPhu096_p5bLioyzOyA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၃၈။ ဒီခႏၶာပစ္ၿပီး ေနာက္ခႏၶာမရတာသည္ အေကာင္းဆံုး(ရွင္ဆႏၵ၀တၳဳ-၁) (၂-၁-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 4 views" title="၁၃၈။ ဒီခႏၶာပစ္ၿပီး ေနာက္ခႏၶာမရတာသည္ အေကာင္းဆံုး(ရွင္ဆႏၵ၀တၳဳ-၁) (၂-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၃၈။ ဒီခႏၶာပစ္ၿပီး ေနာက္ခႏၶာမရတာသည္ အေကာင္းဆံုး(ရွင္ဆႏၵ၀တၳဳ-၁) (၂-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">139</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4AZFkUD3g3A&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=140">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4AZFkUD3g3A&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=140">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/4AZFkUD3g3A/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB7eGYQXQa_8hyV5vIK-Q1TgZh_Hg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၃၉။ တြင္းေအာင္းေသာၾကြက္ပမာ ပုဂၢိဳလ္ေလးမ်ိဳးရွင္းပံု(ရွင္ဆႏၵ၀တၳဳ-၂) (၃-၁-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 2 views" title="၁၃၉။ တြင္းေအာင္းေသာၾကြက္ပမာ ပုဂၢိဳလ္ေလးမ်ိဳးရွင္းပံု(ရွင္ဆႏၵ၀တၳဳ-၂) (၃-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၃၉။ တြင္းေအာင္းေသာၾကြက္ပမာ ပုဂၢိဳလ္ေလးမ်ိဳးရွင္းပံု(ရွင္ဆႏၵ၀တၳဳ-၂) (၃-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">140</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=349FjJVWqu4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=141">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=349FjJVWqu4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=141">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/349FjJVWqu4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCm1AVCe0HmnbtuFsw9bHNhENNUCw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၄၀။ အေလးဂရုျပဳ၍ေနစရာ(ရွင္ဆႏၵ၀ိတၳဳ-၃) (၄-၁-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 5 views" title="၁၄၀။ အေလးဂရုျပဳ၍ေနစရာ(ရွင္ဆႏၵ၀ိတၳဳ-၃) (၄-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၄၀။ အေလးဂရုျပဳ၍ေနစရာ(ရွင္ဆႏၵ၀ိတၳဳ-၃) (၄-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">141</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7xBPJ9GYIN0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=142">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7xBPJ9GYIN0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=142">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/7xBPJ9GYIN0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCfN8qAd_Zi3WtKqEKxn55uxWrJEg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၄၁။ မဟာနာမ္မင္းၾကီးအား ေထာပတ္အိုးကြဲ ဥပမာျပ(ရွင္ဆႏၵ၀တၳဳ-၄) (၅-၁-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 4 views" title="၁၄၁။ မဟာနာမ္မင္းၾကီးအား ေထာပတ္အိုးကြဲ ဥပမာျပ(ရွင္ဆႏၵ၀တၳဳ-၄) (၅-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၄၁။ မဟာနာမ္မင္းၾကီးအား ေထာပတ္အိုးကြဲ ဥပမာျပ(ရွင္ဆႏၵ၀တၳဳ-၄) (၅-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">142</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=aFnLhsWCAT0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=143">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=aFnLhsWCAT0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=143">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/aFnLhsWCAT0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB3nxiUUhZKRzgAxxujq6wbiuzEHQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၄၂။ ရထ၀ိနီတသုတ္၊ ရထားခုနစ္စင္း ဥပမာျပ (၆-၁-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 2 views" title="၁၄၂။ ရထ၀ိနီတသုတ္၊ ရထားခုနစ္စင္း ဥပမာျပ (၆-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၄၂။ ရထ၀ိနီတသုတ္၊ ရထားခုနစ္စင္း ဥပမာျပ (၆-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">143</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5Q1NWGGQHa4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=144">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5Q1NWGGQHa4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=144">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5Q1NWGGQHa4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLByGldyn5eL6jlt1cDqcjgCE9Tv1g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၄၃။ သာေရာပမသုတ္ (၇-၁-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 7 views" title="၁၄၃။ သာေရာပမသုတ္ (၇-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၄၃။ သာေရာပမသုတ္ (၇-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">144</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1DkD1K3w2dU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=145">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1DkD1K3w2dU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=145">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/1DkD1K3w2dU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCMt7dJng-Lvvd8ixE7PFIRKvYF6g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 10 minutes">
1:10:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၄၄။ ရွင္သာရိပုတၱရာက အနာထပိဏ္သူေ႒းအား ျဖစ္ပ်က္ရွဳနည္းသင္ေပးပံု (၈-၁-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 10 minutes 4 views" title="၁၄၄။ ရွင္သာရိပုတၱရာက အနာထပိဏ္သူေ႒းအား ျဖစ္ပ်က္ရွဳနည္းသင္ေပးပံု (၈-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၄၄။ ရွင္သာရိပုတၱရာက အနာထပိဏ္သူေ႒းအား ျဖစ္ပ်က္ရွဳနည္းသင္ေပးပံု (၈-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">145</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=t14W0KS-9F0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=146">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=t14W0KS-9F0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=146">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/t14W0KS-9F0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAkrT438sclfIpjjVJSV2iAETGXnA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၄၅။ မာလံုက်ဥပမာျပ (၉-၁-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 3 views" title="၁၄၅။ မာလံုက်ဥပမာျပ (၉-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၄၅။ မာလံုက်ဥပမာျပ (၉-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">146</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=sfcaa5jNsTc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=147">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=sfcaa5jNsTc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=147">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/sfcaa5jNsTc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD7MvJlmbnV3gGZn9-QChoj3Nlm9w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၄၆။ ပုထုဇဥ္ရဟန္းႏွင့္ ရဟႏၱာၾကီးေလးပါး အေမးအေျဖ (၁၁-၁-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 22 views" title="၁၄၆။ ပုထုဇဥ္ရဟန္းႏွင့္ ရဟႏၱာၾကီးေလးပါး အေမးအေျဖ (၁၁-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၄၆။ ပုထုဇဥ္ရဟန္းႏွင့္ ရဟႏၱာၾကီးေလးပါး အေမးအေျဖ (၁၁-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">147</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=k4VPtaTbUJk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=148">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=k4VPtaTbUJk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=148">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/k4VPtaTbUJk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLChJjCqM5vEgjJRHy8p16mDfnfhsQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၄၇။ ၀ိေဏာပမသုတ္၊ ေစာင္းထဲမွာအသံရွာပံု (၁၂-၁-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၁၄၇။ ၀ိေဏာပမသုတ္၊ ေစာင္းထဲမွာအသံရွာပံု (၁၂-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၄၇။ ၀ိေဏာပမသုတ္၊ ေစာင္းထဲမွာအသံရွာပံု (၁၂-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">148</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jDyp4-TrKTM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=149">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jDyp4-TrKTM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=149">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/jDyp4-TrKTM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA2ZmTePwckfDWEmHsTu6eToR7Bug"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၄၈။ သားေကာင္းေျခာက္ေကာင္ ဥပမာျပ(၁) (၁၃-၁-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၁၄၈။ သားေကာင္းေျခာက္ေကာင္ ဥပမာျပ(၁) (၁၃-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၄၈။ သားေကာင္းေျခာက္ေကာင္ ဥပမာျပ(၁) (၁၃-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">149</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=dMp8iu2qocg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=150">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=dMp8iu2qocg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=150">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/dMp8iu2qocg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBBSJFLFlKXlpYWenftOBafsK-t_A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:43
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၄၉။ ဦးခ်မ္း+ေဒၚခန္႔တို႔၏ ဘုရားျပဳျပင္ အလွဴေရစက္ခ် (၁၄-၁-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 7 views" title="၁၄၉။ ဦးခ်မ္း+ေဒၚခန္႔တို႔၏ ဘုရားျပဳျပင္ အလွဴေရစက္ခ် (၁၄-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၄၉။ ဦးခ်မ္း+ေဒၚခန္႔တို႔၏ ဘုရားျပဳျပင္ အလွဴေရစက္ခ် (၁၄-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">150</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=f1MHwEn2IeE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=151">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=f1MHwEn2IeE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=151">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/f1MHwEn2IeE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDZInwNzDE7dhb0Getq8JEOvmWXjg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၅၀။ အာသ၀၀င္ရိုးခ်ိဳးရန္ (၁၆-၁-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 5 views" title="၁၅၀။ အာသ၀၀င္ရိုးခ်ိဳးရန္ (၁၆-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၅၀။ အာသ၀၀င္ရိုးခ်ိဳးရန္ (၁၆-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">151</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jP-zy1z5nn4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=152">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jP-zy1z5nn4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=152">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/jP-zy1z5nn4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDfoYYbQFEmB_TGLZRzWr2-dFdMJA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၅၁။ စူဠေသာတာပန္ေသနည္း (၁၇-၁-၁၉၆၁) by mogok sayadaw 1 year ago 51 minutes 5 views" title="၁၅၁။ စူဠေသာတာပန္ေသနည္း (၁၇-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၅၁။ စူဠေသာတာပန္ေသနည္း (၁၇-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">152</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5QXmi4672so&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=153">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5QXmi4672so&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=153">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5QXmi4672so/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDclxuQLHIcw4nzWW-x7fUelqjDtg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၅၂။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္ (၁၈-၁-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 9 views" title="၁၅၂။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္ (၁၈-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၅၂။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္ (၁၈-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">153</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lUg91YbAzLQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=154">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lUg91YbAzLQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=154">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/lUg91YbAzLQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAw-SRCEHDKINeuXFdinne-ihE1kw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၅၃။ ဆႏၵရာဂပယ္ျခင္းသည္ ဘုရား၏အယူ၀ါဒျဖစ္ပံု (၁၉-၁-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 28 views" title="၁၅၃။ ဆႏၵရာဂပယ္ျခင္းသည္ ဘုရား၏အယူ၀ါဒျဖစ္ပံု (၁၉-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၅၃။ ဆႏၵရာဂပယ္ျခင္းသည္ ဘုရား၏အယူ၀ါဒျဖစ္ပံု (၁၉-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">154</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4slOwvm8tuo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=155">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4slOwvm8tuo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=155">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/4slOwvm8tuo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBOgIGxljJLleZDqRoCYGAVF7F4gA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၅၄။ ပပဥၥတရားသံုးပါး ခ်ဳပ္ရန္ ေ၀ဒနာႏုပႆနာ ရွဳပြားနည္း (၁-၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 14 views" title="၁၅၄။ ပပဥၥတရားသံုးပါး ခ်ဳပ္ရန္ ေ၀ဒနာႏုပႆနာ ရွဳပြားနည္း (၁-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၅၄။ ပပဥၥတရားသံုးပါး ခ်ဳပ္ရန္ ေ၀ဒနာႏုပႆနာ ရွဳပြားနည္း (၁-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">155</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=6SCjqPZS7Qc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=156">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=6SCjqPZS7Qc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=156">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/6SCjqPZS7Qc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBLeWfGa7-oFU-N96N3FJr47r7oXw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၅၅။ မဂၢင္ေဖာင္ျပင္ရန္၊ မရဏေရေဘးကာကြယ္ေရး (၂-၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၁၅၅။ မဂၢင္ေဖာင္ျပင္ရန္၊ မရဏေရေဘးကာကြယ္ေရး (၂-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၅၅။ မဂၢင္ေဖာင္ျပင္ရန္၊ မရဏေရေဘးကာကြယ္ေရး (၂-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">156</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=bTrY7ajILEQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=157">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=bTrY7ajILEQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=157">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/bTrY7ajILEQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC80DVusY80iwl_6jHV4A8iQ84Xmg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၅၆။ အခ်ိန္ကာလ၏ စားဖတ္၊ ၀ါးဖတ္ ျဖစ္ေနပံုတရား (၃-၂-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 7 views" title="၁၅၆။ အခ်ိန္ကာလ၏ စားဖတ္၊ ၀ါးဖတ္ ျဖစ္ေနပံုတရား (၃-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၅၆။ အခ်ိန္ကာလ၏ စားဖတ္၊ ၀ါးဖတ္ ျဖစ္ေနပံုတရား (၃-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">157</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hxyx3AfEn0U&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=158">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hxyx3AfEn0U&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=158">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/hxyx3AfEn0U/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCdRWG4S8hdyxYJgiIeXUR1kN9yzA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၅၇။ ကံအမ်ိဳးမ်ိဳးကို အေဟာသိျဖစ္ေအာင္ လုပ္နည္းတရားေတာ္ (၄-၂-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၁၅၇။ ကံအမ်ိဳးမ်ိဳးကို အေဟာသိျဖစ္ေအာင္ လုပ္နည္းတရားေတာ္ (၄-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၅၇။ ကံအမ်ိဳးမ်ိဳးကို အေဟာသိျဖစ္ေအာင္ လုပ္နည္းတရားေတာ္ (၄-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">158</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=JxgmRBLxoys&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=159">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=JxgmRBLxoys&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=159">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/JxgmRBLxoys/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDj3okLiTwCY3fHEpAodGhKv8qRtA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၁၅၈။ သခၤတဒုကၡမွ အသခၤတနိဗၺာန္ ေပၚလာပံု (၅-၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 7 views" title="၁၅၈။ သခၤတဒုကၡမွ အသခၤတနိဗၺာန္ ေပၚလာပံု (၅-၂-၁၉၆၁)">
၁၅၈။ သခၤတဒုကၡမွ အသခၤတနိဗၺာန္ ေပၚလာပံု (၅-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">159</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gSmF1pkOp2Y&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=160">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gSmF1pkOp2Y&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=160">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/gSmF1pkOp2Y/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBdGG4nlP-VoDQPIEuJtNpfpir8rg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၅၉။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ခႏၶာျဖစ္စဥ္ျဖတ္ရန္ (၆-၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 7 views" title="၁၅၉။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ခႏၶာျဖစ္စဥ္ျဖတ္ရန္ (၆-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၅၉။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ခႏၶာျဖစ္စဥ္ျဖတ္ရန္ (၆-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">160</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Y2z0iA9FRZ8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=161">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Y2z0iA9FRZ8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=161">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Y2z0iA9FRZ8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCuJlgtGZtxksc39MPnhz6F6SnxaA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၆၀။ အရွိႏွင့္အသိ ကိုက္ေအာင္လုပ္နည္း၊ စိတၱႏုပႆနာအလုပ္ေပး (၇-၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 9 views" title="၁၆၀။ အရွိႏွင့္အသိ ကိုက္ေအာင္လုပ္နည္း၊ စိတၱႏုပႆနာအလုပ္ေပး (၇-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၆၀။ အရွိႏွင့္အသိ ကိုက္ေအာင္လုပ္နည္း၊ စိတၱႏုပႆနာအလုပ္ေပး (၇-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">161</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=aDXoPQYI7fA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=162">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=aDXoPQYI7fA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=162">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/aDXoPQYI7fA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB3nDTGtE7WSm6F5c22cWLK3o2bUg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၆၁။ စိတၱႏုပႆနာ အလုပ္ေပးတရားေတာ္ (၈-၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 1,728 views" title="၁၆၁။ စိတၱႏုပႆနာ အလုပ္ေပးတရားေတာ္ (၈-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၆၁။ စိတၱႏုပႆနာ အလုပ္ေပးတရားေတာ္ (၈-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">162</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CQfkvRmFQFo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=163">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CQfkvRmFQFo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=163">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/CQfkvRmFQFo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAQev9Ex_pJyGpeEIeiBNnJFde7Gg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၆၂။ အရွင္အႏုရာဓဥပမာျပ ဒိ႒ိျဖဳတ္ေရးတရားေတာ္(၁) (၉-၂-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 3 views" title="၁၆၂။ အရွင္အႏုရာဓဥပမာျပ ဒိ႒ိျဖဳတ္ေရးတရားေတာ္(၁) (၉-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၆၂။ အရွင္အႏုရာဓဥပမာျပ ဒိ႒ိျဖဳတ္ေရးတရားေတာ္(၁) (၉-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">163</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=vcu8Ph6jDHo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=164">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=vcu8Ph6jDHo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=164">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/vcu8Ph6jDHo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAVxJ3cVQ43EaFd2kIS2IHmj94ulw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၆၃။ အရွင္အႏုရာဓဥပမာျပ ဒိ႒ိျဖဳတ္ေရးတရားေတာ္(၂) (၁၀-၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 5 views" title="၁၆၃။ အရွင္အႏုရာဓဥပမာျပ ဒိ႒ိျဖဳတ္ေရးတရားေတာ္(၂) (၁၀-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၆၃။ အရွင္အႏုရာဓဥပမာျပ ဒိ႒ိျဖဳတ္ေရးတရားေတာ္(၂) (၁၀-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">164</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mvIMEioJ0S8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=165">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mvIMEioJ0S8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=165">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/mvIMEioJ0S8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA0TmNztMlcPTSnMVPmDd1ILIfJLg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၆၄။ ခႏၶာပဋိစၥသမုပၸါဒ္ ခႏၶာအစဥ္သိ ဒိ႒ိျပဳတ္ေရး (၁၁-၂-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 4 views" title="၁၆၄။ ခႏၶာပဋိစၥသမုပၸါဒ္ ခႏၶာအစဥ္သိ ဒိ႒ိျပဳတ္ေရး (၁၁-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၆၄။ ခႏၶာပဋိစၥသမုပၸါဒ္ ခႏၶာအစဥ္သိ ဒိ႒ိျပဳတ္ေရး (၁၁-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">165</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VcOROW0Efmc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=166">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VcOROW0Efmc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=166">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/VcOROW0Efmc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAmugQiCxqm28c6TtF2uxYGDK7COw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:12
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၆၅။ ရွင္အႏုရာဓ ဒိ႒ိ၊ ၀ိစိကိစၦာကြာျပီး ရဟႏၱာျဖစ္ပံု (၁၂-၂-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 4 views" title="၁၆၅။ ရွင္အႏုရာဓ ဒိ႒ိ၊ ၀ိစိကိစၦာကြာျပီး ရဟႏၱာျဖစ္ပံု (၁၂-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၆၅။ ရွင္အႏုရာဓ ဒိ႒ိ၊ ၀ိစိကိစၦာကြာျပီး ရဟႏၱာျဖစ္ပံု (၁၂-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">166</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=R95L_eeHotg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=167">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=R95L_eeHotg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=167">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/R95L_eeHotg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD6SowaimmektqvlFix4-vPD_f4Cg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၆၆။ ၀ိပႆနာမလုပ္ခင္ ဒိ႒ိအရင္ျဖဳတ္ရမည္ (၁၃-၂-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 6 views" title="၁၆၆။ ၀ိပႆနာမလုပ္ခင္ ဒိ႒ိအရင္ျဖဳတ္ရမည္ (၁၃-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၆၆။ ၀ိပႆနာမလုပ္ခင္ ဒိ႒ိအရင္ျဖဳတ္ရမည္ (၁၃-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">167</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lStmBSwP0CY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=168">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lStmBSwP0CY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=168">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/lStmBSwP0CY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBMks2bVokldXI5V5n_heg_KL-wkA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၆၇။ ဖြားဖက္ေတာ္ရွင္ဆႏၵ အေၾကာင္းျပဳ၍ မဂ္ဉာဏ္ဖိုလ္ဉာဏ္ (၁၃-၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 4 views" title="၁၆၇။ ဖြားဖက္ေတာ္ရွင္ဆႏၵ အေၾကာင္းျပဳ၍ မဂ္ဉာဏ္ဖိုလ္ဉာဏ္ (၁၃-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၆၇။ ဖြားဖက္ေတာ္ရွင္ဆႏၵ အေၾကာင္းျပဳ၍ မဂ္ဉာဏ္ဖိုလ္ဉာဏ္ (၁၃-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">168</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=rJEUOw4gvI0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=169">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=rJEUOw4gvI0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=169">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/rJEUOw4gvI0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB-4ClctxTazJJN4Eg2xLhaZNekvg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၆၈။ ဒိ႒ိခံေနလွ်င္ မဂ္ဖိုလ္မရႏိုင္ေၾကာင္း (၁၄-၂-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 3 views" title="၁၆၈။ ဒိ႒ိခံေနလွ်င္ မဂ္ဖိုလ္မရႏိုင္ေၾကာင္း (၁၄-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၆၈။ ဒိ႒ိခံေနလွ်င္ မဂ္ဖိုလ္မရႏိုင္ေၾကာင္း (၁၄-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">169</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EMyOyPO3gus&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=170">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EMyOyPO3gus&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=170">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/EMyOyPO3gus/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC9KDOe2NGsZe-XCA1zGgEUlGePww"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၆၉။ ဒိ႒ိခြါမႈကိုေရွ႕ထားၿပီး ၀ိပႆနာရွဳမႈကို ေနာက္ထားရပံု (၁၆-၂-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 10 views" title="၁၆၉။ ဒိ႒ိခြါမႈကိုေရွ႕ထားၿပီး ၀ိပႆနာရွဳမႈကို ေနာက္ထားရပံု (၁၆-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၆၉။ ဒိ႒ိခြါမႈကိုေရွ႕ထားၿပီး ၀ိပႆနာရွဳမႈကို ေနာက္ထားရပံု (၁၆-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">170</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WDmV3eHa4YY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=171">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WDmV3eHa4YY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=171">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/WDmV3eHa4YY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBFBK7mC1zWQX7E24Vg1IQNjEDljw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၇၀။ ကာယ၀ိဉာဏ္ကို ၀ိပႆနာရွဳနည္း (၁၇-၂-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 6 views" title="၁၇၀။ ကာယ၀ိဉာဏ္ကို ၀ိပႆနာရွဳနည္း (၁၇-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၇၀။ ကာယ၀ိဉာဏ္ကို ၀ိပႆနာရွဳနည္း (၁၇-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">171</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NURTaqpur2s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=172">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NURTaqpur2s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=172">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/NURTaqpur2s/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBTuouyeVw2-fzI2iSNG-2y81g7kg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၇၁။ မွန္ေထာင္တရားေတာ္ (၁၈-၂-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 24 views" title="၁၇၁။ မွန္ေထာင္တရားေတာ္ (၁၈-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၇၁။ မွန္ေထာင္တရားေတာ္ (၁၈-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">172</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hEwbaZJHUeQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=173">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hEwbaZJHUeQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=173">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/hEwbaZJHUeQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLArPzcvrkmw40PDkf-SKVwmqtJHzA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၇၂။ ဒိ႒ိမကြာလွ်င္နိဗၺာန္မျမင္ႏိုင္ပံု (၁၉-၂-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 9 views" title="၁၇၂။ ဒိ႒ိမကြာလွ်င္နိဗၺာန္မျမင္ႏိုင္ပံု (၁၉-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၇၂။ ဒိ႒ိမကြာလွ်င္နိဗၺာန္မျမင္ႏိုင္ပံု (၁၉-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">173</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=iJencFlykd0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=174">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=iJencFlykd0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=174">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/iJencFlykd0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB2HMGbdZ31uPPMqepiUWbZ9-_lAw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၇၃။ လူမိုက္ႏွင့္လူလိမၼာထူးျခားပံု (၂၀-၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 10 views" title="၁၇၃။ လူမိုက္ႏွင့္လူလိမၼာထူးျခားပံု (၂၀-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၇၃။ လူမိုက္ႏွင့္လူလိမၼာထူးျခားပံု (၂၀-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">174</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=6Ep4dd1rtz4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=175">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=6Ep4dd1rtz4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=175">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/6Ep4dd1rtz4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAlMF4mJgcArpn7lo5z8Pkb8sA3RA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၇၄။ မဂၢျဗဟၼစရိယအက်င့္ (၂၁-၂-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၁၇၄။ မဂၢျဗဟၼစရိယအက်င့္ (၂၁-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၇၄။ မဂၢျဗဟၼစရိယအက်င့္ (၂၁-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">175</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KqA5jaJj9K4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=176">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KqA5jaJj9K4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=176">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/KqA5jaJj9K4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBtzKcjlDyYMsnSnAbJ7pDO0yKqrw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၇၅။ စရိုက္ႏွင့္ေလ်ာ္စြာ ကမၼ႒ာန္းေပးရပံု(၁) (၂၃-၂-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 7 views" title="၁၇၅။ စရိုက္ႏွင့္ေလ်ာ္စြာ ကမၼ႒ာန္းေပးရပံု(၁) (၂၃-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၇၅။ စရိုက္ႏွင့္ေလ်ာ္စြာ ကမၼ႒ာန္းေပးရပံု(၁) (၂၃-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">176</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=0Dt6MVmCD48&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=177">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=0Dt6MVmCD48&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=177">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/0Dt6MVmCD48/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBlj6Qu8f4cxoVBPMIt0Q4BjX6qoQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၇၆။ စရိုက္ႏွင့္ေလ်ာ္စြာ ကမၼ႒ာန္းေပးရပံု(၂) (၂၄-၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၁၇၆။ စရိုက္ႏွင့္ေလ်ာ္စြာ ကမၼ႒ာန္းေပးရပံု(၂) (၂၄-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၇၆။ စရိုက္ႏွင့္ေလ်ာ္စြာ ကမၼ႒ာန္းေပးရပံု(၂) (၂၄-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">177</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=OKja7TkZv3o&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=178">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=OKja7TkZv3o&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=178">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/OKja7TkZv3o/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCc3xtGsXxZ7D56u5TMBlVbzTzYbQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၇၇။ အိုေဘးမေစာင့္ဘဲ ၀ိပႆနာလုပ္သင့္ေၾကာင္း တိုက္တြန္းပံု (၂၅-၂-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 8 views" title="၁၇၇။ အိုေဘးမေစာင့္ဘဲ ၀ိပႆနာလုပ္သင့္ေၾကာင္း တိုက္တြန္းပံု (၂၅-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၇၇။ အိုေဘးမေစာင့္ဘဲ ၀ိပႆနာလုပ္သင့္ေၾကာင္း တိုက္တြန္းပံု (၂၅-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">178</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=eIElfB65AN4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=179">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=eIElfB65AN4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=179">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/eIElfB65AN4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC-Aof5OMxYxamVHgSQlm3OGNnIlg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၇၈။ ဒုလႅဘတရားႏွင့္ၾကံဳခိုက္မွာ အခ်ိန္မျဖဳန္းပါႏွင့္ တိုက္တြန္းျခင္း (၂၆-၂-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 7 views" title="၁၇၈။ ဒုလႅဘတရားႏွင့္ၾကံဳခိုက္မွာ အခ်ိန္မျဖဳန္းပါႏွင့္ တိုက္တြန္းျခင္း (၂၆-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၇၈။ ဒုလႅဘတရားႏွင့္ၾကံဳခိုက္မွာ အခ်ိန္မျဖဳန္းပါႏွင့္ တိုက္တြန္းျခင္း (၂၆-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">179</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jcdv46ZYAfI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=180">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jcdv46ZYAfI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=180">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/jcdv46ZYAfI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBo3PS-Fh1Z_dbDL-p0aEsmc-8iuQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၇၉။ အဖံုးငါးပါးဖြင့္လွစ္နည္း တရားေတာ္ (၂၇-၂-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 5 views" title="၁၇၉။ အဖံုးငါးပါးဖြင့္လွစ္နည္း တရားေတာ္ (၂၇-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၇၉။ အဖံုးငါးပါးဖြင့္လွစ္နည္း တရားေတာ္ (၂၇-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">180</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5IthzYbK-8k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=181">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5IthzYbK-8k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=181">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5IthzYbK-8k/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCYe1yAsscXMjdYJGWYKaGtg2-9-w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၈၀။ ရာဓရဟန္းအေၾကာင္းျပဳ ေ၀ဒနာႏုပႆနာရွဳပြားနည္း (၂၇-၂-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 14 views" title="၁၈၀။ ရာဓရဟန္းအေၾကာင္းျပဳ ေ၀ဒနာႏုပႆနာရွဳပြားနည္း (၂၇-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၈၀။ ရာဓရဟန္းအေၾကာင္းျပဳ ေ၀ဒနာႏုပႆနာရွဳပြားနည္း (၂၇-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">181</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KW3BUbjwZGs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=182">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KW3BUbjwZGs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=182">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/KW3BUbjwZGs/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDK7Y6z82D7FEgnLgji5IhgorWWlQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:56
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၈၁။ သမၼသနသုတ္၊ မိမိကိုယ္ကိုသုံးသပ္ရန္ (၁-၃-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၁၈၁။ သမၼသနသုတ္၊ မိမိကိုယ္ကိုသုံးသပ္ရန္ (၁-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၈၁။ သမၼသနသုတ္၊ မိမိကိုယ္ကိုသုံးသပ္ရန္ (၁-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">182</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=K6jnyq7-Buo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=183">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=K6jnyq7-Buo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=183">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/K6jnyq7-Buo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDVZrnhoEMilqGNiTVsS5XRYxA_dg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၈၂။ ၀ိပႆနာဉာဏ္မွ မဂ္ဉာဏ္သို႔ကူးေျပာင္းပံု (၂-၃-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 7 views" title="၁၈၂။ ၀ိပႆနာဉာဏ္မွ မဂ္ဉာဏ္သို႔ကူးေျပာင္းပံု (၂-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၈၂။ ၀ိပႆနာဉာဏ္မွ မဂ္ဉာဏ္သို႔ကူးေျပာင္းပံု (၂-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">183</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=YG50yu1uHes&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=184">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=YG50yu1uHes&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=184">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/YG50yu1uHes/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBiusP0f0BH1lCq2T4pLJAItETNww"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၈၃။ ကိုယ့္ခႏၶာကိုယ္ သံုးသပ္ပံု (၃-၃-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 12 views" title="၁၈၃။ ကိုယ့္ခႏၶာကိုယ္ သံုးသပ္ပံု (၃-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၈၃။ ကိုယ့္ခႏၶာကိုယ္ သံုးသပ္ပံု (၃-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">184</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NG2XcVVXdQg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=185">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NG2XcVVXdQg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=185">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/NG2XcVVXdQg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBlOcH-HRp_MFK8VSC3RXIXQu400Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၈၄။ ေတာင္ၾကီးေလးလံုးၾကိပ္သည္ကို ခံေနၾကရပံု (၄-၃-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 11 views" title="၁၈၄။ ေတာင္ၾကီးေလးလံုးၾကိပ္သည္ကို ခံေနၾကရပံု (၄-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၈၄။ ေတာင္ၾကီးေလးလံုးၾကိပ္သည္ကို ခံေနၾကရပံု (၄-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">185</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wVU0XBQ66sQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=186">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wVU0XBQ66sQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=186">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/wVU0XBQ66sQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDEfExFX8SL0eirJww_jc8rAlaZYg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၈၅။ ခႏၶာေခၚရာကို ဉာဏ္ကသြားရမည္ (၅-၃-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 6 views" title="၁၈၅။ ခႏၶာေခၚရာကို ဉာဏ္ကသြားရမည္ (၅-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၈၅။ ခႏၶာေခၚရာကို ဉာဏ္ကသြားရမည္ (၅-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">186</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-Dz1y6p8nag&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=187">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-Dz1y6p8nag&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=187">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/-Dz1y6p8nag/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCpORhow1C9UPbTajWia1QxHA2hMA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၈၆။ ဓမၼာႏုဓမၼပဋိပတၱိျဖစ္ရန္ႏွင့္ ျဖစ္ပ်က္ႏွင့္မဂ္ကိုက္ရန္ (၆-၃-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 11 views" title="၁၈၆။ ဓမၼာႏုဓမၼပဋိပတၱိျဖစ္ရန္ႏွင့္ ျဖစ္ပ်က္ႏွင့္မဂ္ကိုက္ရန္ (၆-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၈၆။ ဓမၼာႏုဓမၼပဋိပတၱိျဖစ္ရန္ႏွင့္ ျဖစ္ပ်က္ႏွင့္မဂ္ကိုက္ရန္ (၆-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">187</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mt_S2H1fC-U&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=188">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mt_S2H1fC-U&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=188">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/mt_S2H1fC-U/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD5wX_M7K84ejrVR0EE1VX7MZqVzA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:43
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၈၇။ ခႏၶာ၀န္ၾကမ္းခရီးလမ္းသြားရံု (၇-၃-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 7 views" title="၁၈၇။ ခႏၶာ၀န္ၾကမ္းခရီးလမ္းသြားရံု (၇-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၈၇။ ခႏၶာ၀န္ၾကမ္းခရီးလမ္းသြားရံု (၇-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">188</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jNr2s9wQv30&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=189">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jNr2s9wQv30&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=189">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/jNr2s9wQv30/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAuvqbjY9SGlpK8Ga-V4nGmA9biCA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၈၈။ အဓိပတိ(၃)ပါးထား၍ တရားအားထုတ္ရမည္ (၈-၃-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၁၈၈။ အဓိပတိ(၃)ပါးထား၍ တရားအားထုတ္ရမည္ (၈-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၈၈။ အဓိပတိ(၃)ပါးထား၍ တရားအားထုတ္ရမည္ (၈-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">189</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=P0067mkENu0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=190">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=P0067mkENu0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=190">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/P0067mkENu0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCU3OvlbPb5WcVdTZbclS4JHzK2VA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၈၉။ အတၱျပဳတ္ေအာင္ ရွဳနည္း (၁၀-၃-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 6 views" title="၁၈၉။ အတၱျပဳတ္ေအာင္ ရွဳနည္း (၁၀-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၈၉။ အတၱျပဳတ္ေအာင္ ရွဳနည္း (၁၀-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">190</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5q3W6uumV1Q&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=191">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5q3W6uumV1Q&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=191">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5q3W6uumV1Q/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBbABS3wmWZpl0J0O3ZyyZTd5xeKg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၉၀။ ဘ၀ထူးၾကီးကို အလြဲသံုးစား မလုပ္ၾကရန္ (၁၂-၃-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 7 views" title="၁၉၀။ ဘ၀ထူးၾကီးကို အလြဲသံုးစား မလုပ္ၾကရန္ (၁၂-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၉၀။ ဘ၀ထူးၾကီးကို အလြဲသံုးစား မလုပ္ၾကရန္ (၁၂-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">191</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=b5HnEPex6hE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=192">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=b5HnEPex6hE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=192">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/b5HnEPex6hE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCnmNX4rWJ5aAFPcCVJF7ihWD1buw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၉၁။ ဘ၀ထူးၾကီးကို အလြဲသံုးစားမလုပ္ဘဲ၊ ဒိ႒ိခြါၿပီး နိဗၺာန္၀င္ရန္ (၁၃-၃-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၁၉၁။ ဘ၀ထူးၾကီးကို အလြဲသံုးစားမလုပ္ဘဲ၊ ဒိ႒ိခြါၿပီး နိဗၺာန္၀င္ရန္ (၁၃-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၉၁။ ဘ၀ထူးၾကီးကို အလြဲသံုးစားမလုပ္ဘဲ၊ ဒိ႒ိခြါၿပီး နိဗၺာန္၀င္ရန္ (၁၃-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">192</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZHLRVXM7a54&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=193">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZHLRVXM7a54&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=193">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ZHLRVXM7a54/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCJXAxMgCwKCn23PvUPmFO1tDHV_w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၉၂။ သႆတ၊ ဥေစၦဒျဖဳတ္နည္း၊ ေလာင္စာသိမ္း၍မီးၿငိမ္းရန္ (၁၄-၃-၁၉၆၁) by mogok sayadaw 1 year ago 51 minutes 7 views" title="၁၉၂။ သႆတ၊ ဥေစၦဒျဖဳတ္နည္း၊ ေလာင္စာသိမ္း၍မီးၿငိမ္းရန္ (၁၄-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၉၂။ သႆတ၊ ဥေစၦဒျဖဳတ္နည္း၊ ေလာင္စာသိမ္း၍မီးၿငိမ္းရန္ (၁၄-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">193</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=xedj6oAqt3o&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=194">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=xedj6oAqt3o&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=194">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/xedj6oAqt3o/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBv9HNcxOKaGD-My4s4DzciNeOKCA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၉၃။ နားကတရားနာ ဉာဏ္ကခႏၶာလွည့္ရန္ (၁၅-၃-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 8 views" title="၁၉၃။ နားကတရားနာ ဉာဏ္ကခႏၶာလွည့္ရန္ (၁၅-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၉၃။ နားကတရားနာ ဉာဏ္ကခႏၶာလွည့္ရန္ (၁၅-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">194</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fHZfLDNLBu8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=195">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fHZfLDNLBu8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=195">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/fHZfLDNLBu8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCZ52QRSkHeleY07ZpyNO3zDXJRBQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၉၄။ ဒိ႒ိအရင္ခြါရမည္ (၁၆-၃-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 4 views" title="၁၉၄။ ဒိ႒ိအရင္ခြါရမည္ (၁၆-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၉၄။ ဒိ႒ိအရင္ခြါရမည္ (၁၆-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">195</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=_fH0SCNgAco&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=196">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=_fH0SCNgAco&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=196">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/_fH0SCNgAco/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCl5767GZVrbDag3exuf1Dh9s-1YQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၉၅။ ပုထုဇဥ္နစ္မ်ိဳးရွိေနပံု (၁၇-၃-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၁၉၅။ ပုထုဇဥ္နစ္မ်ိဳးရွိေနပံု (၁၇-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၉၅။ ပုထုဇဥ္နစ္မ်ိဳးရွိေနပံု (၁၇-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">196</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CUogfR0xGOQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=197">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CUogfR0xGOQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=197">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/CUogfR0xGOQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCElweeOazYNKzscwKL78pdEjiCpQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၉၆။ ငက်ိဳးငကန္းႏွင့္ ခရီးသြားပံု (၁၈-၃-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၁၉၆။ ငက်ိဳးငကန္းႏွင့္ ခရီးသြားပံု (၁၈-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၉၆။ ငက်ိဳးငကန္းႏွင့္ ခရီးသြားပံု (၁၈-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">197</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jEKNYUJnuGc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=198">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jEKNYUJnuGc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=198">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/jEKNYUJnuGc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDJP8QwtGdFyQp13GrXOTrYfJTKAQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၉၇။ ကိသုေကာပမသုတ္(၁) ကိုယ့္အေၾကာင္းကိုယ္သိရမည္ (၂၀-၃-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 11 views" title="၁၉၇။ ကိသုေကာပမသုတ္(၁) ကိုယ့္အေၾကာင္းကိုယ္သိရမည္ (၂၀-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၉၇။ ကိသုေကာပမသုတ္(၁) ကိုယ့္အေၾကာင္းကိုယ္သိရမည္ (၂၀-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">198</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5lm7xVobm98&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=199">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5lm7xVobm98&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=199">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5lm7xVobm98/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCBpk-Qni3ntxWO2SEQLF1IqtfDcg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:54
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၉၈။ ကိသုေကာပမသုတ္(၂) ကိုယ့္အေၾကာင္းကိုယ္သိရမည္ (၂၁-၃-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 6 views" title="၁၉၈။ ကိသုေကာပမသုတ္(၂) ကိုယ့္အေၾကာင္းကိုယ္သိရမည္ (၂၁-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၉၈။ ကိသုေကာပမသုတ္(၂) ကိုယ့္အေၾကာင္းကိုယ္သိရမည္ (၂၁-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">199</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=LMD2WJ9a8OI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=200">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=LMD2WJ9a8OI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=200">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/LMD2WJ9a8OI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAwuXiletWmI7X2X0eSoB7vvYEDqA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၁၉၉။ ကိသုေကာပမသုတ္၊ ၀ိပႆနာရွဳဖို႔ အၾကိမ္ၾကိမ္မွာျခင္း (၂၂-၃-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၁၉၉။ ကိသုေကာပမသုတ္၊ ၀ိပႆနာရွဳဖို႔ အၾကိမ္ၾကိမ္မွာျခင္း (၂၂-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၁၉၉။ ကိသုေကာပမသုတ္၊ ၀ိပႆနာရွဳဖို႔ အၾကိမ္ၾကိမ္မွာျခင္း (၂၂-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">200</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=0usuqaS363g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=201">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=0usuqaS363g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=201">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/0usuqaS363g/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD_oKYhDi7waF9uGN-dhEPP3fk9KQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၀၀။ ပုထုဇဥ္ရဟန္းအေမး၊ ရဟႏၱာၾကီးေလးပါးအေျဖ (၂၃-၃-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 18 views" title="၂၀၀။ ပုထုဇဥ္ရဟန္းအေမး၊ ရဟႏၱာၾကီးေလးပါးအေျဖ (၂၃-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၀၀။ ပုထုဇဥ္ရဟန္းအေမး၊ ရဟႏၱာၾကီးေလးပါးအေျဖ (၂၃-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">201</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=QWwHnIIw5pw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=202">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=QWwHnIIw5pw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=202">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/QWwHnIIw5pw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD624v2UZo1oPOrGCVSZcrB857vmQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၀၁။ သစၥာသိဖို႔ အေရးၾကီးပံု (၁၉-၃-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 8 views" title="၂၀၁။ သစၥာသိဖို႔ အေရးၾကီးပံု (၁၉-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၀၁။ သစၥာသိဖို႔ အေရးၾကီးပံု (၁၉-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">202</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=QrFtXAbbC7k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=203">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=QrFtXAbbC7k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=203">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/QrFtXAbbC7k/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAGvbtgmc-mFRxRx5JPsE4cZZidMQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၀၂။ ၀ိေကာပမသုတ္၊ ေစာင္းထဲမွာအသံရွာပံု (၂၄-၃-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၂၀၂။ ၀ိေကာပမသုတ္၊ ေစာင္းထဲမွာအသံရွာပံု (၂၄-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၀၂။ ၀ိေကာပမသုတ္၊ ေစာင္းထဲမွာအသံရွာပံု (၂၄-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">203</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=xI0NOVX5_wQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=204">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=xI0NOVX5_wQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=204">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/xI0NOVX5_wQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDSMJIQ5qYnM9syP4zbCdzx1z7bKQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၀၃။ ျမဳပ္လမ္းေမ်ာလမ္းမွ ထြက္ၾကရန္ (၂၅-၃-၁၉၆၁) by mogok sayadaw 1 year ago 49 minutes 11 views" title="၂၀၃။ ျမဳပ္လမ္းေမ်ာလမ္းမွ ထြက္ၾကရန္ (၂၅-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၀၃။ ျမဳပ္လမ္းေမ်ာလမ္းမွ ထြက္ၾကရန္ (၂၅-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">204</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=MqdFr_1Rgmg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=205">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=MqdFr_1Rgmg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=205">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/MqdFr_1Rgmg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBIjr9kAyPwxLPqybgt4brr9SBgPQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၀၄။ ျဖစ္ပ်က္တစ္ခုပိုင္လွ်င္ အကုန္ပိုင္ႏိုင္ပံု၊ ၀ိေကာပမသုတ္ (၂၇-၃-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 8 views" title="၂၀၄။ ျဖစ္ပ်က္တစ္ခုပိုင္လွ်င္ အကုန္ပိုင္ႏိုင္ပံု၊ ၀ိေကာပမသုတ္ (၂၇-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၀၄။ ျဖစ္ပ်က္တစ္ခုပိုင္လွ်င္ အကုန္ပိုင္ႏိုင္ပံု၊ ၀ိေကာပမသုတ္ (၂၇-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">205</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=3NHeQtTnX-s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=206">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=3NHeQtTnX-s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=206">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/3NHeQtTnX-s/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBk30oH_RxTxRsjyQ9q-Cpus07ZjA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၀၅။ မတင္းတိမ္ေကာင္းေသာ တရားငါးပါးတရားေတာ္ (၂၈-၃-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 6 views" title="၂၀၅။ မတင္းတိမ္ေကာင္းေသာ တရားငါးပါးတရားေတာ္ (၂၈-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၀၅။ မတင္းတိမ္ေကာင္းေသာ တရားငါးပါးတရားေတာ္ (၂၈-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">206</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=S8Gm4GaQX1g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=207">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=S8Gm4GaQX1g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=207">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/S8Gm4GaQX1g/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDXjKEds1C2ZY6YCwpbJvYwHKa22A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၂၀၆။ ဆပြါဏေကာပမာသုတ္ (၂၉-၃-၁၉၆၁) by mogok sayadaw 1 year ago 50 minutes 6 views" title="၂၀၆။ ဆပြါဏေကာပမာသုတ္ (၂၉-၃-၁၉၆၁)">
၂၀၆။ ဆပြါဏေကာပမာသုတ္ (၂၉-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">207</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=YfusWfZEGHw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=208">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=YfusWfZEGHw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=208">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/YfusWfZEGHw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBgG7wzn_NJyX4-u6A-v6IeKtWuXQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၀၇။ သားေကာင္ေျခာက္ေကာင္ ဥပမာ(၂) (၃၀-၃-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 11 views" title="၂၀၇။ သားေကာင္ေျခာက္ေကာင္ ဥပမာ(၂) (၃၀-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၀၇။ သားေကာင္ေျခာက္ေကာင္ ဥပမာ(၂) (၃၀-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">208</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=F-Jfs-b5cTM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=209">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=F-Jfs-b5cTM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=209">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/F-Jfs-b5cTM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAsOm8rEje57GY5V32KHzqYCqaZgA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၀၈။ ရွင္ေခမကႏွင့္ ရဟန္းၾကီး(၆၀)တို႔ ရဟႏၱာျဖစ္ၾကပံု (၃၁-၃-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 4 views" title="၂၀၈။ ရွင္ေခမကႏွင့္ ရဟန္းၾကီး(၆၀)တို႔ ရဟႏၱာျဖစ္ၾကပံု (၃၁-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၀၈။ ရွင္ေခမကႏွင့္ ရဟန္းၾကီး(၆၀)တို႔ ရဟႏၱာျဖစ္ၾကပံု (၃၁-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">209</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=QIPHshatOFE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=210">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=QIPHshatOFE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=210">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/QIPHshatOFE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCOWhHw3fdD9C2M2mZaEp2t6xyoxQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၀၉။ ေတ၀ိဇၨသုတ္၊ သႏၵိ႒ိေကာကိုယ္တိုင္ျမင္ရန္ (၁-၅-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 7 views" title="၂၀၉။ ေတ၀ိဇၨသုတ္၊ သႏၵိ႒ိေကာကိုယ္တိုင္ျမင္ရန္ (၁-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၀၉။ ေတ၀ိဇၨသုတ္၊ သႏၵိ႒ိေကာကိုယ္တိုင္ျမင္ရန္ (၁-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">210</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Tk3hRLeMikg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=211">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Tk3hRLeMikg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=211">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Tk3hRLeMikg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCqhnwoGMaaFaYr4uyt17jdEOFwvQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၁၀။ ပင္ကိုယ္သေဘာစြန္႔တာသည္ ဒုကၡသစၥာျဖစ္ပံု (၂-၅-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 7 views" title="၂၁၀။ ပင္ကိုယ္သေဘာစြန္႔တာသည္ ဒုကၡသစၥာျဖစ္ပံု (၂-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၁၀။ ပင္ကိုယ္သေဘာစြန္႔တာသည္ ဒုကၡသစၥာျဖစ္ပံု (၂-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">211</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WHotcuYQdVg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=212">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WHotcuYQdVg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=212">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/WHotcuYQdVg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAYjfwIeXmurTa9xYf-uNLAZIscUA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၁၁။ သစၥာမသိတာသည္ ေၾကာက္စရာေကာင္းပံု(မိလကၡရဟန္းဥပမာျပ) (၃-၅-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၂၁၁။ သစၥာမသိတာသည္ ေၾကာက္စရာေကာင္းပံု(မိလကၡရဟန္းဥပမာျပ) (၃-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၁၁။ သစၥာမသိတာသည္ ေၾကာက္စရာေကာင္းပံု(မိလကၡရဟန္းဥပမာျပ) (၃-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">212</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ybGgNE1WwEk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=213">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ybGgNE1WwEk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=213">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၁၂။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၁) (၄-၅-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 9 views" title="၂၁၂။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၁) (၄-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၁၂။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၁) (၄-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">213</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=3xzLvsRuI2E&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=214">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=3xzLvsRuI2E&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=214">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၁၃။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၂) (၅-၅-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 4 views" title="၂၁၃။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၂) (၅-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၁၃။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၂) (၅-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">214</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=DAV_b4CkHXE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=215">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=DAV_b4CkHXE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=215">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၁၄။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၃) (၆-၅-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 6 views" title="၂၁၄။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၃) (၆-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၁၄။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၃) (၆-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">215</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=pPc2uiNsy0Q&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=216">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=pPc2uiNsy0Q&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=216">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၁၅။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၄) (၇-၅-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 6 views" title="၂၁၅။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၄) (၇-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၁၅။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၄) (၇-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">216</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=RMkK3Ef-goE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=217">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=RMkK3Ef-goE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=217">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၁၆။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၅) (၈-၅-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၂၁၆။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၅) (၈-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၁၆။ အေမွာင္ငါးစဥ္ အလင္းငါးခ်က္(၅) (၈-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">217</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TPGrAELV2CU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=218">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TPGrAELV2CU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=218">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:56
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၁၇။ သာတိရဟန္း၀တၳဳ၊ ခႏၶာငါးပါးဒုကၡသစၥာ (၉-၅-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 39 views" title="၂၁၇။ သာတိရဟန္း၀တၳဳ၊ ခႏၶာငါးပါးဒုကၡသစၥာ (၉-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၁၇။ သာတိရဟန္း၀တၳဳ၊ ခႏၶာငါးပါးဒုကၡသစၥာ (၉-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">218</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5UUT5jxdXjg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=219">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5UUT5jxdXjg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=219">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၂၁၈။ မေသရာအမတနိဗၺာန္ (၁၀-၅-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 18 views" title="၂၁၈။ မေသရာအမတနိဗၺာန္ (၁၀-၅-၁၉၆၁)">
၂၁၈။ မေသရာအမတနိဗၺာန္ (၁၀-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">219</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lphpAQGqZi0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=220">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lphpAQGqZi0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=220">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၁၉။ ခႏၶာငါးပါးမွ ေ၀ဒနာကိုခြဲ၍ေဟာပံု (၁၁-၅-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 12 views" title="၂၁၉။ ခႏၶာငါးပါးမွ ေ၀ဒနာကိုခြဲ၍ေဟာပံု (၁၁-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၁၉။ ခႏၶာငါးပါးမွ ေ၀ဒနာကိုခြဲ၍ေဟာပံု (၁၁-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">220</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=UnxZic1pgUI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=221">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=UnxZic1pgUI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=221">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၂၀။ ခႏၶာငါးပါးမွ စိတ္ကိုခြဲ၍ေဟာၾကားပံု (၁၂-၅-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 6 views" title="၂၂၀။ ခႏၶာငါးပါးမွ စိတ္ကိုခြဲ၍ေဟာၾကားပံု (၁၂-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၂၀။ ခႏၶာငါးပါးမွ စိတ္ကိုခြဲ၍ေဟာၾကားပံု (၁၂-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">221</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=sdzP-3YL-SY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=222">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=sdzP-3YL-SY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=222">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၂၁။ သစၥာသိမွ နိဗၺာန္ရပံုတရားေတာ္ (၁၃-၅-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 18 views" title="၂၂၁။ သစၥာသိမွ နိဗၺာန္ရပံုတရားေတာ္ (၁၃-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၂၁။ သစၥာသိမွ နိဗၺာန္ရပံုတရားေတာ္ (၁၃-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">222</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lpeWc0eeW-4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=223">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lpeWc0eeW-4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=223">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:43
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၂၂။ ႏွလံုးသြင္းမွန္မွ နိဗၺာန္ရပံုတရားေတာ္ (၁၄-၅-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 13 views" title="၂၂၂။ ႏွလံုးသြင္းမွန္မွ နိဗၺာန္ရပံုတရားေတာ္ (၁၄-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၂၂။ ႏွလံုးသြင္းမွန္မွ နိဗၺာန္ရပံုတရားေတာ္ (၁၄-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">223</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jw5SfdJ8it8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=224">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jw5SfdJ8it8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=224">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၂၃။ တဏွာအပ္ခ်ဳပ္သမား ဥပမာျပ (၁၅-၅-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၂၂၃။ တဏွာအပ္ခ်ဳပ္သမား ဥပမာျပ (၁၅-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၂၃။ တဏွာအပ္ခ်ဳပ္သမား ဥပမာျပ (၁၅-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">224</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=QlNefcy4ea4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=225">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=QlNefcy4ea4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=225">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၂၄။ ဣျႏၵိယဘာ၀နာသုတ္(၁) (၃၀-၅-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 4 views" title="၂၂၄။ ဣျႏၵိယဘာ၀နာသုတ္(၁) (၃၀-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၂၄။ ဣျႏၵိယဘာ၀နာသုတ္(၁) (၃၀-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">225</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=z88ItjFmk2k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=226">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=z88ItjFmk2k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=226">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="40 minutes">
40:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၂၅။ ဣျႏၵိယဘာ၀နာသုတ္(၂) (၃၁-၅-၁၉၆၁) by mogok sayadaw 1 year ago 40 minutes 13 views" title="၂၂၅။ ဣျႏၵိယဘာ၀နာသုတ္(၂) (၃၁-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၂၅။ ဣျႏၵိယဘာ၀နာသုတ္(၂) (၃၁-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">226</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=PHc5olDK6_Y&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=227">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=PHc5olDK6_Y&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=227">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၂၆။ ဣျႏၵိယဘာ၀နာသုတ္(၃) (၁-၆-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 5 views" title="၂၂၆။ ဣျႏၵိယဘာ၀နာသုတ္(၃) (၁-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၂၆။ ဣျႏၵိယဘာ၀နာသုတ္(၃) (၁-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">227</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=pFBZfAxYIWg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=228">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=pFBZfAxYIWg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=228">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:54
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၂၇။ ၀ိပလႅာသတရားေတာ္(၁) (၁၇-၆-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၂၂၇။ ၀ိပလႅာသတရားေတာ္(၁) (၁၇-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၂၇။ ၀ိပလႅာသတရားေတာ္(၁) (၁၇-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">228</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Q5ukPlH4bRs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=229">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Q5ukPlH4bRs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=229">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၂၈။ ၀ိပလႅာသတရားေတာ္(၂) (၁၈-၆-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၂၂၈။ ၀ိပလႅာသတရားေတာ္(၂) (၁၈-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၂၈။ ၀ိပလႅာသတရားေတာ္(၂) (၁၈-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">229</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Z173RpaQ9ao&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=230">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Z173RpaQ9ao&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=230">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၂၉။ ကံေပၚကို ၀ိပလႅာသ(၁၂)ပါးအုပ္ခ်ဳပ္ပံု (၂၀-၆-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 12 views" title="၂၂၉။ ကံေပၚကို ၀ိပလႅာသ(၁၂)ပါးအုပ္ခ်ဳပ္ပံု (၂၀-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၂၉။ ကံေပၚကို ၀ိပလႅာသ(၁၂)ပါးအုပ္ခ်ဳပ္ပံု (၂၀-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">230</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=T2YncdeuaDE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=231">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=T2YncdeuaDE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=231">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/T2YncdeuaDE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDr-hkO40FHRGo2J73KNi1-yo3SPg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၃၀။ ေလွဥပမာျပ ၀ိပလႅာသတရားေတာ္ (၂၁-၆-၁၉၆၁) by mogok sayadaw 1 year ago 48 minutes 8 views" title="၂၃၀။ ေလွဥပမာျပ ၀ိပလႅာသတရားေတာ္ (၂၁-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၃၀။ ေလွဥပမာျပ ၀ိပလႅာသတရားေတာ္ (၂၁-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">231</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VIis367e0f4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=232">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VIis367e0f4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=232">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/VIis367e0f4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBR_mhF6qZDAHg_uc-dV98Ke6B0GQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၃၁။ ၀ိပႆနာအလုပ္သည္ ေတာထဲမွ က်ားသစ္၊ က်ားတို႔ကဲ့သို႔ေစာင့္ဖမ္းရန္ (၂၂-၆-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 34 views" title="၂၃၁။ ၀ိပႆနာအလုပ္သည္ ေတာထဲမွ က်ားသစ္၊ က်ားတို႔ကဲ့သို႔ေစာင့္ဖမ္းရန္ (၂၂-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၃၁။ ၀ိပႆနာအလုပ္သည္ ေတာထဲမွ က်ားသစ္၊ က်ားတို႔ကဲ့သို႔ေစာင့္ဖမ္းရန္ (၂၂-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">232</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-Cqc6-Tw06s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=233">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-Cqc6-Tw06s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=233">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/-Cqc6-Tw06s/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC4m9kgd_cIgMzZ6oOZh-PmGpclEA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၃၂။ ကာလ၊ မရဏတို႔၏ စားဖတ္၊ ၀ါးဖတ္မျဖစ္ေစေရး (၂၃-၆-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 8 views" title="၂၃၂။ ကာလ၊ မရဏတို႔၏ စားဖတ္၊ ၀ါးဖတ္မျဖစ္ေစေရး (၂၃-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၃၂။ ကာလ၊ မရဏတို႔၏ စားဖတ္၊ ၀ါးဖတ္မျဖစ္ေစေရး (၂၃-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">233</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=LfoYBtUYspg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=234">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=LfoYBtUYspg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=234">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/LfoYBtUYspg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDHxBEcuRNV6I0T44HybCfeEzCThQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၃၃။ ပထမနိဗၺာန္ရခ်င္လွ်င္ ဒိ႒ိေရွ႕ထားျဖဳတ္ရမည္ (၂၄-၆-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 6 views" title="၂၃၃။ ပထမနိဗၺာန္ရခ်င္လွ်င္ ဒိ႒ိေရွ႕ထားျဖဳတ္ရမည္ (၂၄-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၃၃။ ပထမနိဗၺာန္ရခ်င္လွ်င္ ဒိ႒ိေရွ႕ထားျဖဳတ္ရမည္ (၂၄-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">234</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=12z8J59DIr0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=235">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=12z8J59DIr0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=235">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/12z8J59DIr0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAxIxm0HW19mDbrr0ooew4jK6AssA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၃၄။ ဒိ႒ိသံုးမ်ိဳးျဖဳတ္ပံုႏွင့္ အပါယ္သြားမည့္ ပဋိစၥသမုပၸါဒ္ျဖတ္ေပးပံု (၂၅-၆-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၂၃၄။ ဒိ႒ိသံုးမ်ိဳးျဖဳတ္ပံုႏွင့္ အပါယ္သြားမည့္ ပဋိစၥသမုပၸါဒ္ျဖတ္ေပးပံု (၂၅-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၃၄။ ဒိ႒ိသံုးမ်ိဳးျဖဳတ္ပံုႏွင့္ အပါယ္သြားမည့္ ပဋိစၥသမုပၸါဒ္ျဖတ္ေပးပံု (၂၅-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">235</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=33XmsPLYiCA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=236">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=33XmsPLYiCA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=236">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/33XmsPLYiCA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC6083MXFN72f-Qt9MO5vSC8DqgTg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၃၅။ ယမကရဟန္း၀တၳဳ၊ ဥေစၦဒဒိ႒ိျဖတ္ေရး တရားေတာ္ (၁၄-၇-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၂၃၅။ ယမကရဟန္း၀တၳဳ၊ ဥေစၦဒဒိ႒ိျဖတ္ေရး တရားေတာ္ (၁၄-၇-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၃၅။ ယမကရဟန္း၀တၳဳ၊ ဥေစၦဒဒိ႒ိျဖတ္ေရး တရားေတာ္ (၁၄-၇-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">236</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1O3DLc8fZIs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=237">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1O3DLc8fZIs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=237">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/1O3DLc8fZIs/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDktAJCKbvMW7V_rdnNRw0fWlqoLA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၃၆။ ယမကရဟန္း၀တၳဳ(၂) (၁၅-၇-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၂၃၆။ ယမကရဟန္း၀တၳဳ(၂) (၁၅-၇-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၃၆။ ယမကရဟန္း၀တၳဳ(၂) (၁၅-၇-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">237</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jLodwSae-Cg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=238">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jLodwSae-Cg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=238">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/jLodwSae-Cg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBSvKMu76Z4tA_xOgJev5oLRvfXXA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 5 minutes">
1:05:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၃၇။ ခႏၶာငါးပါးသူသတ္ေယာက်ာ္း (၂၇-၇-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 5 minutes 7 views" title="၂၃၇။ ခႏၶာငါးပါးသူသတ္ေယာက်ာ္း (၂၇-၇-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၃၇။ ခႏၶာငါးပါးသူသတ္ေယာက်ာ္း (၂၇-၇-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">238</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EedOPtEgS2M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=239">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EedOPtEgS2M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=239">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/EedOPtEgS2M/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCz7GH1_liA_NdhSr1AwBePfTljiw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၃၈။ ၀ဋ္ကၽြတ္၊ ကံျဖတ္တရားေတာ္ (၂၉-၇-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 3 views" title="၂၃၈။ ၀ဋ္ကၽြတ္၊ ကံျဖတ္တရားေတာ္ (၂၉-၇-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၃၈။ ၀ဋ္ကၽြတ္၊ ကံျဖတ္တရားေတာ္ (၂၉-၇-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">239</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fIKyhAaRFdA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=240">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fIKyhAaRFdA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=240">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/fIKyhAaRFdA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCrB-74HK08osE8veiPQ_SBjeLMmw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၃၉။ ကံျဖတ္၊ တဏွာျဖတ္၊ ၀ဋ္ျဖတ္ (၃၀-၇-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 6 views" title="၂၃၉။ ကံျဖတ္၊ တဏွာျဖတ္၊ ၀ဋ္ျဖတ္ (၃၀-၇-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၃၉။ ကံျဖတ္၊ တဏွာျဖတ္၊ ၀ဋ္ျဖတ္ (၃၀-၇-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">240</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Ms_170_tkLM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=241">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Ms_170_tkLM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=241">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Ms_170_tkLM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDUCoY0k4OYnF5NAV9FYHo51iyzRA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:54
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၄၀။ တဏွာ ဥပါဒါန္ကံျဖတ္ (၃၁-၇-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 4 views" title="၂၄၀။ တဏွာ ဥပါဒါန္ကံျဖတ္ (၃၁-၇-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၄၀။ တဏွာ ဥပါဒါန္ကံျဖတ္ (၃၁-၇-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">241</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=HlJsaVl2tIw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=242">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=HlJsaVl2tIw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=242">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/HlJsaVl2tIw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDDEV8Zh3LRhL7m3O9zZlWGqDAaMw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၄၁။ ကိုယ့္ခႏၶာသံုးသပ္ပံု တရားေတာ္ (၁-၈-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 3 views" title="၂၄၁။ ကိုယ့္ခႏၶာသံုးသပ္ပံု တရားေတာ္ (၁-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၄၁။ ကိုယ့္ခႏၶာသံုးသပ္ပံု တရားေတာ္ (၁-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">242</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EACTcJq8ybs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=243">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EACTcJq8ybs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=243">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/EACTcJq8ybs/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC3Q-MhIibciBWa2AYzrSJuRMX6eQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၄၂။ ၀ိပလႅာသတံတိုင္းအတြင္း ေမွာင္က်ေနပံု (၂-၈-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၂၄၂။ ၀ိပလႅာသတံတိုင္းအတြင္း ေမွာင္က်ေနပံု (၂-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၄၂။ ၀ိပလႅာသတံတိုင္းအတြင္း ေမွာင္က်ေနပံု (၂-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">243</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=C-RA3hXXK5g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=244">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=C-RA3hXXK5g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=244">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၄၃။ ၀ိပလႅာသ(၁၂)ပါးအေၾကာင္း (၃-၈-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 7 views" title="၂၄၃။ ၀ိပလႅာသ(၁၂)ပါးအေၾကာင္း (၃-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၄၃။ ၀ိပလႅာသ(၁၂)ပါးအေၾကာင္း (၃-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">244</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qiVjliqUQGU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=245">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qiVjliqUQGU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=245">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၄၄။ မဂ္မွတပါး ကယ္မည့္သူမရွိႏိုင္ပံု (၄-၈-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 8 views" title="၂၄၄။ မဂ္မွတပါး ကယ္မည့္သူမရွိႏိုင္ပံု (၄-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၄၄။ မဂ္မွတပါး ကယ္မည့္သူမရွိႏိုင္ပံု (၄-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">245</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=JWlQX82kCBU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=246">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=JWlQX82kCBU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=246">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၄၅။ သႆတ၊ ဥေစၦဒကင္းစင္ေရးတရားေတာ္ (၅-၈-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 5 views" title="၂၄၅။ သႆတ၊ ဥေစၦဒကင္းစင္ေရးတရားေတာ္ (၅-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၄၅။ သႆတ၊ ဥေစၦဒကင္းစင္ေရးတရားေတာ္ (၅-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">246</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7k8wBqxvCzM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=247">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7k8wBqxvCzM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=247">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၄၆။ သႆတ၊ ဥေစၦဒ သိမႈႏွင့္ျပဳတ္ေရးတရားေတာ္ (၆-၈-၁၉၆၁) by mogok sayadaw 1 year ago 51 minutes 5 views" title="၂၄၆။ သႆတ၊ ဥေစၦဒ သိမႈႏွင့္ျပဳတ္ေရးတရားေတာ္ (၆-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၄၆။ သႆတ၊ ဥေစၦဒ သိမႈႏွင့္ျပဳတ္ေရးတရားေတာ္ (၆-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">247</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=C9tEdBEC450&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=248">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=C9tEdBEC450&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=248">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၄၇။ အမွန္မွားေၾကာင့္ က်န္အမွားေတြ ဆက္တိုက္ျဖစ္ပံု (၇-၈-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 3 views" title="၂၄၇။ အမွန္မွားေၾကာင့္ က်န္အမွားေတြ ဆက္တိုက္ျဖစ္ပံု (၇-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၄၇။ အမွန္မွားေၾကာင့္ က်န္အမွားေတြ ဆက္တိုက္ျဖစ္ပံု (၇-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">248</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=oeCaQF06d9U&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=249">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=oeCaQF06d9U&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=249">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၄၈။ ခိုကိုးရာ အားထားရာ မွီခိုရာအစစ္ရွာသင့္ေၾကာင္း (၈-၈-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 4 views" title="၂၄၈။ ခိုကိုးရာ အားထားရာ မွီခိုရာအစစ္ရွာသင့္ေၾကာင္း (၈-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၄၈။ ခိုကိုးရာ အားထားရာ မွီခိုရာအစစ္ရွာသင့္ေၾကာင္း (၈-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">249</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=MSXXPhe9yRw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=250">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=MSXXPhe9yRw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=250">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၄၉။ သာသနာတြင္းတရားႏွင့္ သာသနာပတရား (၉-၈-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 5 views" title="၂၄၉။ သာသနာတြင္းတရားႏွင့္ သာသနာပတရား (၉-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၄၉။ သာသနာတြင္းတရားႏွင့္ သာသနာပတရား (၉-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">250</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-Wjcs0iDZ3A&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=251">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-Wjcs0iDZ3A&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=251">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၅၀။ အျခားအေရးထက္ ငရဲမ်ိဳးေစ့ျဖဳတ္ေရးက ပို၍အေရးၾကီးပံု (၁၀-၈-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၂၅၀။ အျခားအေရးထက္ ငရဲမ်ိဳးေစ့ျဖဳတ္ေရးက ပို၍အေရးၾကီးပံု (၁၀-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၅၀။ အျခားအေရးထက္ ငရဲမ်ိဳးေစ့ျဖဳတ္ေရးက ပို၍အေရးၾကီးပံု (၁၀-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">251</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fmgxsSVSwko&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=252">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fmgxsSVSwko&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=252">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၂၅၁။ ၀ဋ္သံုးပါးလည္ပံု (၁၁-၈-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 5 views" title="၂၅၁။ ၀ဋ္သံုးပါးလည္ပံု (၁၁-၈-၁၉၆၁)">
၂၅၁။ ၀ဋ္သံုးပါးလည္ပံု (၁၁-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">252</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=e5MdzbCba3Q&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=253">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=e5MdzbCba3Q&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=253">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၅၂။ သစၥာသိမွနိဗၺာန္ရပံု (၁၂-၈-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 3 views" title="၂၅၂။ သစၥာသိမွနိဗၺာန္ရပံု (၁၂-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၅၂။ သစၥာသိမွနိဗၺာန္ရပံု (၁၂-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">253</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CVW7nd9Tv-k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=254">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CVW7nd9Tv-k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=254">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၅၃။ ဒုကၡမွလြတ္ေျမာက္ေၾကာင္း လမ္းခြဲရွာရန္တရားေတာ္ (၁၃-၈-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 17 views" title="၂၅၃။ ဒုကၡမွလြတ္ေျမာက္ေၾကာင္း လမ္းခြဲရွာရန္တရားေတာ္ (၁၃-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၅၃။ ဒုကၡမွလြတ္ေျမာက္ေၾကာင္း လမ္းခြဲရွာရန္တရားေတာ္ (၁၃-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">254</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hZMo552t7oY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=255">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hZMo552t7oY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=255">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၅၄။ ကံျပတ္(၁)တရားေတာ္ (၁၄-၈-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 5 views" title="၂၅၄။ ကံျပတ္(၁)တရားေတာ္ (၁၄-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၅၄။ ကံျပတ္(၁)တရားေတာ္ (၁၄-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">255</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=GKwJZHfm3sw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=256">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=GKwJZHfm3sw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=256">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၅၅။ ကမၼႆကတ သမၼာဒိ႒ိႏွင့္ ၀ိပႆနာသမၼာဒိ႒ိ ျခားနားပံု (၁၆-၈-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 11 views" title="၂၅၅။ ကမၼႆကတ သမၼာဒိ႒ိႏွင့္ ၀ိပႆနာသမၼာဒိ႒ိ ျခားနားပံု (၁၆-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၅၅။ ကမၼႆကတ သမၼာဒိ႒ိႏွင့္ ၀ိပႆနာသမၼာဒိ႒ိ ျခားနားပံု (၁၆-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">256</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=IHTK6CqMNFQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=257">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=IHTK6CqMNFQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=257">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၅၆။ ကံျပတ္(၂)တရားေတာ္ (၁၅-၈-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 4 views" title="၂၅၆။ ကံျပတ္(၂)တရားေတာ္ (၁၅-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၅၆။ ကံျပတ္(၂)တရားေတာ္ (၁၅-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">257</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1mNBYpCkqAY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=258">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1mNBYpCkqAY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=258">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/1mNBYpCkqAY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAP74lAhFh5APwKJW0kZBxteXMeEg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၅၇။ လူ႔သံေယာဇဥ္စြန္႔ၿပီးမွ တရားအားထုတ္ၾကရန္ (၁၇-၈-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 3 views" title="၂၅၇။ လူ႔သံေယာဇဥ္စြန္႔ၿပီးမွ တရားအားထုတ္ၾကရန္ (၁၇-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၅၇။ လူ႔သံေယာဇဥ္စြန္႔ၿပီးမွ တရားအားထုတ္ၾကရန္ (၁၇-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">258</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Ykz3VGRlxCs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=259">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Ykz3VGRlxCs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=259">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Ykz3VGRlxCs/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBjyr779KylaycBfpCugeYCFNExOg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:54
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၅၈။ နိဗၺာန္ေရာက္ေၾကာင္းတရား (၁၈-၈-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 10 views" title="၂၅၈။ နိဗၺာန္ေရာက္ေၾကာင္းတရား (၁၈-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၅၈။ နိဗၺာန္ေရာက္ေၾကာင္းတရား (၁၈-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">259</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gDYnfO-S5sM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=260">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gDYnfO-S5sM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=260">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/gDYnfO-S5sM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB3J0JKz1yl0YL162ZuFfnh9Zeajw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 8 minutes">
1:08:50
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၅၉။ မိစၦာဒိ႒ိသည္ ေၾကာက္စရာအေကာင္းဆံုးျဖစ္ပံု (၁၉-၈-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 8 minutes 4 views" title="၂၅၉။ မိစၦာဒိ႒ိသည္ ေၾကာက္စရာအေကာင္းဆံုးျဖစ္ပံု (၁၉-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၅၉။ မိစၦာဒိ႒ိသည္ ေၾကာက္စရာအေကာင္းဆံုးျဖစ္ပံု (၁၉-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">260</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lZauD32BF1M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=261">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lZauD32BF1M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=261">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/lZauD32BF1M/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCI-V3l3ajH5TUo8WWsxkPOG1gZuA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၆၀။ ဒိ႒ိခြါနည္းတရားေတာ္ (၂၀-၈-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 4 views" title="၂၆၀။ ဒိ႒ိခြါနည္းတရားေတာ္ (၂၀-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၆၀။ ဒိ႒ိခြါနည္းတရားေတာ္ (၂၀-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">261</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WDWCR3sMQgA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=262">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WDWCR3sMQgA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=262">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/WDWCR3sMQgA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDy71dSUKZAshv_novnZLZf2c9Lhw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 4 minutes">
1:04:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၆၁။ နိဗၺာန္ေရာက္ေၾကာင္းတရား (၂၁-၈-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 4 minutes 4 views" title="၂၆၁။ နိဗၺာန္ေရာက္ေၾကာင္းတရား (၂၁-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၆၁။ နိဗၺာန္ေရာက္ေၾကာင္းတရား (၂၁-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">262</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=d3YDVAvx-uI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=263">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=d3YDVAvx-uI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=263">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/d3YDVAvx-uI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBPGkZvg0ZVZHUo_B7U25xIRruzyQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၆၂။ ဒိ႒ိျပဳတ္ေရးတရားေတာ္(၁) (၂၂-၈-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 4 views" title="၂၆၂။ ဒိ႒ိျပဳတ္ေရးတရားေတာ္(၁) (၂၂-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၆၂။ ဒိ႒ိျပဳတ္ေရးတရားေတာ္(၁) (၂၂-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">263</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=yOH_HtQTjR4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=264">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=yOH_HtQTjR4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=264">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/yOH_HtQTjR4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLALmS2u4GYK6fSaecUB84Ia11BRXg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၆၃။ ဒိ႒ိျပဳတ္ေရးတရားေတာ္(၂) (၂၃-၈-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 4 views" title="၂၆၃။ ဒိ႒ိျပဳတ္ေရးတရားေတာ္(၂) (၂၃-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၆၃။ ဒိ႒ိျပဳတ္ေရးတရားေတာ္(၂) (၂၃-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">264</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=MEbI30Q6KQ0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=265">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=MEbI30Q6KQ0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=265">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/MEbI30Q6KQ0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBRPbjwjEdvmOWxcmMhu2lhrvQaTw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၆၄။ အနိစၥာ၀တသခၤါရရွင္းပံု၊ ဒိ႒ိျဖဳတ္တရားေတာ္ (၂၄-၈-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၂၆၄။ အနိစၥာ၀တသခၤါရရွင္းပံု၊ ဒိ႒ိျဖဳတ္တရားေတာ္ (၂၄-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၆၄။ အနိစၥာ၀တသခၤါရရွင္းပံု၊ ဒိ႒ိျဖဳတ္တရားေတာ္ (၂၄-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">265</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=v1lg0BZ5RG4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=266">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=v1lg0BZ5RG4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=266">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/v1lg0BZ5RG4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDsvXjcVqCDXUWBDwQlONWm_kSHUg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၂၆၅။ နိဗၺာန္လိုခ်င္လွ်င္ အလုပ္ႏွစ္လုပ္ပဲလုပ္ပါ (၂၅-၈-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 6 views" title="၂၆၅။ နိဗၺာန္လိုခ်င္လွ်င္ အလုပ္ႏွစ္လုပ္ပဲလုပ္ပါ (၂၅-၈-၁၉၆၁)">
၂၆၅။ နိဗၺာန္လိုခ်င္လွ်င္ အလုပ္ႏွစ္လုပ္ပဲလုပ္ပါ (၂၅-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">266</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=E0fwzd4To-0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=267">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=E0fwzd4To-0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=267">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/E0fwzd4To-0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDkuqPon9i_bh4Xtado2tI3uMWyrw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၆၆။ ရန္သူႏွစ္ေယာက္ကို အေသသတ္နည္းတရားေတာ္ (၂၆-၈-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 6 views" title="၂၆၆။ ရန္သူႏွစ္ေယာက္ကို အေသသတ္နည္းတရားေတာ္ (၂၆-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၆၆။ ရန္သူႏွစ္ေယာက္ကို အေသသတ္နည္းတရားေတာ္ (၂၆-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">267</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=41DRavlZnaY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=268">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=41DRavlZnaY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=268">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/41DRavlZnaY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBhIjIMRnndzqsyRSbmCz_0-StjYw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၆၇။ ခႏၶာေတြ ျပန္ရေနျခင္းအေၾကာင္း (၂၇-၈-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 5 views" title="၂၆၇။ ခႏၶာေတြ ျပန္ရေနျခင္းအေၾကာင္း (၂၇-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၆၇။ ခႏၶာေတြ ျပန္ရေနျခင္းအေၾကာင္း (၂၇-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">268</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zmlHFRYIAmk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=269">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zmlHFRYIAmk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=269">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/zmlHFRYIAmk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCbJ7zKEN2E_Rpvy8iMlQPV-MS5Nw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၆၈။ အလုပ္စဥ္ ၀ိပႆနာတရားေတာ္ (၃၀-၈-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 7 views" title="၂၆၈။ အလုပ္စဥ္ ၀ိပႆနာတရားေတာ္ (၃၀-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၆၈။ အလုပ္စဥ္ ၀ိပႆနာတရားေတာ္ (၃၀-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">269</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CF2Pr8KdPG4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=270">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CF2Pr8KdPG4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=270">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/CF2Pr8KdPG4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDUW7m2QGXJaeNIwn16r_hzWgMt8A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၆၉။ အားထုတ္နည္း သံုးမ်ိဳးအေၾကာင္း (၃၁-၈-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 10 views" title="၂၆၉။ အားထုတ္နည္း သံုးမ်ိဳးအေၾကာင္း (၃၁-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၆၉။ အားထုတ္နည္း သံုးမ်ိဳးအေၾကာင္း (၃၁-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">270</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=I1tu53HwWDA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=271">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=I1tu53HwWDA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=271">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/I1tu53HwWDA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDD4saRCZAGA0pBlMFuq0aQl18Jyw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၇၀။ ဉာဏ္သံုးပါးခြဲျပပံု (၁-၉-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 4 views" title="၂၇၀။ ဉာဏ္သံုးပါးခြဲျပပံု (၁-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၇၀။ ဉာဏ္သံုးပါးခြဲျပပံု (၁-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">271</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WngYgVZNAqM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=272">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WngYgVZNAqM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=272">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၇၁။ လုပ္ငန္းအစႏွင့္ အဆံုးကိုျပသည့္တရားေတာ္ (၂-၉-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 3 views" title="၂၇၁။ လုပ္ငန္းအစႏွင့္ အဆံုးကိုျပသည့္တရားေတာ္ (၂-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၇၁။ လုပ္ငန္းအစႏွင့္ အဆံုးကိုျပသည့္တရားေတာ္ (၂-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">272</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EyKXckMPpxg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=273">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EyKXckMPpxg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=273">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၇၂။ ကိုယ့္ကိုယ္ကို သံုးသပ္နည္းတရားေတာ္ (၃-၉-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 4 views" title="၂၇၂။ ကိုယ့္ကိုယ္ကို သံုးသပ္နည္းတရားေတာ္ (၃-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၇၂။ ကိုယ့္ကိုယ္ကို သံုးသပ္နည္းတရားေတာ္ (၃-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">273</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=rnL0TycyWN8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=274">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=rnL0TycyWN8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=274">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၇၃။ ပုဂၢိဳလ္ေလးမ်ိဳး ခြဲျခားျပျခင္း (၄-၉-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 6 views" title="၂၇၃။ ပုဂၢိဳလ္ေလးမ်ိဳး ခြဲျခားျပျခင္း (၄-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၇၃။ ပုဂၢိဳလ္ေလးမ်ိဳး ခြဲျခားျပျခင္း (၄-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">274</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fGqCEIro6a4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=275">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fGqCEIro6a4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=275">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၇၄။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၁) (၅-၉-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 6 views" title="၂၇၄။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၁) (၅-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၇၄။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၁) (၅-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">275</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=erT-I10gxO4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=276">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=erT-I10gxO4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=276">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:43
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၇၅။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၂) (၆-၉-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 3 views" title="၂၇၅။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၂) (၆-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၇၅။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၂) (၆-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">276</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7wJdKcoyphg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=277">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7wJdKcoyphg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=277">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:54
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၇၆။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၃) (၇-၉-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 4 views" title="၂၇၆။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၃) (၇-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၇၆။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၃) (၇-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">277</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=LMKmeqdsM58&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=278">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=LMKmeqdsM58&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=278">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၇၇။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၄) (၈-၉-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၂၇၇။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၄) (၈-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၇၇။ မာဂ႑ီပရိဗိုဇ္၀တၳဳ(၄) (၈-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">278</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=pPwoGji6bqA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=279">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=pPwoGji6bqA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=279">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 6 minutes">
1:06:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၇၈။ ရွင္အာနႏၵာ ေသာတာပန္တည္ပံု (၉-၉-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 6 minutes 80 views" title="၂၇၈။ ရွင္အာနႏၵာ ေသာတာပန္တည္ပံု (၉-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၇၈။ ရွင္အာနႏၵာ ေသာတာပန္တည္ပံု (၉-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">279</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Z1R_snUJCak&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=280">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Z1R_snUJCak&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=280">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၇၉။ မာဂ႑ီ၀တၳဳ၊ အရိယာမ်က္လံုး အေရးၾကီးပံု (၁၀-၉-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 4 views" title="၂၇၉။ မာဂ႑ီ၀တၳဳ၊ အရိယာမ်က္လံုး အေရးၾကီးပံု (၁၀-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၇၉။ မာဂ႑ီ၀တၳဳ၊ အရိယာမ်က္လံုး အေရးၾကီးပံု (၁၀-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">280</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=vvrn31bi21c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=281">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=vvrn31bi21c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=281">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၈၀။ သုညတ တရားနာရမွ သုညတနိဗၺာန္ေရာက္ႏိုင္ပံု (၁၁-၉-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 4 views" title="၂၈၀။ သုညတ တရားနာရမွ သုညတနိဗၺာန္ေရာက္ႏိုင္ပံု (၁၁-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၈၀။ သုညတ တရားနာရမွ သုညတနိဗၺာန္ေရာက္ႏိုင္ပံု (၁၁-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">281</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=GF_LOU_RVk4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=282">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=GF_LOU_RVk4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=282">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၈၁။ ဒီခႏၶာစြန္႔ၿပီးေနာက္ ခႏၶာရျခင္းသည္ အၾကီးဆံုးအျပစ္သင့္ပံု (၁၂-၉-၁၉၆၁) by mogok sayadaw 1 year ago 51 minutes 8 views" title="၂၈၁။ ဒီခႏၶာစြန္႔ၿပီးေနာက္ ခႏၶာရျခင္းသည္ အၾကီးဆံုးအျပစ္သင့္ပံု (၁၂-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၈၁။ ဒီခႏၶာစြန္႔ၿပီးေနာက္ ခႏၶာရျခင္းသည္ အၾကီးဆံုးအျပစ္သင့္ပံု (၁၂-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">282</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZJMGx8Oqd04&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=283">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZJMGx8Oqd04&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=283">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၈၂။ ကိေလသာဖယ္နည္း နိသွ်ည္း (၁၃-၉-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 22 views" title="၂၈၂။ ကိေလသာဖယ္နည္း နိသွ်ည္း (၁၃-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၈၂။ ကိေလသာဖယ္နည္း နိသွ်ည္း (၁၃-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">283</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=PArVMu0AHNs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=284">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=PArVMu0AHNs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=284">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၈၃။ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရန္ ၀ိပႆနာရွဳနည္း (၁၄-၉-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 6 views" title="၂၈၃။ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရန္ ၀ိပႆနာရွဳနည္း (၁၄-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၈၃။ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရန္ ၀ိပႆနာရွဳနည္း (၁၄-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">284</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=09vo-DLoXrA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=285">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=09vo-DLoXrA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=285">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၈၄။ သုခႏွင့္ဒုကၡ ပရိဗိုဇ္အေမး၊ ရွင္သာရိပုတၱရာအေျဖ (၁၅-၉-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 4 views" title="၂၈၄။ သုခႏွင့္ဒုကၡ ပရိဗိုဇ္အေမး၊ ရွင္သာရိပုတၱရာအေျဖ (၁၅-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၈၄။ သုခႏွင့္ဒုကၡ ပရိဗိုဇ္အေမး၊ ရွင္သာရိပုတၱရာအေျဖ (၁၅-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">285</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=T4uOtab54wI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=286">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=T4uOtab54wI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=286">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၈၅။ သုတ၀ါ အရိယာသာ၀ကအျဖစ္မွ ဒိ႒ိျပဳတ္ေၾကာင္း (၁၆-၉-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 6 views" title="၂၈၅။ သုတ၀ါ အရိယာသာ၀ကအျဖစ္မွ ဒိ႒ိျပဳတ္ေၾကာင္း (၁၆-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၈၅။ သုတ၀ါ အရိယာသာ၀ကအျဖစ္မွ ဒိ႒ိျပဳတ္ေၾကာင္း (၁၆-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">286</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=GMECjyJtCVg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=287">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=GMECjyJtCVg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=287">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/GMECjyJtCVg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCfM-PeYJNm9R8pPahdo2pbmtJeKw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၈၆။ ပဥၥနႏၱရိယ ကံမွလြဲလွ်င္ ၀ိပႆနာကုသိုလ္က ကယ္တင္ႏိုင္ပံု (၁၈-၉-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 4 views" title="၂၈၆။ ပဥၥနႏၱရိယ ကံမွလြဲလွ်င္ ၀ိပႆနာကုသိုလ္က ကယ္တင္ႏိုင္ပံု (၁၈-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၈၆။ ပဥၥနႏၱရိယ ကံမွလြဲလွ်င္ ၀ိပႆနာကုသိုလ္က ကယ္တင္ႏိုင္ပံု (၁၈-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">287</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=o4gZ-cz4OlM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=288">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=o4gZ-cz4OlM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=288">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/o4gZ-cz4OlM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAen6QxbRv6y0wQ1Vs8RbdbH-zhYw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၈၇။ ၀ိသုဒၶိ(၇)ပါး ရည္ရြယ္၍က်င့္သည္မဟုတ္၊ နိဗၺာန္သာရည္ရြယ္ပံု (၁၉-၉-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 3 views" title="၂၈၇။ ၀ိသုဒၶိ(၇)ပါး ရည္ရြယ္၍က်င့္သည္မဟုတ္၊ နိဗၺာန္သာရည္ရြယ္ပံု (၁၉-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၈၇။ ၀ိသုဒၶိ(၇)ပါး ရည္ရြယ္၍က်င့္သည္မဟုတ္၊ နိဗၺာန္သာရည္ရြယ္ပံု (၁၉-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">288</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EjejVZ8sV1I&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=289">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EjejVZ8sV1I&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=289">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/EjejVZ8sV1I/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBPpIfU2Fegu7kwSepdytshjqGT3Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၈၈။ ၀ိသုဒၶိ(၇)ပါး၊ ရထား(၇)စင္းဥပမာျပ (၂၀-၉-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 9 views" title="၂၈၈။ ၀ိသုဒၶိ(၇)ပါး၊ ရထား(၇)စင္းဥပမာျပ (၂၀-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၈၈။ ၀ိသုဒၶိ(၇)ပါး၊ ရထား(၇)စင္းဥပမာျပ (၂၀-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">289</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ipsqlIt1V5k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=290">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ipsqlIt1V5k&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=290">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ipsqlIt1V5k/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCuqiVLEPI1VxsOq1-NyQGgQl6aOQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၈၉။ သာသနာေတာ္၏ အႏွစ္သာရရွာပံု (၂၁-၉-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 4 views" title="၂၈၉။ သာသနာေတာ္၏ အႏွစ္သာရရွာပံု (၂၁-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၈၉။ သာသနာေတာ္၏ အႏွစ္သာရရွာပံု (၂၁-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">290</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=eOKdO1olNds&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=291">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=eOKdO1olNds&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=291">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/eOKdO1olNds/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAtHQNjTYR6RujancHz_xGWaqMNqg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၉၀။ ခႏၶာငါးပါးသည္ ကမ္းနားသစ္ပင္ႏွင့္တူပံု (၂၂-၉-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၂၉၀။ ခႏၶာငါးပါးသည္ ကမ္းနားသစ္ပင္ႏွင့္တူပံု (၂၂-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၉၀။ ခႏၶာငါးပါးသည္ ကမ္းနားသစ္ပင္ႏွင့္တူပံု (၂၂-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">291</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=8WerD8sL_tw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=292">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=8WerD8sL_tw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=292">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/8WerD8sL_tw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDxzrqOeKMFet1wj8R8V4XNMVB7zQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၉၁။ သူမ်ားပါးစပ္ လမ္းဆံုးမႈဇာတ္သိမ္းပံု (၂၃-၉-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 5 views" title="၂၉၁။ သူမ်ားပါးစပ္ လမ္းဆံုးမႈဇာတ္သိမ္းပံု (၂၃-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၉၁။ သူမ်ားပါးစပ္ လမ္းဆံုးမႈဇာတ္သိမ္းပံု (၂၃-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">292</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=XkPM57F5wSA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=293">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=XkPM57F5wSA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=293">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/XkPM57F5wSA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDAqIHYXDaidb7POOfLcQQtUjOJGg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 7 minutes">
1:07:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၉၂။ ခႏၶဉာဏ္ေရာက္မွ သံသရာတိုမည့္အေၾကာင္း (၂၄-၉-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 7 minutes 2 views" title="၂၉၂။ ခႏၶဉာဏ္ေရာက္မွ သံသရာတိုမည့္အေၾကာင္း (၂၄-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၉၂။ ခႏၶဉာဏ္ေရာက္မွ သံသရာတိုမည့္အေၾကာင္း (၂၄-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">293</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7R3sQ1Ifzaw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=294">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7R3sQ1Ifzaw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=294">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/7R3sQ1Ifzaw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDF493omahP2N1Mik1uPsnOj3lZTQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:56
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၉၃။ ဓမၼာႏုဓမၼပဋိပတၱိကင္း၍ မဂ္ဉာဏ္ဖိုလ္ဉာဏ္ ရႏိုင္ေၾကာင္း (၂၅-၉-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 7 views" title="၂၉၃။ ဓမၼာႏုဓမၼပဋိပတၱိကင္း၍ မဂ္ဉာဏ္ဖိုလ္ဉာဏ္ ရႏိုင္ေၾကာင္း (၂၅-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၉၃။ ဓမၼာႏုဓမၼပဋိပတၱိကင္း၍ မဂ္ဉာဏ္ဖိုလ္ဉာဏ္ ရႏိုင္ေၾကာင္း (၂၅-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">294</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=l0BRJZfaF4c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=295">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=l0BRJZfaF4c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=295">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/l0BRJZfaF4c/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLANarYnJ5vJq-E1NHGL-XCrFUFupg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၉၄။ အနာဂတ္ေဘးငါးပါး (၂၆-၉-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 3 views" title="၂၉၄။ အနာဂတ္ေဘးငါးပါး (၂၆-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၉၄။ အနာဂတ္ေဘးငါးပါး (၂၆-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">295</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=8QUlQGjmZ78&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=296">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=8QUlQGjmZ78&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=296">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/8QUlQGjmZ78/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDGtZsNqAxfS1BR9uQEu_R5DuyiVQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၉၅။ သံသရာစခန္းသတ္ခ်င္ မဂ္အလုပ္လုပ္ၾကရန္ (၂၇-၉-၁၉၆၁) by mogok sayadaw 1 year ago 50 minutes 5 views" title="၂၉၅။ သံသရာစခန္းသတ္ခ်င္ မဂ္အလုပ္လုပ္ၾကရန္ (၂၇-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၉၅။ သံသရာစခန္းသတ္ခ်င္ မဂ္အလုပ္လုပ္ၾကရန္ (၂၇-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">296</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KOyFViJyOd8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=297">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KOyFViJyOd8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=297">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/KOyFViJyOd8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB-fOtNQASSB6l5L4VqRkSZQutm1Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၉၆။ ခႏၶာကေျပာတာကို ဉာဏ္ကရွဳရန္ (၂၈-၉-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 7 views" title="၂၉၆။ ခႏၶာကေျပာတာကို ဉာဏ္ကရွဳရန္ (၂၈-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၉၆။ ခႏၶာကေျပာတာကို ဉာဏ္ကရွဳရန္ (၂၈-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">297</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Hs6Lvlg3TgE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=298">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Hs6Lvlg3TgE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=298">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Hs6Lvlg3TgE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDLg5Mc5SzQUaa88FjsiRTdBtDMOw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၉၇။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္(၁) (၂၉-၉-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 9 views" title="၂၉၇။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္(၁) (၂၉-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၉၇။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္(၁) (၂၉-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">298</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=HKyAP27J9IQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=299">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=HKyAP27J9IQ&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=299">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/HKyAP27J9IQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBOi6X_9CMae3Rcu4BSpXLsRmXVNA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၉၈။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္(၂) (၃၀-၉-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၂၉၈။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္(၂) (၃၀-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၉၈။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္(၂) (၃၀-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">299</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=JmFZtQfEBrw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=300">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=JmFZtQfEBrw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=300">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/JmFZtQfEBrw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAkQLPRNE3zHI3-_7AiuCfgLTPXBQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၂၉၉။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္(၃) (၁-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 15 views" title="၂၉၉။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္(၃) (၁-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၂၉၉။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္(၃) (၁-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">300</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5YJi6DZAfh8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=301">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5YJi6DZAfh8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=301">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5YJi6DZAfh8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDOkSJ9fb35bYAcryQgdCzhpoK4CQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၀၀။ ခႏၶာမွာတရားရွာပါ၊ ဘုရားပရိနိဗၺာန္မစံေသးပံု (၂-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 15 views" title="၃၀၀။ ခႏၶာမွာတရားရွာပါ၊ ဘုရားပရိနိဗၺာန္မစံေသးပံု (၂-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၀၀။ ခႏၶာမွာတရားရွာပါ၊ ဘုရားပရိနိဗၺာန္မစံေသးပံု (၂-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">301</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=v2oq-oEuH7s&index=302&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=v2oq-oEuH7s&index=302&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/v2oq-oEuH7s/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBn2iiSj0mb3TuSAj-mkS88E506ow"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၀၁။ အျမဲေနအိမ္ႏွင့္ ယာယီေနအိမ္ (၃-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၃၀၁။ အျမဲေနအိမ္ႏွင့္ ယာယီေနအိမ္ (၃-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၀၁။ အျမဲေနအိမ္ႏွင့္ ယာယီေနအိမ္ (၃-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">302</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VD-bXfGoxnA&index=303&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VD-bXfGoxnA&index=303&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/VD-bXfGoxnA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDNpDyY0PhGodVo-rD6Tv2t6SPPug"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၀၂။ ေ၀ဒနာႏွင့္ တရားနာေနပံု (၄-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 4 views" title="၃၀၂။ ေ၀ဒနာႏွင့္ တရားနာေနပံု (၄-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၀၂။ ေ၀ဒနာႏွင့္ တရားနာေနပံု (၄-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">303</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=9bz1fGaBLS4&index=304&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=9bz1fGaBLS4&index=304&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/9bz1fGaBLS4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCmCBN_aSOB2FfRz6KcF-3zQEx8Cg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၃၀၃။ တဏွာမူလကိုးခ်က္ (၅-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၃၀၃။ တဏွာမူလကိုးခ်က္ (၅-၁၀-၁၉၆၁)">
၃၀၃။ တဏွာမူလကိုးခ်က္ (၅-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">304</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=dKXgyZ0knTg&index=305&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=dKXgyZ0knTg&index=305&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/dKXgyZ0knTg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD3qqvndtyoErL24vu26rAEXfABzw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၀၄။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္ျဖစ္စဥ္ (၆-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 6 views" title="၃၀၄။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္ျဖစ္စဥ္ (၆-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၀၄။ အိမ္တြင္းပဋိစၥသမုပၸါဒ္ျဖစ္စဥ္ (၆-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">305</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=FzIAFk2D3lk&index=306&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=FzIAFk2D3lk&index=306&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/FzIAFk2D3lk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDO-ka4XwRx6SH8hLAMtjqn8d7_PQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၃၀၅။ တဏွာသခၤယသုတ္ ေ၀ဒနာႏုပႆနာအမွတ္(၁) (၇-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 7 views" title="၃၀၅။ တဏွာသခၤယသုတ္ ေ၀ဒနာႏုပႆနာအမွတ္(၁) (၇-၁၀-၁၉၆၁)">
၃၀၅။ တဏွာသခၤယသုတ္ ေ၀ဒနာႏုပႆနာအမွတ္(၁) (၇-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">306</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=SfJS2FNmuLw&index=307&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=SfJS2FNmuLw&index=307&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/SfJS2FNmuLw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDipbfpA59YDabrd1uSDynuLqIJew"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၃၀၆။ တဏွာသခၤယသုတ္ ေ၀ဒနာႏုပႆနာအမွတ္(၂) (၈-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၃၀၆။ တဏွာသခၤယသုတ္ ေ၀ဒနာႏုပႆနာအမွတ္(၂) (၈-၁၀-၁၉၆၁)">
၃၀၆။ တဏွာသခၤယသုတ္ ေ၀ဒနာႏုပႆနာအမွတ္(၂) (၈-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">307</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=kadj56ghbls&index=308&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=kadj56ghbls&index=308&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၀၇။ စိတ္အျပင္မထြက္မိေအာင္ သတိထားၾကရန္၊ ဇနပဒကလ်ာဏီသုတ္ (၁၀-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 9 views" title="၃၀၇။ စိတ္အျပင္မထြက္မိေအာင္ သတိထားၾကရန္၊ ဇနပဒကလ်ာဏီသုတ္ (၁၀-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၀၇။ စိတ္အျပင္မထြက္မိေအာင္ သတိထားၾကရန္၊ ဇနပဒကလ်ာဏီသုတ္ (၁၀-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">308</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CsucymFItEk&index=309&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CsucymFItEk&index=309&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၀၈။ ၀ိပႆနာဉာဏ္ႏွင့္ မဂ္ဉာဏ္ ခြဲျခားသိရွိၾကရန္ (၁၁-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 8 views" title="၃၀၈။ ၀ိပႆနာဉာဏ္ႏွင့္ မဂ္ဉာဏ္ ခြဲျခားသိရွိၾကရန္ (၁၁-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၀၈။ ၀ိပႆနာဉာဏ္ႏွင့္ မဂ္ဉာဏ္ ခြဲျခားသိရွိၾကရန္ (၁၁-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">309</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hhkTJ-H3aWc&index=310&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hhkTJ-H3aWc&index=310&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၀၉။ မဟာတဏွာသဃၤယသုတ္၊ ဒိ႒ိသံုးပါးကြာေရး တရားေတာ္ (၁၂-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 10 views" title="၃၀၉။ မဟာတဏွာသဃၤယသုတ္၊ ဒိ႒ိသံုးပါးကြာေရး တရားေတာ္ (၁၂-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၀၉။ မဟာတဏွာသဃၤယသုတ္၊ ဒိ႒ိသံုးပါးကြာေရး တရားေတာ္ (၁၂-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">310</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=uSofSEYivKc&index=311&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=uSofSEYivKc&index=311&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၁၀။ ဗုဒၶဘာသာ၀င္ေတြမွာ ရွိေနတတ္သည့္ ဒိ႒ိကိုျဖဳတ္နည္း (၁၃-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 9 views" title="၃၁၀။ ဗုဒၶဘာသာ၀င္ေတြမွာ ရွိေနတတ္သည့္ ဒိ႒ိကိုျဖဳတ္နည္း (၁၃-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၁၀။ ဗုဒၶဘာသာ၀င္ေတြမွာ ရွိေနတတ္သည့္ ဒိ႒ိကိုျဖဳတ္နည္း (၁၃-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">311</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gFkk2XvtMYA&index=312&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gFkk2XvtMYA&index=312&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၁၁။ ပ႒ာန္း၊ ပဋိစၥသမုပၸါဒ္၊ သစၥာနည္းတို႔ျဖင့္ ဒုကၡကိုထင္ေအာင္ေဟာပံု (၁၄-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 49 minutes 9 views" title="၃၁၁။ ပ႒ာန္း၊ ပဋိစၥသမုပၸါဒ္၊ သစၥာနည္းတို႔ျဖင့္ ဒုကၡကိုထင္ေအာင္ေဟာပံု (၁၄-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၁၁။ ပ႒ာန္း၊ ပဋိစၥသမုပၸါဒ္၊ သစၥာနည္းတို႔ျဖင့္ ဒုကၡကိုထင္ေအာင္ေဟာပံု (၁၄-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">312</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=OoVawHkN4O0&index=313&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=OoVawHkN4O0&index=313&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၁၂။ ၀ိဉာဏ္ေပၚ၌ သႆတဒိ႒ိကုိျဖတ္ရန္၊ သာတိ၀တၳဳ (၁၅-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 51 minutes 5 views" title="၃၁၂။ ၀ိဉာဏ္ေပၚ၌ သႆတဒိ႒ိကုိျဖတ္ရန္၊ သာတိ၀တၳဳ (၁၅-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၁၂။ ၀ိဉာဏ္ေပၚ၌ သႆတဒိ႒ိကုိျဖတ္ရန္၊ သာတိ၀တၳဳ (၁၅-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">313</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KJaU13EWYsE&index=314&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KJaU13EWYsE&index=314&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၁၃။ သာတိ၀တၳဳအဆက္၊ သႆတဒိ႒ိအဆက္ (၁၆-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 46 minutes 3 views" title="၃၁၃။ သာတိ၀တၳဳအဆက္၊ သႆတဒိ႒ိအဆက္ (၁၆-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၁၃။ သာတိ၀တၳဳအဆက္၊ သႆတဒိ႒ိအဆက္ (၁၆-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">314</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=75Y-HPneXd8&index=315&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=75Y-HPneXd8&index=315&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 9 minutes">
1:09:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၁၄။ ပညတ္ႏွင့္ ပရမတ္ကြဲမွ နိဗၺာန္ကိုသေဘာက်ပံု၊ ယမက၀တၳဳ (၁၇-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 9 minutes 7 views" title="၃၁၄။ ပညတ္ႏွင့္ ပရမတ္ကြဲမွ နိဗၺာန္ကိုသေဘာက်ပံု၊ ယမက၀တၳဳ (၁၇-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၁၄။ ပညတ္ႏွင့္ ပရမတ္ကြဲမွ နိဗၺာန္ကိုသေဘာက်ပံု၊ ယမက၀တၳဳ (၁၇-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">315</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=AHXvBHsjsvk&index=316&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=AHXvBHsjsvk&index=316&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၁၅။ အေသရွိရာက အေသလြတ္ရာကို ရွာပံု (၁၈-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 11 views" title="၃၁၅။ အေသရွိရာက အေသလြတ္ရာကို ရွာပံု (၁၈-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၁၅။ အေသရွိရာက အေသလြတ္ရာကို ရွာပံု (၁၈-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">316</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=q_J4DoiKkdc&index=317&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=q_J4DoiKkdc&index=317&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၁၆။ နိဗၺာန္ေရာက္ေၾကာင္းတရားသည္ ၀ိပႆနာျဖစ္ပံု (၁၉-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 7 views" title="၃၁၆။ နိဗၺာန္ေရာက္ေၾကာင္းတရားသည္ ၀ိပႆနာျဖစ္ပံု (၁၉-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၁၆။ နိဗၺာန္ေရာက္ေၾကာင္းတရားသည္ ၀ိပႆနာျဖစ္ပံု (၁၉-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">317</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=LEygnsUEmt0&index=318&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=LEygnsUEmt0&index=318&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၁၇။ သီတင္းကၽြတ္ႏွစ္မ်ိဳး၊ ၾကက္မၾကီးဥပမာျပ၍ အလုပ္သံုးလုပ္ လုပ္ၾကရန္ (၂၀-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 49 minutes 7 views" title="၃၁၇။ သီတင္းကၽြတ္ႏွစ္မ်ိဳး၊ ၾကက္မၾကီးဥပမာျပ၍ အလုပ္သံုးလုပ္ လုပ္ၾကရန္ (၂၀-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၁၇။ သီတင္းကၽြတ္ႏွစ္မ်ိဳး၊ ၾကက္မၾကီးဥပမာျပ၍ အလုပ္သံုးလုပ္ လုပ္ၾကရန္ (၂၀-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">318</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Ng8W7VHuY4I&index=319&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Ng8W7VHuY4I&index=319&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၁၈။ ဒုကၡ၏လက္သည္ၾကီးမွာ အာသ၀ျဖစ္ပံု (၂၁-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၃၁၈။ ဒုကၡ၏လက္သည္ၾကီးမွာ အာသ၀ျဖစ္ပံု (၂၁-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၁၈။ ဒုကၡ၏လက္သည္ၾကီးမွာ အာသ၀ျဖစ္ပံု (၂၁-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">319</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=T5fm9xOkiIo&index=320&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=T5fm9xOkiIo&index=320&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၁၉။ အပယ္သြားမည့္ ဒိ႒ိျဖဳတ္ပံု၊ သုညတ တရားေတာ္ (၂၂-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 4 views" title="၃၁၉။ အပယ္သြားမည့္ ဒိ႒ိျဖဳတ္ပံု၊ သုညတ တရားေတာ္ (၂၂-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၁၉။ အပယ္သြားမည့္ ဒိ႒ိျဖဳတ္ပံု၊ သုညတ တရားေတာ္ (၂၂-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">320</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7oySGdL_opY&index=321&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7oySGdL_opY&index=321&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၂၀။ တိတၳိေတြကအေမး၊ အနာထပိဏ္သူေ႒းအေျဖ၊ ဒိ႒ိကြာႏိုင္တဲ့အခ်ိန္ (၂၃-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 5 views" title="၃၂၀။ တိတၳိေတြကအေမး၊ အနာထပိဏ္သူေ႒းအေျဖ၊ ဒိ႒ိကြာႏိုင္တဲ့အခ်ိန္ (၂၃-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၂၀။ တိတၳိေတြကအေမး၊ အနာထပိဏ္သူေ႒းအေျဖ၊ ဒိ႒ိကြာႏိုင္တဲ့အခ်ိန္ (၂၃-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">321</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=xO6m6eELWPU&index=322&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=xO6m6eELWPU&index=322&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 3 minutes">
1:03:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၂၁။ ပဋိစၥသမုပၸါဒ္ ျပတ္ပံုကိုသိေသာေၾကာင့္ ဘုရားျဖစ္လာပံု (၂၄-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 3 minutes 9 views" title="၃၂၁။ ပဋိစၥသမုပၸါဒ္ ျပတ္ပံုကိုသိေသာေၾကာင့္ ဘုရားျဖစ္လာပံု (၂၄-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၂၁။ ပဋိစၥသမုပၸါဒ္ ျပတ္ပံုကိုသိေသာေၾကာင့္ ဘုရားျဖစ္လာပံု (၂၄-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">322</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-RhCw-0RUHc&index=323&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-RhCw-0RUHc&index=323&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၂၂။ တရားရွာ၊ ခႏၶာေတြ႔၊ ပေဒါင္းလည္ပံု တရားေတာ္ (၂၇-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 61 views" title="၃၂၂။ တရားရွာ၊ ခႏၶာေတြ႔၊ ပေဒါင္းလည္ပံု တရားေတာ္ (၂၇-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၂၂။ တရားရွာ၊ ခႏၶာေတြ႔၊ ပေဒါင္းလည္ပံု တရားေတာ္ (၂၇-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">323</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lgsTXzuGo2I&index=324&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lgsTXzuGo2I&index=324&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:50
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၂၃။ ၀ဋ္သံုးပါးဆက္စပ္ၿပီး လည္ေနပံုတရားေတာ္ (၂၅-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 5 views" title="၃၂၃။ ၀ဋ္သံုးပါးဆက္စပ္ၿပီး လည္ေနပံုတရားေတာ္ (၂၅-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၂၃။ ၀ဋ္သံုးပါးဆက္စပ္ၿပီး လည္ေနပံုတရားေတာ္ (၂၅-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">324</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=9sHl6q2RJfY&index=325&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=9sHl6q2RJfY&index=325&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၂၄။ ထိနမိဒၶေဖ်ာက္နည္းႏွင့္ တဏွာအျမန္သတ္နည္း (၂၈-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 4 views" title="၃၂၄။ ထိနမိဒၶေဖ်ာက္နည္းႏွင့္ တဏွာအျမန္သတ္နည္း (၂၈-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၂၄။ ထိနမိဒၶေဖ်ာက္နည္းႏွင့္ တဏွာအျမန္သတ္နည္း (၂၈-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">325</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=nPgRXe1_O_A&index=326&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=nPgRXe1_O_A&index=326&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၂၅။ အေမွာင္ထဲ ခလုတ္တိုက္ပံုႏွင့္ ပညာရွိ၊ ပညာမဲ့ပုဂၢိဳလ္ေရြးပံု (၂၉-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 5 views" title="၃၂၅။ အေမွာင္ထဲ ခလုတ္တိုက္ပံုႏွင့္ ပညာရွိ၊ ပညာမဲ့ပုဂၢိဳလ္ေရြးပံု (၂၉-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၂၅။ အေမွာင္ထဲ ခလုတ္တိုက္ပံုႏွင့္ ပညာရွိ၊ ပညာမဲ့ပုဂၢိဳလ္ေရြးပံု (၂၉-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">326</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=QnFzo0-dOuw&index=327&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=QnFzo0-dOuw&index=327&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၂၆။ ေမ်ာလမ္း၊ ျမဳပ္လမ္း၊ ဒိ႒ိၾကိဳးျပဳတ္ခန္း (၃၀-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 4 views" title="၃၂၆။ ေမ်ာလမ္း၊ ျမဳပ္လမ္း၊ ဒိ႒ိၾကိဳးျပဳတ္ခန္း (၃၀-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၂၆။ ေမ်ာလမ္း၊ ျမဳပ္လမ္း၊ ဒိ႒ိၾကိဳးျပဳတ္ခန္း (၃၀-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">327</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gYT8KY_85oo&index=328&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gYT8KY_85oo&index=328&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၂၇။ သက္ဆိုးရွည္ ဇာတ္သိမ္းေရး (၃၁-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၃၂၇။ သက္ဆိုးရွည္ ဇာတ္သိမ္းေရး (၃၁-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၂၇။ သက္ဆိုးရွည္ ဇာတ္သိမ္းေရး (၃၁-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">328</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZyZpfCtR5kA&index=329&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZyZpfCtR5kA&index=329&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၂၈။ ကိုယ့္အေသကိုယ္ရွဳနည္း (၁၅-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 5 views" title="၃၂၈။ ကိုယ့္အေသကိုယ္ရွဳနည္း (၁၅-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၂၈။ ကိုယ့္အေသကိုယ္ရွဳနည္း (၁၅-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">329</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hBN1Vy16GLQ&index=330&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hBN1Vy16GLQ&index=330&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 6 minutes">
1:06:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၃၂၉။ ပဋိစၥသမုပၸါဒ္ဆက္ပံု (၁၅-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 6 minutes 8 views" title="၃၂၉။ ပဋိစၥသမုပၸါဒ္ဆက္ပံု (၁၅-၁၁-၁၉၆၁)">
၃၂၉။ ပဋိစၥသမုပၸါဒ္ဆက္ပံု (၁၅-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">330</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=9oNy-ISDZqs&index=331&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=9oNy-ISDZqs&index=331&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၃၀။ သႏၵိ႒ိေကာနားလည္က အျပံဳးအမဲ့မွကင္းပံု (၁၅-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 4 views" title="၃၃၀။ သႏၵိ႒ိေကာနားလည္က အျပံဳးအမဲ့မွကင္းပံု (၁၅-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၃၀။ သႏၵိ႒ိေကာနားလည္က အျပံဳးအမဲ့မွကင္းပံု (၁၅-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">331</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zGagboeZYMs&index=332&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zGagboeZYMs&index=332&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/zGagboeZYMs/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAe7qup4uvtMxFcsJ1IfcanBftrXw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၃၁။ အဖံုးႏွစ္ခ်ပ္ဖြင့္မွ နိဗၺာန္ျမင္မည္ (၁၆-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 8 views" title="၃၃၁။ အဖံုးႏွစ္ခ်ပ္ဖြင့္မွ နိဗၺာန္ျမင္မည္ (၁၆-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၃၁။ အဖံုးႏွစ္ခ်ပ္ဖြင့္မွ နိဗၺာန္ျမင္မည္ (၁၆-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">332</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lfoDCGDzZDk&index=333&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lfoDCGDzZDk&index=333&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/lfoDCGDzZDk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBTPgS3pPE3_seNrI3OotHKZAv3Rg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၃၂။ ဧဟိပႆိေကာေခၚရာေနာက္ကို သႏၵိ႒ိေကာႏွင့္ လိုက္ရန္ (၁၇-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 5 views" title="၃၃၂။ ဧဟိပႆိေကာေခၚရာေနာက္ကို သႏၵိ႒ိေကာႏွင့္ လိုက္ရန္ (၁၇-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၃၂။ ဧဟိပႆိေကာေခၚရာေနာက္ကို သႏၵိ႒ိေကာႏွင့္ လိုက္ရန္ (၁၇-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">333</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=JNSGBljKEuc&index=334&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=JNSGBljKEuc&index=334&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/JNSGBljKEuc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCTJjj1q2T-lkexAFczN2a3UQvcwQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၃၃။ ခႏၶာပဋိစၥသမုပၸါဒ္ျဖစ္စဥ္ (၁၇-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 11 views" title="၃၃၃။ ခႏၶာပဋိစၥသမုပၸါဒ္ျဖစ္စဥ္ (၁၇-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၃၃။ ခႏၶာပဋိစၥသမုပၸါဒ္ျဖစ္စဥ္ (၁၇-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">334</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NokzBOrDoY4&index=335&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NokzBOrDoY4&index=335&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/NokzBOrDoY4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBwZz6aM_bhZwTg_3-zuW5EJarbWQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၃၄။ ကာမစၦႏၵနီ၀ရဏသေဘာႏွင့္ ၎မွထြက္ေျမာက္ပံု (၁၈-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 4 views" title="၃၃၄။ ကာမစၦႏၵနီ၀ရဏသေဘာႏွင့္ ၎မွထြက္ေျမာက္ပံု (၁၈-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၃၄။ ကာမစၦႏၵနီ၀ရဏသေဘာႏွင့္ ၎မွထြက္ေျမာက္ပံု (၁၈-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">335</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BhlHRV1AW4g&index=336&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BhlHRV1AW4g&index=336&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/BhlHRV1AW4g/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCvOiXGISSSeXowZiXQHjMhuGYNWQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၃၅။ ပဋိစၥသမုပၸါဒ္ပံုစံျပ(၁) (၁၈-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 46 minutes 7 views" title="၃၃၅။ ပဋိစၥသမုပၸါဒ္ပံုစံျပ(၁) (၁၈-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၃၅။ ပဋိစၥသမုပၸါဒ္ပံုစံျပ(၁) (၁၈-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">336</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lkYkajGUsS8&index=337&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lkYkajGUsS8&index=337&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/lkYkajGUsS8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAzRIkMf526QXI8IlD1i60QlbcAzw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၃၆။ ဗ်ာပါဒနီ၀ရဏႏွင့္ ထိနမိိဒၶနီ၀ရဏတို႔အေၾကာင္း (၁၉-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 6 views" title="၃၃၆။ ဗ်ာပါဒနီ၀ရဏႏွင့္ ထိနမိိဒၶနီ၀ရဏတို႔အေၾကာင္း (၁၉-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၃၆။ ဗ်ာပါဒနီ၀ရဏႏွင့္ ထိနမိိဒၶနီ၀ရဏတို႔အေၾကာင္း (၁၉-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">337</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1z-HLtlD9rI&index=338&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1z-HLtlD9rI&index=338&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/1z-HLtlD9rI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCR5jHYcFoc-tdhsjdOFWAWTMqhkg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၃၇။ ပဋိစၥသမုပၸါဒ္ပံုစံျပ(၂) (၁၉-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 6 views" title="၃၃၇။ ပဋိစၥသမုပၸါဒ္ပံုစံျပ(၂) (၁၉-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၃၇။ ပဋိစၥသမုပၸါဒ္ပံုစံျပ(၂) (၁၉-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">338</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wSH35EW1CQQ&index=339&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wSH35EW1CQQ&index=339&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/wSH35EW1CQQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAJ5M3KR5rFcz0SRnnEpQ1syZlWEg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၃၈။ ထိနမိဒၶနီ၀ရဏႏွင့္ ဥဒၶစၥကုကၠဳစၥနီ၀ရဏ (၂၀-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၃၃၈။ ထိနမိဒၶနီ၀ရဏႏွင့္ ဥဒၶစၥကုကၠဳစၥနီ၀ရဏ (၂၀-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၃၈။ ထိနမိဒၶနီ၀ရဏႏွင့္ ဥဒၶစၥကုကၠဳစၥနီ၀ရဏ (၂၀-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">339</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VDFFglrA-aQ&index=340&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VDFFglrA-aQ&index=340&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/VDFFglrA-aQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAzOUHF5yJZsbk_F8SlxLaW65sXLA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၃၉။ ပဋိစၥသမုပၸါဒ္ပံုစံျပ(၃) (၂၀-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 10 views" title="၃၃၉။ ပဋိစၥသမုပၸါဒ္ပံုစံျပ(၃) (၂၀-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၃၉။ ပဋိစၥသမုပၸါဒ္ပံုစံျပ(၃) (၂၀-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">340</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=8ouWSt743Iw&index=341&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=8ouWSt743Iw&index=341&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/8ouWSt743Iw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCKo5BDQs2cFGDWcT936lyg2n_Puw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:50
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၄၀။ ဥဒၶစၥကုကၠဳစၥနီ၀ရဏ အာသဏၰကံေျပာင္းနည္းတရားေတာ္ (၂၁-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 9 views" title="၃၄၀။ ဥဒၶစၥကုကၠဳစၥနီ၀ရဏ အာသဏၰကံေျပာင္းနည္းတရားေတာ္ (၂၁-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၄၀။ ဥဒၶစၥကုကၠဳစၥနီ၀ရဏ အာသဏၰကံေျပာင္းနည္းတရားေတာ္ (၂၁-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">341</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BzUDfPQ-bEM&index=342&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BzUDfPQ-bEM&index=342&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/BzUDfPQ-bEM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD45SxebinH8MuVxGeWy_O8bmrbdQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၄၁။ ပဋိစၥသမုပၸါဒ္ႏွင့္လွဴနည္း (၂၁-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 50 minutes 6 views" title="၃၄၁။ ပဋိစၥသမုပၸါဒ္ႏွင့္လွဴနည္း (၂၁-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၄၁။ ပဋိစၥသမုပၸါဒ္ႏွင့္လွဴနည္း (၂၁-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">342</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=eNACbUR2Rgc&index=343&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=eNACbUR2Rgc&index=343&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/eNACbUR2Rgc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDFJesWc8mjcKl3Ur3tlF576f2uLQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 10 minutes">
1:10:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၄၂။ ကထိန္ေရစက္ခ်တရားေတာ္ (၂၂-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 10 minutes 6 views" title="၃၄၂။ ကထိန္ေရစက္ခ်တရားေတာ္ (၂၂-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၄၂။ ကထိန္ေရစက္ခ်တရားေတာ္ (၂၂-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">343</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=cTP9azIB00M&index=344&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=cTP9azIB00M&index=344&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/cTP9azIB00M/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCNCPA8SjvA5mmbGArcWT39A8Bc1w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၄၃။ ဦးသိန္းေမာင္+ေဒၚေကာက္တို႔၏ ေက်ာင္းဇရပ္အလွဴေရစက္ခ် (၂၂-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 9 views" title="၃၄၃။ ဦးသိန္းေမာင္+ေဒၚေကာက္တို႔၏ ေက်ာင္းဇရပ္အလွဴေရစက္ခ် (၂၂-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၄၃။ ဦးသိန္းေမာင္+ေဒၚေကာက္တို႔၏ ေက်ာင္းဇရပ္အလွဴေရစက္ခ် (၂၂-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">344</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NvSrc6Lvbeg&index=345&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NvSrc6Lvbeg&index=345&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/NvSrc6Lvbeg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAe7rkw8X0c7I5UuvM6_WbQFO-gPg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၄၄။ ဥဒၶစၥကုကၠဳစၥနီ၀ရဏ ဆိုး၀ါးပံုႏွင့္ မဂ္အျမတ္ထုတ္ပံု (၂၃-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 3 views" title="၃၄၄။ ဥဒၶစၥကုကၠဳစၥနီ၀ရဏ ဆိုး၀ါးပံုႏွင့္ မဂ္အျမတ္ထုတ္ပံု (၂၃-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၄၄။ ဥဒၶစၥကုကၠဳစၥနီ၀ရဏ ဆိုး၀ါးပံုႏွင့္ မဂ္အျမတ္ထုတ္ပံု (၂၃-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">345</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2H2BaCYfdZw&index=346&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2H2BaCYfdZw&index=346&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၄၅။ ပဋိစၥသမုပၸါဒ္ ပံုစံျပ၍ေဟာၾကားပံု (၂၃-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 9 views" title="၃၄၅။ ပဋိစၥသမုပၸါဒ္ ပံုစံျပ၍ေဟာၾကားပံု (၂၃-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၄၅။ ပဋိစၥသမုပၸါဒ္ ပံုစံျပ၍ေဟာၾကားပံု (၂၃-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">346</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ua-wcrM1kYo&index=347&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ua-wcrM1kYo&index=347&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၄၆။ အဓိပတိသံုးပါးထား၍ တရားအားထုတ္ရပံု (၂၄-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 7 views" title="၃၄၆။ အဓိပတိသံုးပါးထား၍ တရားအားထုတ္ရပံု (၂၄-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၄၆။ အဓိပတိသံုးပါးထား၍ တရားအားထုတ္ရပံု (၂၄-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">347</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=be-2cHuEmCY&index=348&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=be-2cHuEmCY&index=348&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၄၇။ အေစလကႆဖ ဥပမာျပ ပဋိစၥသမုပၸါဒ္တရားေတာ္ (၂၄-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 4 views" title="၃၄၇။ အေစလကႆဖ ဥပမာျပ ပဋိစၥသမုပၸါဒ္တရားေတာ္ (၂၄-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၄၇။ အေစလကႆဖ ဥပမာျပ ပဋိစၥသမုပၸါဒ္တရားေတာ္ (၂၄-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">348</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TR-uqr2MR40&index=349&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TR-uqr2MR40&index=349&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၃၄၈။ ေ၀ဒနာသံုးပါးကို ရွဳၾကရန္ (၂၅-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၃၄၈။ ေ၀ဒနာသံုးပါးကို ရွဳၾကရန္ (၂၅-၁၁-၁၉၆၁)">
၃၄၈။ ေ၀ဒနာသံုးပါးကို ရွဳၾကရန္ (၂၅-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">349</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mVhqyDYj7CE&index=350&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mVhqyDYj7CE&index=350&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၄၉။ မဟာတဏွာသခၤယသုတ္၊ စိတ္ကို ဒိ႒ိသံုးမ်ိဳးခြါနည္းတရားေတာ္ (၂၅-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 6 views" title="၃၄၉။ မဟာတဏွာသခၤယသုတ္၊ စိတ္ကို ဒိ႒ိသံုးမ်ိဳးခြါနည္းတရားေတာ္ (၂၅-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၄၉။ မဟာတဏွာသခၤယသုတ္၊ စိတ္ကို ဒိ႒ိသံုးမ်ိဳးခြါနည္းတရားေတာ္ (၂၅-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">350</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=w8Jld8B_UNc&index=351&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=w8Jld8B_UNc&index=351&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၅၀။ ဒြါရေျခာက္ေပါက္ တစ္ေပါက္ကေန အမိဖမ္းရမည္ (၂၆-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 8 views" title="၃၅၀။ ဒြါရေျခာက္ေပါက္ တစ္ေပါက္ကေန အမိဖမ္းရမည္ (၂၆-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၅၀။ ဒြါရေျခာက္ေပါက္ တစ္ေပါက္ကေန အမိဖမ္းရမည္ (၂၆-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">351</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zyu3GN-yOZA&index=352&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zyu3GN-yOZA&index=352&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၅၁။ ရွင္ဆႏၵဥပမာျပ ပဋိစၥသမုပၸါဒ္တရားေတာ္ (၂၇-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 8 views" title="၃၅၁။ ရွင္ဆႏၵဥပမာျပ ပဋိစၥသမုပၸါဒ္တရားေတာ္ (၂၇-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၅၁။ ရွင္ဆႏၵဥပမာျပ ပဋိစၥသမုပၸါဒ္တရားေတာ္ (၂၇-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">352</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=RtFhpS2L54o&index=353&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=RtFhpS2L54o&index=353&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၅၂။ ၀ိေ၀ကသံုးပါးက်င့္ရမည္ (၂၇-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 3 views" title="၃၅၂။ ၀ိေ၀ကသံုးပါးက်င့္ရမည္ (၂၇-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၅၂။ ၀ိေ၀ကသံုးပါးက်င့္ရမည္ (၂၇-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">353</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=cSIdkc57QXY&index=354&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=cSIdkc57QXY&index=354&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:17
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၅၃။ အ၀ိဇၨာမွ ၀ိဇၨာျဖစ္နည္း (၂၈-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၃၅၃။ အ၀ိဇၨာမွ ၀ိဇၨာျဖစ္နည္း (၂၈-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၅၃။ အ၀ိဇၨာမွ ၀ိဇၨာျဖစ္နည္း (၂၈-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">354</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Sk52jfuUu9E&index=355&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Sk52jfuUu9E&index=355&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၅၄။ ကံႏွင့္တဏွာတြင္ တဏွာကပိုအေရးၾကီးပံု (၂၈-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 5 views" title="၃၅၄။ ကံႏွင့္တဏွာတြင္ တဏွာကပိုအေရးၾကီးပံု (၂၈-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၅၄။ ကံႏွင့္တဏွာတြင္ တဏွာကပိုအေရးၾကီးပံု (၂၈-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">355</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=aRorE8PATwo&index=356&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=aRorE8PATwo&index=356&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၅၅။ နိဗၺာန္ႏွင့္ နိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၂၈-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 36 views" title="၃၅၅။ နိဗၺာန္ႏွင့္ နိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၂၈-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၅၅။ နိဗၺာန္ႏွင့္ နိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၂၈-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">356</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BeF0P8vSSZI&index=357&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BeF0P8vSSZI&index=357&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၅၆။ ခ်ည္တိုင္က်ိဳး၍ လည္ပတ္ျပတ္တရားေတာ္ (၃၀-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 6 views" title="၃၅၆။ ခ်ည္တိုင္က်ိဳး၍ လည္ပတ္ျပတ္တရားေတာ္ (၃၀-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၅၆။ ခ်ည္တိုင္က်ိဳး၍ လည္ပတ္ျပတ္တရားေတာ္ (၃၀-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">357</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=B1ptlIqKWSQ&index=358&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=B1ptlIqKWSQ&index=358&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၅၇။ ကိုယ့္ကိုယ္ကို ပဋိစၥသမုပၸါဒ္ႏွင့္ ဆံုးမနည္း (၁-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 4 views" title="၃၅၇။ ကိုယ့္ကိုယ္ကို ပဋိစၥသမုပၸါဒ္ႏွင့္ ဆံုးမနည္း (၁-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၅၇။ ကိုယ့္ကိုယ္ကို ပဋိစၥသမုပၸါဒ္ႏွင့္ ဆံုးမနည္း (၁-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">358</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=43EOnhkiGO8&index=359&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=43EOnhkiGO8&index=359&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၅၈။ တရားအားထုတ္မွ နိဗၺာန္ရပံု (၂-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 10 views" title="၃၅၈။ တရားအားထုတ္မွ နိဗၺာန္ရပံု (၂-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၅၈။ တရားအားထုတ္မွ နိဗၺာန္ရပံု (၂-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">359</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=INdDLeKpLAc&index=360&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=INdDLeKpLAc&index=360&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၅၉။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္(၁) (၄-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 7 views" title="၃၅၉။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္(၁) (၄-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၅၉။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္(၁) (၄-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">360</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4OdjYXcTZLo&index=361&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4OdjYXcTZLo&index=361&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၆၀။ ေၾကာက္စရာဒိ႒ိၾကီး (၅-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 4 views" title="၃၆၀။ ေၾကာက္စရာဒိ႒ိၾကီး (၅-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၆၀။ ေၾကာက္စရာဒိ႒ိၾကီး (၅-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">361</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ogl0chuYDsA&index=362&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ogl0chuYDsA&index=362&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၆၁။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္(၂) (၅-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၃၆၁။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္(၂) (၅-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၆၁။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္(၂) (၅-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">362</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=rTcUBJ4F0oA&index=363&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=rTcUBJ4F0oA&index=363&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၆၂။ သႆတႏွင့္ ဥေစၦဒျပဳတ္ေရး (၆-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 4 views" title="၃၆၂။ သႆတႏွင့္ ဥေစၦဒျပဳတ္ေရး (၆-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၆၂။ သႆတႏွင့္ ဥေစၦဒျပဳတ္ေရး (၆-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">363</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=pUMxs1lFbO4&index=364&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=pUMxs1lFbO4&index=364&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:50
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၆၃။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္(၃) (၆-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 5 views" title="၃၆၃။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္(၃) (၆-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၆၃။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္(၃) (၆-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">364</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lemdwQ_rYyY&index=365&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lemdwQ_rYyY&index=365&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၆၄။ ဆားတစ္လွ်က္ႏွင့္ သံသရာအေၾကြးဆပ္နည္း (၇-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 5 views" title="၃၆၄။ ဆားတစ္လွ်က္ႏွင့္ သံသရာအေၾကြးဆပ္နည္း (၇-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၆၄။ ဆားတစ္လွ်က္ႏွင့္ သံသရာအေၾကြးဆပ္နည္း (၇-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">365</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ToLuMkKPdJE&index=366&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ToLuMkKPdJE&index=366&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၆၅။ သႆတႏွင့္ ဥေစၦဒဒိ႒ိရွိေနပံုကို အကဲခတ္နည္း (၈-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 3 views" title="၃၆၅။ သႆတႏွင့္ ဥေစၦဒဒိ႒ိရွိေနပံုကို အကဲခတ္နည္း (၈-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၆၅။ သႆတႏွင့္ ဥေစၦဒဒိ႒ိရွိေနပံုကို အကဲခတ္နည္း (၈-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">366</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZUdaic3EmxI&index=367&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZUdaic3EmxI&index=367&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၆၆။ ေရွ႕ေနာက္ခြဲျခားျပေသာ တရားေတာ္ (၈-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၃၆၆။ ေရွ႕ေနာက္ခြဲျခားျပေသာ တရားေတာ္ (၈-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၆၆။ ေရွ႕ေနာက္ခြဲျခားျပေသာ တရားေတာ္ (၈-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">367</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=sKXbPUujId4&index=368&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=sKXbPUujId4&index=368&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/sKXbPUujId4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDYQm0hc2LAsDC-rnR7t3c1juoLUQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၆၇။ သႆတႏွင့္ ဥေစၦဒဒိ႒ိရွိသူတို႔၏ သေဘာအေလ့အက်င့္ (၉-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 6 views" title="၃၆၇။ သႆတႏွင့္ ဥေစၦဒဒိ႒ိရွိသူတို႔၏ သေဘာအေလ့အက်င့္ (၉-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၆၇။ သႆတႏွင့္ ဥေစၦဒဒိ႒ိရွိသူတို႔၏ သေဘာအေလ့အက်င့္ (၉-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">368</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fj4M5xZ1uLw&index=369&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fj4M5xZ1uLw&index=369&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/fj4M5xZ1uLw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDqD7RQNbbgqRhzIze3iYAKdk-FZA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="41 minutes">
41:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၆၈။ ရွင္သာရိပုတၱရာႏွင့္ ဘုရားရွင္ကိုယ္ေတာ္ျမတ္ၾကီး ေမး၊ေျဖ (၉-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 41 minutes 6 views" title="၃၆၈။ ရွင္သာရိပုတၱရာႏွင့္ ဘုရားရွင္ကိုယ္ေတာ္ျမတ္ၾကီး ေမး၊ေျဖ (၉-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၆၈။ ရွင္သာရိပုတၱရာႏွင့္ ဘုရားရွင္ကိုယ္ေတာ္ျမတ္ၾကီး ေမး၊ေျဖ (၉-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">369</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7xMB7LhlLyg&index=370&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7xMB7LhlLyg&index=370&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/7xMB7LhlLyg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCDLS9ehQk_szW6s2n2peC2GqRYZw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၆၉။ အလယ္လမ္းသို႔ ေရာက္ရန္နည္းလမ္း (၁၀-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 49 minutes 2 views" title="၃၆၉။ အလယ္လမ္းသို႔ ေရာက္ရန္နည္းလမ္း (၁၀-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၆၉။ အလယ္လမ္းသို႔ ေရာက္ရန္နည္းလမ္း (၁၀-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">370</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4sYrVxCpSuY&index=371&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4sYrVxCpSuY&index=371&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/4sYrVxCpSuY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBB0fiWuohAQCMUHNiBMN3lZFEtTA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၇၀။ နိဗၺာန္သည္မေ၀း အနီးေလးမွာရွိေနပံု (၁၀-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 2 views" title="၃၇၀။ နိဗၺာန္သည္မေ၀း အနီးေလးမွာရွိေနပံု (၁၀-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၇၀။ နိဗၺာန္သည္မေ၀း အနီးေလးမွာရွိေနပံု (၁၀-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">371</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=nm-Q3dYBHf0&index=372&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=nm-Q3dYBHf0&index=372&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/nm-Q3dYBHf0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBkHtXzrGyKo8YXyI72yOiFur8p_w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၇၁။ လက္သည္ရွာပံု (၁၁-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 1 view" title="၃၇၁။ လက္သည္ရွာပံု (၁၁-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၇၁။ လက္သည္ရွာပံု (၁၁-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">372</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qM_7gdsAZRI&index=373&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qM_7gdsAZRI&index=373&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/qM_7gdsAZRI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCTsCaOhkVxd5q7FeT2ZEta8NS1nA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၇၂။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၁) (၁၁-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 3 views" title="၃၇၂။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၁) (၁၁-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၇၂။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၁) (၁၁-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">373</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EX0t-xrYRY4&index=374&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EX0t-xrYRY4&index=374&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/EX0t-xrYRY4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAL5bMWVAFKaX2wYfuS1zV9wpxBfw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၇၃။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၂) (၁၂-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 1 view" title="၃၇၃။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၂) (၁၂-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၇၃။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၂) (၁၂-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">374</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=MEPNdhKyE70&index=375&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=MEPNdhKyE70&index=375&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/MEPNdhKyE70/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBAwTuyHoH4Wg72B3wCefqG-MkRrg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၇၄။ ခႏၶာျဖစ္စဥ္ကို စက္၀ိုင္းေထာက္ျပ၍ ေဟာေတာ္မူပံု (၁၂-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 1 view" title="၃၇၄။ ခႏၶာျဖစ္စဥ္ကို စက္၀ိုင္းေထာက္ျပ၍ ေဟာေတာ္မူပံု (၁၂-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၇၄။ ခႏၶာျဖစ္စဥ္ကို စက္၀ိုင္းေထာက္ျပ၍ ေဟာေတာ္မူပံု (၁၂-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">375</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4LzFvElEQoY&index=376&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4LzFvElEQoY&index=376&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/4LzFvElEQoY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAKlfqxkGFOXsqrUQSjv2b3gidXZw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၇၅။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၃) (၁၃-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 1 view" title="၃၇၅။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၃) (၁၃-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၇၅။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၃) (၁၃-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">376</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Pq1V84-Jgc0&index=377&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Pq1V84-Jgc0&index=377&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Pq1V84-Jgc0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLABFzrLbm026oUMdydiPq5w-TIeEg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၇၆။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၄) (၁၄-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 1 view" title="၃၇၆။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၄) (၁၄-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၇၆။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၄) (၁၄-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">377</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jKHEAeGosXc&index=378&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jKHEAeGosXc&index=378&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/jKHEAeGosXc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC0kKeyTm0zUQMaSMirHVZoP59sjg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၇၇။ ဒိ႒ိအပ်င္းခံေနလွ်င္ ဘယ္ေတာ့မွ နိဗၺာန္မေရာက္ႏိုင္ပံု (၁၄-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 1 view" title="၃၇၇။ ဒိ႒ိအပ်င္းခံေနလွ်င္ ဘယ္ေတာ့မွ နိဗၺာန္မေရာက္ႏိုင္ပံု (၁၄-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၇၇။ ဒိ႒ိအပ်င္းခံေနလွ်င္ ဘယ္ေတာ့မွ နိဗၺာန္မေရာက္ႏိုင္ပံု (၁၄-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">378</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hNEoJByAjoY&index=379&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hNEoJByAjoY&index=379&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/hNEoJByAjoY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAJUQ9x4DhgZhv7Ui4S7MrYbiBKFg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၇၈။ မဟာပရိနိဗၺာနသုတ္၊ အျမင္မွန္ရေရးတရားေတာ္ (၁၅-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 1 view" title="၃၇၈။ မဟာပရိနိဗၺာနသုတ္၊ အျမင္မွန္ရေရးတရားေတာ္ (၁၅-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၇၈။ မဟာပရိနိဗၺာနသုတ္၊ အျမင္မွန္ရေရးတရားေတာ္ (၁၅-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">379</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1TAuDxqt42g&index=380&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1TAuDxqt42g&index=380&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/1TAuDxqt42g/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLClGROdK1bOQH8pdUjG-4OiIMdyJQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 3 minutes">
1:03:56
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၇၉။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၅) (၁၆-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 3 minutes 1 view" title="၃၇၉။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၅) (၁၆-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၇၉။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၅) (၁၆-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">380</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=omje7hPGqws&index=381&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=omje7hPGqws&index=381&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/omje7hPGqws/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB93nC4JZ1m-tpVPQ-i2ei32pckZQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၈၀။ ခႏၶာထဲ ရွိေကာင္းသည့္တရားႏွင့္ မရွိေကာင္းသည့္တရား (၁၆-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၃၈၀။ ခႏၶာထဲ ရွိေကာင္းသည့္တရားႏွင့္ မရွိေကာင္းသည့္တရား (၁၆-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၈၀။ ခႏၶာထဲ ရွိေကာင္းသည့္တရားႏွင့္ မရွိေကာင္းသည့္တရား (၁၆-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">381</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=6_CMZaWoC2c&index=382&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=6_CMZaWoC2c&index=382&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/6_CMZaWoC2c/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDMmFZD61Gb2xUG7EoBEKytJv7s7w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၈၁။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၆) (၁၇-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 2 views" title="၃၈၁။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၆) (၁၇-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၈၁။ ၀ိသာခႏွင့္ ဓမၼဒိႏၷာေမး၊ေျဖ အမွတ္(၆) (၁၇-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">382</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KLDqoZ42RKQ&index=383&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KLDqoZ42RKQ&index=383&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/KLDqoZ42RKQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBGXVg98jujBvjFEVAgNDkxo9AY3A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:56
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၈၂။ ခႏၶာျဖစ္စဥ္ကို စက္၀ိုင္းေထာက္ျပ၍ ေဟာၾကားေတာ္မူပံု (၁၇-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 1 view" title="၃၈၂။ ခႏၶာျဖစ္စဥ္ကို စက္၀ိုင္းေထာက္ျပ၍ ေဟာၾကားေတာ္မူပံု (၁၇-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၈၂။ ခႏၶာျဖစ္စဥ္ကို စက္၀ိုင္းေထာက္ျပ၍ ေဟာၾကားေတာ္မူပံု (၁၇-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">383</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KhEZQKVBLh4&index=384&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KhEZQKVBLh4&index=384&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/KhEZQKVBLh4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLByZE0N_xSMhgS_vB4OdIQKCno-cg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၈၃။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား တရားေပးပံု(၁) (၁၈-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 2 views" title="၃၈၃။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား တရားေပးပံု(၁) (၁၈-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၈၃။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား တရားေပးပံု(၁) (၁၈-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">384</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lkRHoU4K2T8&index=385&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lkRHoU4K2T8&index=385&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/lkRHoU4K2T8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCoCLaRkbfr4CdYy6fBshRFbvYVkw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၈၄။ ကံေပၚတြင္ တဏွာအုပ္ခ်ဳပ္ေနပံု (၁၈-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 2 views" title="၃၈၄။ ကံေပၚတြင္ တဏွာအုပ္ခ်ဳပ္ေနပံု (၁၈-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၈၄။ ကံေပၚတြင္ တဏွာအုပ္ခ်ဳပ္ေနပံု (၁၈-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">385</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2BgxfzqMoiY&index=386&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2BgxfzqMoiY&index=386&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/2BgxfzqMoiY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBJyMt15m6bZuuvLSEkX9NRxAXmew"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၈၅။ ရာဓရဟန္းဥပမာျပ ခႏၶာငါးပါး လူသတ္ေယာက်ာ္း (၁၉-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 4 views" title="၃၈၅။ ရာဓရဟန္းဥပမာျပ ခႏၶာငါးပါး လူသတ္ေယာက်ာ္း (၁၉-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၈၅။ ရာဓရဟန္းဥပမာျပ ခႏၶာငါးပါး လူသတ္ေယာက်ာ္း (၁၉-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">386</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=aVBuWr2SZjM&index=387&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=aVBuWr2SZjM&index=387&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/aVBuWr2SZjM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCfn16K_OMeHM-jDahqJgHn4b95OA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 5 minutes">
1:05:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၈၆။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား တရားေပးပံု(၂) (၁၉-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 5 minutes 1 view" title="၃၈၆။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား တရားေပးပံု(၂) (၁၉-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၈၆။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား တရားေပးပံု(၂) (၁၉-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">387</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2tlJXm4NC0g&index=388&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2tlJXm4NC0g&index=388&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/2tlJXm4NC0g/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAqr9ZZ_tbukVFIfZ5n-MVAO-QQgg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၈၇။ ရာဓသုတ္၊ အာသ၀၀င္ရိုးခ်ိဳးရန္ (၂၀-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 3 views" title="၃၈၇။ ရာဓသုတ္၊ အာသ၀၀င္ရိုးခ်ိဳးရန္ (၂၀-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၃၈၇။ ရာဓသုတ္၊ အာသ၀၀င္ရိုးခ်ိဳးရန္ (၂၀-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">388</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WL3eLWsLMf0&index=389&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WL3eLWsLMf0&index=389&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/WL3eLWsLMf0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB9u2B5gpMIa1zqV9HIx5_eM9Q2vg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၈၈။ အႏွစ္ထမ္းၾကေအာင္ ၾကိဳးစားရန္၊ စူဠသာေရာပမသုတ္ (၁၆-၄-၁၉၆၂) by mogok sayadaw 1 year ago 48 minutes 1 view" title="၃၈၈။ အႏွစ္ထမ္းၾကေအာင္ ၾကိဳးစားရန္၊ စူဠသာေရာပမသုတ္ (၁၆-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၈၈။ အႏွစ္ထမ္းၾကေအာင္ ၾကိဳးစားရန္၊ စူဠသာေရာပမသုတ္ (၁၆-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">389</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EXYP70WwaMQ&index=390&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EXYP70WwaMQ&index=390&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/EXYP70WwaMQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCvHezshpXu8t2l-FdtkC1vqCR3kA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၈၉။ ခႏၶာၾကီး၏ သြားေနက်လမ္းစဥ္ (၁၇-၄-၁၉၆၂) by mogok sayadaw 1 year ago 56 minutes 2 views" title="၃၈၉။ ခႏၶာၾကီး၏ သြားေနက်လမ္းစဥ္ (၁၇-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၈၉။ ခႏၶာၾကီး၏ သြားေနက်လမ္းစဥ္ (၁၇-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">390</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=atEZvaY7ZqQ&index=391&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=atEZvaY7ZqQ&index=391&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/atEZvaY7ZqQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDZegKh0FUng6apJJBvQft6fvrsIQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၉၀။ ဉာဏ္အျမင္ အနတၱေတြ႔ပါမွ အတၱဒိ႒ိျပဳတ္မည္(၁) (၁၈-၄-၁၉၆၂) by mogok sayadaw 1 year ago 45 minutes 1 view" title="၃၉၀။ ဉာဏ္အျမင္ အနတၱေတြ႔ပါမွ အတၱဒိ႒ိျပဳတ္မည္(၁) (၁၈-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၉၀။ ဉာဏ္အျမင္ အနတၱေတြ႔ပါမွ အတၱဒိ႒ိျပဳတ္မည္(၁) (၁၈-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">391</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fq1CsIrnMyc&index=392&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fq1CsIrnMyc&index=392&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:12
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၉၁။ ဉာဏ္အျမင္ အနတၱေတြ႔ပါမွ အတၱဒိ႒ိျပဳတ္မည္(၁) (၁၉-၄-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 3 views" title="၃၉၁။ ဉာဏ္အျမင္ အနတၱေတြ႔ပါမွ အတၱဒိ႒ိျပဳတ္မည္(၁) (၁၉-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၉၁။ ဉာဏ္အျမင္ အနတၱေတြ႔ပါမွ အတၱဒိ႒ိျပဳတ္မည္(၁) (၁၉-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">392</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=iipts3Rn6tc&index=393&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=iipts3Rn6tc&index=393&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/iipts3Rn6tc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDJe0jkRI56t9AN4K5lhiWgQq64WA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="35 minutes">
35:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၉၂။ တဏွာမာနခ်ဳပ္တဲ့ပုဂၢိဳလ္ ဘယ္သြားသတုန္း (၂၅-၄-၁၉၆၂) by mogok sayadaw 1 year ago 35 minutes 1 view" title="၃၉၂။ တဏွာမာနခ်ဳပ္တဲ့ပုဂၢိဳလ္ ဘယ္သြားသတုန္း (၂၅-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၉၂။ တဏွာမာနခ်ဳပ္တဲ့ပုဂၢိဳလ္ ဘယ္သြားသတုန္း (၂၅-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">393</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=xhHFmmZGtVM&index=394&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=xhHFmmZGtVM&index=394&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/xhHFmmZGtVM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDr2H4HJ7FbTLbgXUmwpJ71a6tXiw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="40 minutes">
40:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၉၃။ ကံကိုအတၱစြဲလမ္းထားၾကပံု တရားေတာ္ (၂၆-၄-၁၉၆၂) by mogok sayadaw 1 year ago 40 minutes 1 view" title="၃၉၃။ ကံကိုအတၱစြဲလမ္းထားၾကပံု တရားေတာ္ (၂၆-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၉၃။ ကံကိုအတၱစြဲလမ္းထားၾကပံု တရားေတာ္ (၂၆-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">394</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5nDL8ZmTTtY&index=395&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5nDL8ZmTTtY&index=395&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5nDL8ZmTTtY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAqfYwlumzckfaNjIfyovVq0bnT-g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="37 minutes">
37:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၉၄။ ငရဲမီးၿငိႇမ္းသတ္နည္း (၂၇-၄-၁၉၆၂) by mogok sayadaw 1 year ago 37 minutes 2 views" title="၃၉၄။ ငရဲမီးၿငိႇမ္းသတ္နည္း (၂၇-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၉၄။ ငရဲမီးၿငိႇမ္းသတ္နည္း (၂၇-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">395</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=MmFuBuQowBY&index=396&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=MmFuBuQowBY&index=396&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/MmFuBuQowBY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBdaRGN-IKogbVwhMsNucCcCrDR9A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="39 minutes">
39:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၉၅။ ခ်ိဳ႕ယြင္းခ်က္ သံုးမ်ိဳးျဖစ္ခဲ့လွ်င္ တရားထူးမရႏိုင္ပံု (၂၇-၄-၁၉၆၂) by mogok sayadaw 1 year ago 39 minutes 2 views" title="၃၉၅။ ခ်ိဳ႕ယြင္းခ်က္ သံုးမ်ိဳးျဖစ္ခဲ့လွ်င္ တရားထူးမရႏိုင္ပံု (၂၇-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၉၅။ ခ်ိဳ႕ယြင္းခ်က္ သံုးမ်ိဳးျဖစ္ခဲ့လွ်င္ တရားထူးမရႏိုင္ပံု (၂၇-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">396</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4Ldz7VPi_us&index=397&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4Ldz7VPi_us&index=397&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/4Ldz7VPi_us/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAuga54mHTvWVOl97V6txutpYod7A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="35 minutes">
35:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၉၆။ ခႏၶာစြဲလမ္းမႈေၾကာင့္ တဏွာ၊ မာန၊ ဒိ႒ိျဖစ္ရပံု (၂၈-၄-၁၉၆၂) by mogok sayadaw 1 year ago 35 minutes 18 views" title="၃၉၆။ ခႏၶာစြဲလမ္းမႈေၾကာင့္ တဏွာ၊ မာန၊ ဒိ႒ိျဖစ္ရပံု (၂၈-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၉၆။ ခႏၶာစြဲလမ္းမႈေၾကာင့္ တဏွာ၊ မာန၊ ဒိ႒ိျဖစ္ရပံု (၂၈-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">397</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qrCYGjX0tjE&index=398&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qrCYGjX0tjE&index=398&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/qrCYGjX0tjE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC9uDIwiH9TQ58Mor2gBiJmJ4y86w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="35 minutes">
35:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၉၇။ ေမြးကတည္းက ခႏၶာၾကီးမွာ အို နာ ေသေဘးခရီးသို႔ ေျပးေနပံု (၂၉-၄-၁၉၆၂) by mogok sayadaw 1 year ago 35 minutes 2 views" title="၃၉၇။ ေမြးကတည္းက ခႏၶာၾကီးမွာ အို နာ ေသေဘးခရီးသို႔ ေျပးေနပံု (၂၉-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၉၇။ ေမြးကတည္းက ခႏၶာၾကီးမွာ အို နာ ေသေဘးခရီးသို႔ ေျပးေနပံု (၂၉-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">398</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=oIw_lrQQhfs&index=399&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=oIw_lrQQhfs&index=399&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/oIw_lrQQhfs/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDdDiavGGXJYe9qF0pXdwXok0mWpw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="41 minutes">
41:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၉၈။ လူမိုက္ႏွင့္ လူလိမၼာထူးျခားပံု (၃၀-၄-၁၉၆၂) by mogok sayadaw 1 year ago 41 minutes 9 views" title="၃၉၈။ လူမိုက္ႏွင့္ လူလိမၼာထူးျခားပံု (၃၀-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၉၈။ လူမိုက္ႏွင့္ လူလိမၼာထူးျခားပံု (၃၀-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">399</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=puHT6pAOrFM&index=400&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=puHT6pAOrFM&index=400&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/puHT6pAOrFM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCnrS3zR35UxGpUBjBsEt11aaAZQQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="39 minutes">
39:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၃၉၉။ ခႏၶာကိုယ္အတြင္း၌ စီစစ္သံုးသပ္ရန္ (၁-၅-၁၉၆၂) by mogok sayadaw 1 year ago 39 minutes 6 views" title="၃၉၉။ ခႏၶာကိုယ္အတြင္း၌ စီစစ္သံုးသပ္ရန္ (၁-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၃၉၉။ ခႏၶာကိုယ္အတြင္း၌ စီစစ္သံုးသပ္ရန္ (၁-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">400</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=RP4JUqxk0bw&index=401&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=RP4JUqxk0bw&index=401&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/RP4JUqxk0bw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLALg54iZ3AUrgyEGbo92iafumow9g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၀၀။ ႏွလံုးသြင္းမွန္မွ နိဗၺာန္ရမည္ (၂-၅-၁၉၆၂) by mogok sayadaw 1 year ago 46 minutes 2 views" title="၄၀၀။ ႏွလံုးသြင္းမွန္မွ နိဗၺာန္ရမည္ (၂-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၀၀။ ႏွလံုးသြင္းမွန္မွ နိဗၺာန္ရမည္ (၂-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">401</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=N_v1fV32W4w&index=402&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=N_v1fV32W4w&index=402&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/N_v1fV32W4w/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBvgcqQ9NTj3NFXghwosWRkdogEug"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၀၁။ ဆေႏၵာ၀ါဒသုတ္(၁) (၅-၅-၁၉၆၂) by mogok sayadaw 1 year ago 45 minutes 1 view" title="၄၀၁။ ဆေႏၵာ၀ါဒသုတ္(၁) (၅-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၀၁။ ဆေႏၵာ၀ါဒသုတ္(၁) (၅-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">402</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=IUXkhTZ_wgQ&index=403&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=IUXkhTZ_wgQ&index=403&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/IUXkhTZ_wgQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBu-U3HSz0zC9kdy11VTroxnX4RLw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၀၂။ ဆေႏၵာ၀ါဒသုတ္(၂) (၆-၅-၁၉၆၂) by mogok sayadaw 1 year ago 45 minutes 2 views" title="၄၀၂။ ဆေႏၵာ၀ါဒသုတ္(၂) (၆-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၀၂။ ဆေႏၵာ၀ါဒသုတ္(၂) (၆-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">403</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mlitJejv6Qw&index=404&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mlitJejv6Qw&index=404&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/mlitJejv6Qw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAzOd0iNP56qN902_NDXbeYh7oc-Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၄၀၃။ ဣၿႏိၵယဘာ၀နသုတ္(၁) (၇-၅-၁၉၆၂) by mogok sayadaw 1 year ago 49 minutes 2 views" title="၄၀၃။ ဣၿႏိၵယဘာ၀နသုတ္(၁) (၇-၅-၁၉၆၂)">
၄၀၃။ ဣၿႏိၵယဘာ၀နသုတ္(၁) (၇-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">404</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=MMVeZ9fuqXY&index=405&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=MMVeZ9fuqXY&index=405&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/MMVeZ9fuqXY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCTL15e3AgulRCOOBQw4927YQNCtA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="47 minutes">
47:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၄၀၄။ ဣၿႏိၵယဘာ၀နသုတ္(၂) (၈-၅-၁၉၆၂) by mogok sayadaw 1 year ago 47 minutes 2 views" title="၄၀၄။ ဣၿႏိၵယဘာ၀နသုတ္(၂) (၈-၅-၁၉၆၂)">
၄၀၄။ ဣၿႏိၵယဘာ၀နသုတ္(၂) (၈-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">405</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ADeSV303r-8&index=406&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ADeSV303r-8&index=406&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ADeSV303r-8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBVL6mAaKpdQ8rCZC__CAKpZl5DfA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၀၅။ အေစလကႆဖ ဥပမာျပ သႆတ၊ ဥေစၦဒျဖဳတ္ေရး (၉-၅-၁၉၆၂) by mogok sayadaw 1 year ago 46 minutes 2 views" title="၄၀၅။ အေစလကႆဖ ဥပမာျပ သႆတ၊ ဥေစၦဒျဖဳတ္ေရး (၉-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၀၅။ အေစလကႆဖ ဥပမာျပ သႆတ၊ ဥေစၦဒျဖဳတ္ေရး (၉-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">406</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=nHLrU_lQDto&index=407&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=nHLrU_lQDto&index=407&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/nHLrU_lQDto/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDCW9y9Bx7StGzgduKV7baCqU8SYA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၀၆။ အႏုရုဒၶါသုတ္၊ မဂ္ဖိုလ္တားသည့္ တရားသံုးခု (၁၁-၅-၁၉၆၂) by mogok sayadaw 1 year ago 48 minutes 3 views" title="၄၀၆။ အႏုရုဒၶါသုတ္၊ မဂ္ဖိုလ္တားသည့္ တရားသံုးခု (၁၁-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၀၆။ အႏုရုဒၶါသုတ္၊ မဂ္ဖိုလ္တားသည့္ တရားသံုးခု (၁၁-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">407</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5yRv26Kz6yg&index=408&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5yRv26Kz6yg&index=408&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5yRv26Kz6yg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDDbew5TBr9wlCgAQ9xPkgllJgnsQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:40
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၀၇။ ေလာကသံုးပါးကို ခြဲျခားသိရန္တရားေတာ္ (၁၂-၅-၁၉၆၂) by mogok sayadaw 1 year ago 50 minutes 2 views" title="၄၀၇။ ေလာကသံုးပါးကို ခြဲျခားသိရန္တရားေတာ္ (၁၂-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၀၇။ ေလာကသံုးပါးကို ခြဲျခားသိရန္တရားေတာ္ (၁၂-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">408</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4OtsPi3bcDs&index=409&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4OtsPi3bcDs&index=409&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/4OtsPi3bcDs/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCUFqwfKUuCV4bvEDIi9t97gpL6DA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:17
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၀၈။ တဏွာမာန အရင္းခံ၍ နိဗၺာန္သို႔ တက္လွမ္းပံု (၁၃-၅-၁၉၆၂) by mogok sayadaw 1 year ago 45 minutes 1 view" title="၄၀၈။ တဏွာမာန အရင္းခံ၍ နိဗၺာန္သို႔ တက္လွမ္းပံု (၁၃-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၀၈။ တဏွာမာန အရင္းခံ၍ နိဗၺာန္သို႔ တက္လွမ္းပံု (၁၃-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">409</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=eEochjV7aIc&index=410&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=eEochjV7aIc&index=410&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/eEochjV7aIc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBgz8XgeD0ZNYZqZBfr8D3qxLcwpg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="47 minutes">
47:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၀၉။ ျပံဳးေသႏွင့္ မဲ့ေသတရားေတာ္ (၁၄-၅-၁၉၆၂) by mogok sayadaw 1 year ago 47 minutes 1 view" title="၄၀၉။ ျပံဳးေသႏွင့္ မဲ့ေသတရားေတာ္ (၁၄-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၀၉။ ျပံဳးေသႏွင့္ မဲ့ေသတရားေတာ္ (၁၄-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">410</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=rN5S2VfykjU&index=411&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=rN5S2VfykjU&index=411&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၁၀။ သံသရာခ်ဲ႕သည့္တရားႏွင့္ သံသရာျဖတ္သည့္တရား (၁၅-၅-၁၉၆၂) by mogok sayadaw 1 year ago 46 minutes 2 views" title="၄၁၀။ သံသရာခ်ဲ႕သည့္တရားႏွင့္ သံသရာျဖတ္သည့္တရား (၁၅-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၁၀။ သံသရာခ်ဲ႕သည့္တရားႏွင့္ သံသရာျဖတ္သည့္တရား (၁၅-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">411</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=drYYJF9YJjQ&index=412&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=drYYJF9YJjQ&index=412&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၁၁။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ၀ိဇၨာႏွင့္ စရဏျဖစ္ေအာင္လုပ္ရန္ (၁၆-၅-၁၉၆၂) by mogok sayadaw 1 year ago 48 minutes 1 view" title="၄၁၁။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ၀ိဇၨာႏွင့္ စရဏျဖစ္ေအာင္လုပ္ရန္ (၁၆-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၁၁။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ၀ိဇၨာႏွင့္ စရဏျဖစ္ေအာင္လုပ္ရန္ (၁၆-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">412</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=G8U1jcKYe-s&index=413&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=G8U1jcKYe-s&index=413&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၁၂။ ရွင္ဆႏၵဥပမာျပ တဏွာကသခင္၊ ခႏၶာကကၽြန္တရားေတာ္ (၁၈-၅-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 1 view" title="၄၁၂။ ရွင္ဆႏၵဥပမာျပ တဏွာကသခင္၊ ခႏၶာကကၽြန္တရားေတာ္ (၁၈-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၁၂။ ရွင္ဆႏၵဥပမာျပ တဏွာကသခင္၊ ခႏၶာကကၽြန္တရားေတာ္ (၁၈-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">413</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=s1hbc7kMQA4&index=414&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=s1hbc7kMQA4&index=414&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၁၃။ ပထမမဂ္ကို ကန္႔ကြက္သည့္ ဒိ႒ိသံုးမ်ိဳးျဖဳတ္ေပးပံု (၁၉-၅-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour 1 view" title="၄၁၃။ ပထမမဂ္ကို ကန္႔ကြက္သည့္ ဒိ႒ိသံုးမ်ိဳးျဖဳတ္ေပးပံု (၁၉-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၁၃။ ပထမမဂ္ကို ကန္႔ကြက္သည့္ ဒိ႒ိသံုးမ်ိဳးျဖဳတ္ေပးပံု (၁၉-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">414</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=O8mfb7Hcbec&index=415&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=O8mfb7Hcbec&index=415&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၁၄။ ဉာဏ္ႏွစ္ဉာဏ္တည္းႏွင့္ အရိယာျဖစ္ႏိုင္ပံု (၂၁-၅-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 1 view" title="၄၁၄။ ဉာဏ္ႏွစ္ဉာဏ္တည္းႏွင့္ အရိယာျဖစ္ႏိုင္ပံု (၂၁-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၁၄။ ဉာဏ္ႏွစ္ဉာဏ္တည္းႏွင့္ အရိယာျဖစ္ႏိုင္ပံု (၂၁-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">415</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=pp88FC6En9Q&index=416&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=pp88FC6En9Q&index=416&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="44 minutes">
44:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၁၅။ ပညတ္ပရမတ္ကြဲဖို႔ တရားနာၾကပံု (၂၂-၅-၁၉၆၂) by mogok sayadaw 1 year ago 44 minutes 1 view" title="၄၁၅။ ပညတ္ပရမတ္ကြဲဖို႔ တရားနာၾကပံု (၂၂-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၁၅။ ပညတ္ပရမတ္ကြဲဖို႔ တရားနာၾကပံု (၂၂-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">416</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=y2zYs_Yctkg&index=417&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=y2zYs_Yctkg&index=417&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="41 minutes">
41:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၁၆။ အပယ္စိတ္ခ်ရတာ လုပ္ၿပီးမွ ေပ်ာ္ခ်င္ေပ်ာ္ၾကပါ (၂၃-၅-၁၉၆၂) by mogok sayadaw 1 year ago 41 minutes 5 views" title="၄၁၆။ အပယ္စိတ္ခ်ရတာ လုပ္ၿပီးမွ ေပ်ာ္ခ်င္ေပ်ာ္ၾကပါ (၂၃-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၁၆။ အပယ္စိတ္ခ်ရတာ လုပ္ၿပီးမွ ေပ်ာ္ခ်င္ေပ်ာ္ၾကပါ (၂၃-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">417</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=vhChu9MBRh8&index=418&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=vhChu9MBRh8&index=418&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၁၇။ ဒိ႒ိ၀ိစိကိစၦာျဖဳတ္နည္း(၁) (၂၄-၅-၁၉၆၂) by mogok sayadaw 1 year ago 49 minutes 1 view" title="၄၁၇။ ဒိ႒ိ၀ိစိကိစၦာျဖဳတ္နည္း(၁) (၂၄-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၁၇။ ဒိ႒ိ၀ိစိကိစၦာျဖဳတ္နည္း(၁) (၂၄-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">418</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=g6ai7LgaPFw&index=419&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=g6ai7LgaPFw&index=419&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၁၈။ ဒိ႒ိ၀ိစိကိစၦာျဖဳတ္နည္း(၂) (၂၅-၅-၁၉၆၂) by mogok sayadaw 1 year ago 54 minutes 4 views" title="၄၁၈။ ဒိ႒ိ၀ိစိကိစၦာျဖဳတ္နည္း(၂) (၂၅-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၁၈။ ဒိ႒ိ၀ိစိကိစၦာျဖဳတ္နည္း(၂) (၂၅-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">419</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BEh2LCk9xcc&index=420&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BEh2LCk9xcc&index=420&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:40
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၁၉။ အာစယဂါမိေနာဓေမၼာႏွင့္ အပစယဂါမိေနာဓေမၼာ (၂၆-၅-၁၉၆၂) by mogok sayadaw 1 year ago 49 minutes 1 view" title="၄၁၉။ အာစယဂါမိေနာဓေမၼာႏွင့္ အပစယဂါမိေနာဓေမၼာ (၂၆-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၁၉။ အာစယဂါမိေနာဓေမၼာႏွင့္ အပစယဂါမိေနာဓေမၼာ (၂၆-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">420</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=m7y0SCZSYl0&index=421&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=m7y0SCZSYl0&index=421&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၂၀။ ပဥၥနႏၱရိယကံထက္ မိစၦာဒိ႒ိကံက ပို၍ေၾကာက္စရာေကာင္းပံု(၁) (၂၇-၅-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 3 views" title="၄၂၀။ ပဥၥနႏၱရိယကံထက္ မိစၦာဒိ႒ိကံက ပို၍ေၾကာက္စရာေကာင္းပံု(၁) (၂၇-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၂၀။ ပဥၥနႏၱရိယကံထက္ မိစၦာဒိ႒ိကံက ပို၍ေၾကာက္စရာေကာင္းပံု(၁) (၂၇-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">421</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=RkUAhUT4C6Y&index=422&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=RkUAhUT4C6Y&index=422&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၂၁။ ပဥၥနႏၱရိယကံထက္ မိစၦာဒိ႒ိကံက ပို၍ေၾကာက္စရာေကာင္းပံု(၂) (၂၈-၅-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 2 views" title="၄၂၁။ ပဥၥနႏၱရိယကံထက္ မိစၦာဒိ႒ိကံက ပို၍ေၾကာက္စရာေကာင္းပံု(၂) (၂၈-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၂၁။ ပဥၥနႏၱရိယကံထက္ မိစၦာဒိ႒ိကံက ပို၍ေၾကာက္စရာေကာင္းပံု(၂) (၂၈-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">422</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=d6wOwb92M9E&index=423&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=d6wOwb92M9E&index=423&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၂၂။ သစၥာေလးပါးျပ တရားေတာ္ (၃၀-၅-၁၉၆၂) by mogok sayadaw 1 year ago 56 minutes 1 view" title="၄၂၂။ သစၥာေလးပါးျပ တရားေတာ္ (၃၀-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၂၂။ သစၥာေလးပါးျပ တရားေတာ္ (၃၀-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">423</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=huOkqhuD-6I&index=424&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=huOkqhuD-6I&index=424&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၂၃။ ပပဥၥႏွင့္ နိပၸပဥၥျဖစ္ပံုျပ (၃၁-၅-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 1 view" title="၄၂၃။ ပပဥၥႏွင့္ နိပၸပဥၥျဖစ္ပံုျပ (၃၁-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၂၃။ ပပဥၥႏွင့္ နိပၸပဥၥျဖစ္ပံုျပ (၃၁-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">424</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=IHXdv7lezBs&index=425&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=IHXdv7lezBs&index=425&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၂၄။ ဓမၼစီမံသည့္အတိုင္း ျဖစ္ေနၾကပံု (၁-၆-၁၉၆၂) by mogok sayadaw 1 year ago 58 minutes 2 views" title="၄၂၄။ ဓမၼစီမံသည့္အတိုင္း ျဖစ္ေနၾကပံု (၁-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၂၄။ ဓမၼစီမံသည့္အတိုင္း ျဖစ္ေနၾကပံု (၁-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">425</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZNJn7E-1M3c&index=426&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZNJn7E-1M3c&index=426&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:12
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၂၅။ လူ႔ဘ၀ရခိုက္မွာ ၀ဋ္သံုးပါးမွလြတ္ေအာင္ ၾကိဳးစားရမည္ (၄-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၄၂၅။ လူ႔ဘ၀ရခိုက္မွာ ၀ဋ္သံုးပါးမွလြတ္ေအာင္ ၾကိဳးစားရမည္ (၄-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၂၅။ လူ႔ဘ၀ရခိုက္မွာ ၀ဋ္သံုးပါးမွလြတ္ေအာင္ ၾကိဳးစားရမည္ (၄-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">426</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7DhqH_oSNkA&index=427&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7DhqH_oSNkA&index=427&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၂၆။ ဇာတိ၊ ဇရာ၊ မရဏ ဒုကၡသစၥာျပေအာင္ရွဳၾကရန္ (၅-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 6 views" title="၄၂၆။ ဇာတိ၊ ဇရာ၊ မရဏ ဒုကၡသစၥာျပေအာင္ရွဳၾကရန္ (၅-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၂၆။ ဇာတိ၊ ဇရာ၊ မရဏ ဒုကၡသစၥာျပေအာင္ရွဳၾကရန္ (၅-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">427</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qfEeNGEei7A&index=428&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qfEeNGEei7A&index=428&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၂၇။ တဏွာကိုပယ္ျခင္းသည္ ဘုရား၏၀ါဒျဖစ္ပံု (၆-၆-၁၉၆၂) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၄၂၇။ တဏွာကိုပယ္ျခင္းသည္ ဘုရား၏၀ါဒျဖစ္ပံု (၆-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၂၇။ တဏွာကိုပယ္ျခင္းသည္ ဘုရား၏၀ါဒျဖစ္ပံု (၆-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">428</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=YORBDr1Hz_M&index=429&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=YORBDr1Hz_M&index=429&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၂၈။ ဉာဏ္ကမွ နိဗၺာန္ပို႔ႏိုင္ပံု တရားေတာ္ (၇-၆-၁၉၆၂) by mogok sayadaw 1 year ago 50 minutes 1 view" title="၄၂၈။ ဉာဏ္ကမွ နိဗၺာန္ပို႔ႏိုင္ပံု တရားေတာ္ (၇-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၂၈။ ဉာဏ္ကမွ နိဗၺာန္ပို႔ႏိုင္ပံု တရားေတာ္ (၇-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">429</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1MUujd37uZA&index=430&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1MUujd37uZA&index=430&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၂၉။ သာသနာႏွင့္ ဆရာေကာင္းေတြ႔ခိုက္မွာ လံု႔လစိုက္ၾကရန္ (၈-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 1 view" title="၄၂၉။ သာသနာႏွင့္ ဆရာေကာင္းေတြ႔ခိုက္မွာ လံု႔လစိုက္ၾကရန္ (၈-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၂၉။ သာသနာႏွင့္ ဆရာေကာင္းေတြ႔ခိုက္မွာ လံု႔လစိုက္ၾကရန္ (၈-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">430</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=vQUbWSbHKfg&index=431&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=vQUbWSbHKfg&index=431&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၃၀။ မဂၢင္ရွစ္ပါးမွ နိဗၺာန္ပို႔ႏိုင္ပံု (၉-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၄၃၀။ မဂၢင္ရွစ္ပါးမွ နိဗၺာန္ပို႔ႏိုင္ပံု (၉-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၃၀။ မဂၢင္ရွစ္ပါးမွ နိဗၺာန္ပို႔ႏိုင္ပံု (၉-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">431</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=FqZjV0bos9c&index=432&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=FqZjV0bos9c&index=432&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၃၁။ သစၥာေလးပါး တရားေတာ္ (၁၀-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 11 views" title="၄၃၁။ သစၥာေလးပါး တရားေတာ္ (၁၀-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၃၁။ သစၥာေလးပါး တရားေတာ္ (၁၀-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">432</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZpEX5CuhbWI&index=433&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZpEX5CuhbWI&index=433&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၃၂။ ဗာလပ႑ိတသုတ္ တရားေတာ္(၁) (၁၁-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၄၃၂။ ဗာလပ႑ိတသုတ္ တရားေတာ္(၁) (၁၁-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၃၂။ ဗာလပ႑ိတသုတ္ တရားေတာ္(၁) (၁၁-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">433</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=vpkfuopcgws&index=434&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=vpkfuopcgws&index=434&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၃၃။ ဗာလပ႑ိတသုတ္(၂) (၁၂-၆-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 3 views" title="၄၃၃။ ဗာလပ႑ိတသုတ္(၂) (၁၂-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၃၃။ ဗာလပ႑ိတသုတ္(၂) (၁၂-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">434</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=w1OqJXnDdYI&index=435&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=w1OqJXnDdYI&index=435&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၃၄။ ခႏၶာရွိေနလွ်င္ အိုနာေသေဘးတို႔မွ မလြတ္ႏိုင္ပံု (၁၃-၆-၁၉၆၂) by mogok sayadaw 1 year ago 55 minutes 2 views" title="၄၃၄။ ခႏၶာရွိေနလွ်င္ အိုနာေသေဘးတို႔မွ မလြတ္ႏိုင္ပံု (၁၃-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၃၄။ ခႏၶာရွိေနလွ်င္ အိုနာေသေဘးတို႔မွ မလြတ္ႏိုင္ပံု (၁၃-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">435</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gGZ_oOB9rJo&index=436&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gGZ_oOB9rJo&index=436&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၃၅။ ခႏၶာရွိေနလွ်င္ အိုနာေသေဘးတို႔မွ မလြတ္ႏိုင္ပံု(ည)အလုပ္ေပးတရား (၁၃-၆-၁၉၆၂) by mogok sayadaw 1 year ago 59 minutes 47 views" title="၄၃၅။ ခႏၶာရွိေနလွ်င္ အိုနာေသေဘးတို႔မွ မလြတ္ႏိုင္ပံု(ည)အလုပ္ေပးတရား (၁၃-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၃၅။ ခႏၶာရွိေနလွ်င္ အိုနာေသေဘးတို႔မွ မလြတ္ႏိုင္ပံု(ည)အလုပ္ေပးတရား (၁၃-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">436</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=UxoSpIThg4E&index=437&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=UxoSpIThg4E&index=437&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၃၆။ သစၥာဆိုတာ ခႏၶာမွာရွိပံု (၁၅-၆-၁၉၆၂) by mogok sayadaw 1 year ago 50 minutes 7 views" title="၄၃၆။ သစၥာဆိုတာ ခႏၶာမွာရွိပံု (၁၅-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၃၆။ သစၥာဆိုတာ ခႏၶာမွာရွိပံု (၁၅-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">437</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=SR4UZhvOS8U&index=438&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=SR4UZhvOS8U&index=438&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၃၇။ ၀ိပႆနာႏွင့္ ေလာကုတၱရာမဂ္ (၁၆-၆-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 5 views" title="၄၃၇။ ၀ိပႆနာႏွင့္ ေလာကုတၱရာမဂ္ (၁၆-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၃၇။ ၀ိပႆနာႏွင့္ ေလာကုတၱရာမဂ္ (၁၆-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">438</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=kCNDHoavlV8&index=439&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=kCNDHoavlV8&index=439&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၃၈။ စိတ္(၁၄)မ်ိဳး စိတၱႏုပႆနာ ရွဳပြားနည္း (၁၇-၆-၁၉၆၂) by mogok sayadaw 1 year ago 50 minutes 7 views" title="၄၃၈။ စိတ္(၁၄)မ်ိဳး စိတၱႏုပႆနာ ရွဳပြားနည္း (၁၇-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၃၈။ စိတ္(၁၄)မ်ိဳး စိတၱႏုပႆနာ ရွဳပြားနည္း (၁၇-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">439</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ms6n7PlccFM&index=440&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ms6n7PlccFM&index=440&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၃၉။ ခႏၶာပဋိစၥသမုပၸါဒ္ တရားေတာ္ (၁၇-၆-၁၉၆၂) by mogok sayadaw 1 year ago 53 minutes 2 views" title="၄၃၉။ ခႏၶာပဋိစၥသမုပၸါဒ္ တရားေတာ္ (၁၇-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၃၉။ ခႏၶာပဋိစၥသမုပၸါဒ္ တရားေတာ္ (၁၇-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">440</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-Lp2uVD8LkE&index=441&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-Lp2uVD8LkE&index=441&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၄၀။ ခႏၶာကိုယ္ သစၥာမ်က္လံုးတပ္ၾကည့္ရမည္ (၁၇-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 6 views" title="၄၄၀။ ခႏၶာကိုယ္ သစၥာမ်က္လံုးတပ္ၾကည့္ရမည္ (၁၇-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၄၀။ ခႏၶာကိုယ္ သစၥာမ်က္လံုးတပ္ၾကည့္ရမည္ (၁၇-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">441</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=g3oGPQbFRAw&index=442&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=g3oGPQbFRAw&index=442&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၄၁။ အဖံုးႏွစ္ခ်ပ္ဖြင့္မွ နိဗၺာန္ျမင္ရပုံ (၁၈-၆-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 2 views" title="၄၄၁။ အဖံုးႏွစ္ခ်ပ္ဖြင့္မွ နိဗၺာန္ျမင္ရပုံ (၁၈-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၄၁။ အဖံုးႏွစ္ခ်ပ္ဖြင့္မွ နိဗၺာန္ျမင္ရပုံ (၁၈-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">442</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-XV4AYNl4j4&index=443&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-XV4AYNl4j4&index=443&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၄၂။ မဂ္တု(၁၀)ပါးႏွင့္ သေလႅခသုတ္တရားေတာ္ (၁၉-၆-၁၉၆၂) by mogok sayadaw 1 year ago 45 minutes 6 views" title="၄၄၂။ မဂ္တု(၁၀)ပါးႏွင့္ သေလႅခသုတ္တရားေတာ္ (၁၉-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၄၂။ မဂ္တု(၁၀)ပါးႏွင့္ သေလႅခသုတ္တရားေတာ္ (၁၉-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">443</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-Sv1x8LFhio&index=444&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-Sv1x8LFhio&index=444&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၄၃။ သာသနာတြင္းတရားႏွင့္ သာသနာပတရားကြာျခားပံု (၂၀-၆-၁၉၆၂) by mogok sayadaw 1 year ago 54 minutes 4 views" title="၄၄၃။ သာသနာတြင္းတရားႏွင့္ သာသနာပတရားကြာျခားပံု (၂၀-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၄၃။ သာသနာတြင္းတရားႏွင့္ သာသနာပတရားကြာျခားပံု (၂၀-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">444</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=MppDGnvwIAU&index=445&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=MppDGnvwIAU&index=445&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၄၄။ အႏုေမာဓဉာဏ္ႏွင့္ ပဋိေ၀ဓဉာဏ္တရားေတာ္ (၂၁-၆-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 16 views" title="၄၄၄။ အႏုေမာဓဉာဏ္ႏွင့္ ပဋိေ၀ဓဉာဏ္တရားေတာ္ (၂၁-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၄၄။ အႏုေမာဓဉာဏ္ႏွင့္ ပဋိေ၀ဓဉာဏ္တရားေတာ္ (၂၁-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">445</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=SDu2yUQtiiM&index=446&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=SDu2yUQtiiM&index=446&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၄၅။ အေပါင္းအသင္း မလြဲၾကေစရန္တရားေတာ္ (၂၂-၆-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 7 views" title="၄၄၅။ အေပါင္းအသင္း မလြဲၾကေစရန္တရားေတာ္ (၂၂-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၄၅။ အေပါင္းအသင္း မလြဲၾကေစရန္တရားေတာ္ (၂၂-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">446</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=9kFMGllnGWQ&index=447&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=9kFMGllnGWQ&index=447&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၄၆။ ရုပ္နာမ္သည္ အျမဲမရွိဆင္းရဲရွိ၊ နိဗၺာန္သည္ ဆင္းရဲမရွိအျမဲရွိ (၂၂-၆-၁၉၆၂) by mogok sayadaw 1 year ago 54 minutes 4 views" title="၄၄၆။ ရုပ္နာမ္သည္ အျမဲမရွိဆင္းရဲရွိ၊ နိဗၺာန္သည္ ဆင္းရဲမရွိအျမဲရွိ (၂၂-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၄၆။ ရုပ္နာမ္သည္ အျမဲမရွိဆင္းရဲရွိ၊ နိဗၺာန္သည္ ဆင္းရဲမရွိအျမဲရွိ (၂၂-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">447</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ptN4ZKuiX4k&index=448&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ptN4ZKuiX4k&index=448&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၄၇။ သမၼာဒိ႒ိႏွစ္မ်ိဳးအေၾကာင္းတရားေတာ္ (၂၃-၆-၁၉၆၂) by mogok sayadaw 1 year ago 46 minutes 1 view" title="၄၄၇။ သမၼာဒိ႒ိႏွစ္မ်ိဳးအေၾကာင္းတရားေတာ္ (၂၃-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၄၇။ သမၼာဒိ႒ိႏွစ္မ်ိဳးအေၾကာင္းတရားေတာ္ (၂၃-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">448</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zci65Wovd6E&index=449&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zci65Wovd6E&index=449&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၄၈။ အ၀ိဇၨာက ၀ိဇၨာျဖစ္ေအာင္လုပ္နည္း (၂၃-၆-၁၉၆၂) by mogok sayadaw 1 year ago 58 minutes 1 view" title="၄၄၈။ အ၀ိဇၨာက ၀ိဇၨာျဖစ္ေအာင္လုပ္နည္း (၂၃-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၄၈။ အ၀ိဇၨာက ၀ိဇၨာျဖစ္ေအာင္လုပ္နည္း (၂၃-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">449</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=bEjh1ANHvSI&index=450&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=bEjh1ANHvSI&index=450&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၄၉။ ၀ိပႆနာအလုပ္ကို မလုပ္လွ်င္ နိဗၺာန္မရွိႏိုင္ပံု (၂၄-၆-၁၉၆၂) by mogok sayadaw 1 year ago 45 minutes 2 views" title="၄၄၉။ ၀ိပႆနာအလုပ္ကို မလုပ္လွ်င္ နိဗၺာန္မရွိႏိုင္ပံု (၂၄-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၄၉။ ၀ိပႆနာအလုပ္ကို မလုပ္လွ်င္ နိဗၺာန္မရွိႏိုင္ပံု (၂၄-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">450</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=_2JrkOtJuZQ&index=451&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=_2JrkOtJuZQ&index=451&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၅၀။ သစၥာသိဖို႔ အေရးၾကီးပံု (၂၅-၆-၁၉၆၂) by mogok sayadaw 1 year ago 49 minutes 3 views" title="၄၅၀။ သစၥာသိဖို႔ အေရးၾကီးပံု (၂၅-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၅၀။ သစၥာသိဖို႔ အေရးၾကီးပံု (၂၅-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">451</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2u6CGA3tFBU&index=452&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2u6CGA3tFBU&index=452&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၅၁။ ဒိ႒ိႏွင့္တဏွာတြင္ တဏွာပို၍ေၾကာက္စရာေကာင္းပံု (၂၆-၆-၁၉၆၂) by mogok sayadaw 1 year ago 59 minutes 2 views" title="၄၅၁။ ဒိ႒ိႏွင့္တဏွာတြင္ တဏွာပို၍ေၾကာက္စရာေကာင္းပံု (၂၆-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၅၁။ ဒိ႒ိႏွင့္တဏွာတြင္ တဏွာပို၍ေၾကာက္စရာေကာင္းပံု (၂၆-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">452</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=etoZw8rJ2VI&index=453&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=etoZw8rJ2VI&index=453&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၅၂။ သစၥာမသိတာသည္ ေၾကာက္စရာအေကာင္းဆံုး ျဖစ္ပံု (၂၆-၆-၁၉၆၂) by mogok sayadaw 1 year ago 53 minutes 3 views" title="၄၅၂။ သစၥာမသိတာသည္ ေၾကာက္စရာအေကာင္းဆံုး ျဖစ္ပံု (၂၆-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၅၂။ သစၥာမသိတာသည္ ေၾကာက္စရာအေကာင္းဆံုး ျဖစ္ပံု (၂၆-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">453</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=9l4a8xkPPU8&index=454&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=9l4a8xkPPU8&index=454&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၅၃။ ကိေလသာစင္ရန္ ကိစၥဉာဏ္ကတဉာဏ္ (၂၇-၆-၁၉၆၂) by mogok sayadaw 1 year ago 53 minutes 5 views" title="၄၅၃။ ကိေလသာစင္ရန္ ကိစၥဉာဏ္ကတဉာဏ္ (၂၇-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၅၃။ ကိေလသာစင္ရန္ ကိစၥဉာဏ္ကတဉာဏ္ (၂၇-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">454</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wpLPuwQOUjI&index=455&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wpLPuwQOUjI&index=455&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="37 minutes">
37:12
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၅၄။ ပုဂၢိဳလ္ေလးမ်ိဳးျဖင့္ ေ၀ဖန္ေဟာၾကားျခင္းတရားေတာ္ (၂၇-၆-၁၉၆၂) by mogok sayadaw 1 year ago 37 minutes 4 views" title="၄၅၄။ ပုဂၢိဳလ္ေလးမ်ိဳးျဖင့္ ေ၀ဖန္ေဟာၾကားျခင္းတရားေတာ္ (၂၇-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၅၄။ ပုဂၢိဳလ္ေလးမ်ိဳးျဖင့္ ေ၀ဖန္ေဟာၾကားျခင္းတရားေတာ္ (၂၇-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">455</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fjHcCkPfVJk&index=456&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fjHcCkPfVJk&index=456&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၅၅။ သစၥာအေၾကာင္းတရားေတာ္ (၂၇-၆-၁၉၆၂) by mogok sayadaw 1 year ago 53 minutes 1 view" title="၄၅၅။ သစၥာအေၾကာင္းတရားေတာ္ (၂၇-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၅၅။ သစၥာအေၾကာင္းတရားေတာ္ (၂၇-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">456</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ky-Vd5ItqEc&index=457&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ky-Vd5ItqEc&index=457&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၅၆။ ကိစၥဉာဏ္ ပိဠနေ႒ာသေဘာ (၂၈-၆-၁၉၆၂) by mogok sayadaw 1 year ago 53 minutes 8 views" title="၄၅၆။ ကိစၥဉာဏ္ ပိဠနေ႒ာသေဘာ (၂၈-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၅၆။ ကိစၥဉာဏ္ ပိဠနေ႒ာသေဘာ (၂၈-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">457</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wOx2SJomJgo&index=458&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wOx2SJomJgo&index=458&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၅၇။ ယေန႔ အေရးအၾကီးဆံုးတရားေတာ္ (၂၈-၆-၁၉၆၂) by mogok sayadaw 1 year ago 48 minutes 4 views" title="၄၅၇။ ယေန႔ အေရးအၾကီးဆံုးတရားေတာ္ (၂၈-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၅၇။ ယေန႔ အေရးအၾကီးဆံုးတရားေတာ္ (၂၈-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">458</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=aWkUai61DNw&index=459&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=aWkUai61DNw&index=459&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၅၈။ သစၥဉာဏ္ သခၤတေ႒ာသေဘာ (၂၉-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 4 views" title="၄၅၈။ သစၥဉာဏ္ သခၤတေ႒ာသေဘာ (၂၉-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၅၈။ သစၥဉာဏ္ သခၤတေ႒ာသေဘာ (၂၉-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">459</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ej_dNVgULlk&index=460&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ej_dNVgULlk&index=460&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၅၉။ ကိစၥဉာဏ္ သႏၱပေ႒ာသေဘာ (၃၀-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၄၅၉။ ကိစၥဉာဏ္ သႏၱပေ႒ာသေဘာ (၃၀-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၅၉။ ကိစၥဉာဏ္ သႏၱပေ႒ာသေဘာ (၃၀-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">460</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fsukGZQJRIs&index=461&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fsukGZQJRIs&index=461&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၆၀။ ဉာဏ္စဥ္သံုးပါး မဟာပရိဠာဟ ငရဲအေၾကာင္း (၃၁-၆-၁၉၆၂) by mogok sayadaw 1 year ago 55 minutes 6 views" title="၄၆၀။ ဉာဏ္စဥ္သံုးပါး မဟာပရိဠာဟ ငရဲအေၾကာင္း (၃၁-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၆၀။ ဉာဏ္စဥ္သံုးပါး မဟာပရိဠာဟ ငရဲအေၾကာင္း (၃၁-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">461</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ALP4a9fm8Qw&index=462&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ALP4a9fm8Qw&index=462&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၄၆၁။ ေကာသပၸယသုတ္ မဟာပစၥေ၀ကၡဏာ(၇)ခ်က္ (၁-၇-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 2 views" title="၄၆၁။ ေကာသပၸယသုတ္ မဟာပစၥေ၀ကၡဏာ(၇)ခ်က္ (၁-၇-၁၉၆၂)">
၄၆၁။ ေကာသပၸယသုတ္ မဟာပစၥေ၀ကၡဏာ(၇)ခ်က္ (၁-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">462</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=aUwSfnqKTTY&index=463&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=aUwSfnqKTTY&index=463&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၆၂။ ပဋိစၥသမုပၸါဒ္ႏွင့္ စိတၱႏုပႆနာ (၇-၇-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour 1 view" title="၄၆၂။ ပဋိစၥသမုပၸါဒ္ႏွင့္ စိတၱႏုပႆနာ (၇-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၆၂။ ပဋိစၥသမုပၸါဒ္ႏွင့္ စိတၱႏုပႆနာ (၇-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">463</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TSjb-cHJYOo&index=464&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TSjb-cHJYOo&index=464&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/TSjb-cHJYOo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCBFeZQtOSFTGnROr1ZeMVuH3Rp_w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၆၃။ သစၥာသိဖို႔အေရးၾကီးပံု (၈-၇-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 4 views" title="၄၆၃။ သစၥာသိဖို႔အေရးၾကီးပံု (၈-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၆၃။ သစၥာသိဖို႔အေရးၾကီးပံု (၈-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">464</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NzWxngC32vg&index=465&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NzWxngC32vg&index=465&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/NzWxngC32vg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDcWEeaYSzjtboE4zLkK7Ozrdhqyw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၆၄။ သစၥဉာဏ္၊ ကိစၥဉာဏ္၊ ကတဉာဏ္ သံုးပါး(၁) (၈-၇-၁၉၆၂) by mogok sayadaw 1 year ago 55 minutes 13 views" title="၄၆၄။ သစၥဉာဏ္၊ ကိစၥဉာဏ္၊ ကတဉာဏ္ သံုးပါး(၁) (၈-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၆၄။ သစၥဉာဏ္၊ ကိစၥဉာဏ္၊ ကတဉာဏ္ သံုးပါး(၁) (၈-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">465</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=anDouTdr0I4&index=466&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=anDouTdr0I4&index=466&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/anDouTdr0I4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA-yHoblNFL7C710Dd-5iWLrHaPig"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၆၅။ သစၥဉာဏ္၊ ကိစၥဉာဏ္၊ ကတဉာဏ္ သံုးပါး(၂) (၉-၇-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour 8 views" title="၄၆၅။ သစၥဉာဏ္၊ ကိစၥဉာဏ္၊ ကတဉာဏ္ သံုးပါး(၂) (၉-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၆၅။ သစၥဉာဏ္၊ ကိစၥဉာဏ္၊ ကတဉာဏ္ သံုးပါး(၂) (၉-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">466</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=JAPG5jNFgI4&index=467&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=JAPG5jNFgI4&index=467&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/JAPG5jNFgI4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAMTSxvPubnj9HoGVze7_9b4GL72w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၆၆။ အရွင္ေကာ႑ည ေသာတာပန္တည္ပံု (၉-၇-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 1 view" title="၄၆၆။ အရွင္ေကာ႑ည ေသာတာပန္တည္ပံု (၉-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၆၆။ အရွင္ေကာ႑ည ေသာတာပန္တည္ပံု (၉-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">467</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=0xjV2Ap1Hvg&index=468&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=0xjV2Ap1Hvg&index=468&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/0xjV2Ap1Hvg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBAsIsM8txipACMWCXSqFTgKTbIYw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၆၇။ သစၥဉာဏ္၊ ကိစၥဉာဏ္၊ ကတဉာဏ္ သံုးပါး(၃) (၁၀-၇-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour, 2 minutes 13 views" title="၄၆၇။ သစၥဉာဏ္၊ ကိစၥဉာဏ္၊ ကတဉာဏ္ သံုးပါး(၃) (၁၀-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၆၇။ သစၥဉာဏ္၊ ကိစၥဉာဏ္၊ ကတဉာဏ္ သံုးပါး(၃) (၁၀-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">468</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=g29VDpdJkTA&index=469&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=g29VDpdJkTA&index=469&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/g29VDpdJkTA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDMaFUtv71KrtviUBNwK_6nLmZC3w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၆၈။ သစၥာသိဖို႔ အေရးၾကီးပံု (၁၀-၇-၁၉၆၂) by mogok sayadaw 1 year ago 53 minutes 5 views" title="၄၆၈။ သစၥာသိဖို႔ အေရးၾကီးပံု (၁၀-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၆၈။ သစၥာသိဖို႔ အေရးၾကီးပံု (၁၀-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">469</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=8wraTF9puPQ&index=470&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=8wraTF9puPQ&index=470&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/8wraTF9puPQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD8kn4E8efoslLvB5db6OxGigzq9Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၆၉။ သစၥာႏွင့္ ကံေလးပါးတရား(၁) (၁၁-၇-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 1 view" title="၄၆၉။ သစၥာႏွင့္ ကံေလးပါးတရား(၁) (၁၁-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၆၉။ သစၥာႏွင့္ ကံေလးပါးတရား(၁) (၁၁-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">470</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TxoT8DV-vKc&index=471&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TxoT8DV-vKc&index=471&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/TxoT8DV-vKc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDWM2sikBIbcYIgSpWWhC7g2GClqA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၇၀။ နိဗၺာန္အေၾကာင္း ရွင္းျပပံု (၁၁-၇-၁၉၆၂) by mogok sayadaw 1 year ago 53 minutes 7 views" title="၄၇၀။ နိဗၺာန္အေၾကာင္း ရွင္းျပပံု (၁၁-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၇၀။ နိဗၺာန္အေၾကာင္း ရွင္းျပပံု (၁၁-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">471</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=T_4xAnZOJ8g&index=472&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=T_4xAnZOJ8g&index=472&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/T_4xAnZOJ8g/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBanNWv57R2wySQzFWoF5gBrBfBtg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၇၁။ သစၥာႏွင့္ ကံေလးပါးတရား(၂) (၁၂-၇-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၄၇၁။ သစၥာႏွင့္ ကံေလးပါးတရား(၂) (၁၂-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၄၇၁။ သစၥာႏွင့္ ကံေလးပါးတရား(၂) (၁၂-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">472</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Pvz7JkJBrEQ&index=473&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Pvz7JkJBrEQ&index=473&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Pvz7JkJBrEQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDOyxpjkODh1FET2shADtt0LEd_iQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၇၂။ ခႏၶာကိုယ္အတြင္း ဆရာမရွိ တပည့္မရွိေအာင္ က်င့္ရမည့္တရား (၂၇-၃-၁၉၅၄) by mogok sayadaw 1 year ago 52 minutes 2 views" title="၄၇၂။ ခႏၶာကိုယ္အတြင္း ဆရာမရွိ တပည့္မရွိေအာင္ က်င့္ရမည့္တရား (၂၇-၃-၁၉၅၄)" style="font-family: ZawGyi-One !important;">
၄၇၂။ ခႏၶာကိုယ္အတြင္း ဆရာမရွိ တပည့္မရွိေအာင္ က်င့္ရမည့္တရား (၂၇-၃-၁၉၅၄)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">473</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=No-21aXa1FU&index=474&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=No-21aXa1FU&index=474&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/No-21aXa1FU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD-ZcQPf3S3oYQHrXjKAZPvqwJhnw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၇၃။ ေမ့ေလ်ာ့ျခင္း ေဘးအၾကီးဆံုးတရား (၂၉-၃-၁၉၅၄) by mogok sayadaw 1 year ago 55 minutes 1 view" title="၄၇၃။ ေမ့ေလ်ာ့ျခင္း ေဘးအၾကီးဆံုးတရား (၂၉-၃-၁၉၅၄)" style="font-family: ZawGyi-One !important;">
၄၇၃။ ေမ့ေလ်ာ့ျခင္း ေဘးအၾကီးဆံုးတရား (၂၉-၃-၁၉၅၄)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">474</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=iF6kbE2i4Zw&index=475&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=iF6kbE2i4Zw&index=475&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/iF6kbE2i4Zw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAdlNwTtFp7x5dVKyQcG6I7hfX4nw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၇၄။ ေရႊျမင္း ဦးထြန္းလွိဳင္+ေဒၚသိန္းတို႔၏ သားရွင္ျပဳ အလွဴေတာ္မဂၤလာ (၁၈-၅-၁၉၅၄) by mogok sayadaw 1 year ago 1 hour 15 views" title="၄၇၄။ ေရႊျမင္း ဦးထြန္းလွိဳင္+ေဒၚသိန္းတို႔၏ သားရွင္ျပဳ အလွဴေတာ္မဂၤလာ (၁၈-၅-၁၉၅၄)" style="font-family: ZawGyi-One !important;">
၄၇၄။ ေရႊျမင္း ဦးထြန္းလွိဳင္+ေဒၚသိန္းတို႔၏ သားရွင္ျပဳ အလွဴေတာ္မဂၤလာ (၁၈-၅-၁၉၅၄)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">475</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=AyZ6LYedKus&index=476&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=AyZ6LYedKus&index=476&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/AyZ6LYedKus/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD_4Xy-r0x0e_bQVWZKbu85XKWomQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 3 minutes">
1:03:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၇၅။ ေသာတာပန္တည္ျခင္းအေၾကာင္း တရားေတာ္ (၂၄-၁-၁၉၅၅) by mogok sayadaw 1 year ago 1 hour, 3 minutes 26 views" title="၄၇၅။ ေသာတာပန္တည္ျခင္းအေၾကာင္း တရားေတာ္ (၂၄-၁-၁၉၅၅)" style="font-family: ZawGyi-One !important;">
၄၇၅။ ေသာတာပန္တည္ျခင္းအေၾကာင္း တရားေတာ္ (၂၄-၁-၁၉၅၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">476</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=c-lNzqlSyV8&index=477&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=c-lNzqlSyV8&index=477&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၇၆။ ပုထုဇဥ္ႏွင့္ အရိယာတုိ႔ ရွာမွီးျခင္းမတူၾကပံု(ပရိေယသနသုတ္) (၈-၂-၁၉၅၅) by mogok sayadaw 1 year ago 1 hour 5 views" title="၄၇၆။ ပုထုဇဥ္ႏွင့္ အရိယာတုိ႔ ရွာမွီးျခင္းမတူၾကပံု(ပရိေယသနသုတ္) (၈-၂-၁၉၅၅)" style="font-family: ZawGyi-One !important;">
၄၇၆။ ပုထုဇဥ္ႏွင့္ အရိယာတုိ႔ ရွာမွီးျခင္းမတူၾကပံု(ပရိေယသနသုတ္) (၈-၂-၁၉၅၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">477</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=51CVD-wJE-Y&index=478&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=51CVD-wJE-Y&index=478&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၇၇။ အေသခ်င္းဆက္ေနတာ သံသရာ တရားေတာ္ (၁၁-၂-၁၉၅၅) by mogok sayadaw 1 year ago 54 minutes 16 views" title="၄၇၇။ အေသခ်င္းဆက္ေနတာ သံသရာ တရားေတာ္ (၁၁-၂-၁၉၅၅)" style="font-family: ZawGyi-One !important;">
၄၇၇။ အေသခ်င္းဆက္ေနတာ သံသရာ တရားေတာ္ (၁၁-၂-၁၉၅၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">478</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=uTLiH8x74Ms&index=479&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=uTLiH8x74Ms&index=479&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၇၈။ ၀ိပရိဏာမ ဒုကၡသိ၍ အ၀ိပရိဏာမ၊ နိေရာဓကို မ်က္ေမွာက္ျပဳျခင္း (၁၂-၂-၁၉၅၅) by mogok sayadaw 1 year ago 1 hour 5 views" title="၄၇၈။ ၀ိပရိဏာမ ဒုကၡသိ၍ အ၀ိပရိဏာမ၊ နိေရာဓကို မ်က္ေမွာက္ျပဳျခင္း (၁၂-၂-၁၉၅၅)" style="font-family: ZawGyi-One !important;">
၄၇၈။ ၀ိပရိဏာမ ဒုကၡသိ၍ အ၀ိပရိဏာမ၊ နိေရာဓကို မ်က္ေမွာက္ျပဳျခင္း (၁၂-၂-၁၉၅၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">479</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2sGpXPh4ZOo&index=480&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2sGpXPh4ZOo&index=480&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၇၉။ ဉာဏ္သံုးဉာဏ္ႏွင့္ နိဗၺာန္ေရာက္ပံု (၁၃-၂-၁၉၅၅) by mogok sayadaw 1 year ago 1 hour 1 view" title="၄၇၉။ ဉာဏ္သံုးဉာဏ္ႏွင့္ နိဗၺာန္ေရာက္ပံု (၁၃-၂-၁၉၅၅)" style="font-family: ZawGyi-One !important;">
၄၇၉။ ဉာဏ္သံုးဉာဏ္ႏွင့္ နိဗၺာန္ေရာက္ပံု (၁၃-၂-၁၉၅၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">480</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=72A_pj5fYes&index=481&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=72A_pj5fYes&index=481&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၈၀။ ၀ႆကာရ ပုဏၰားႏွင့္ ရွင္နႏၵာ အေမးအေျဖ (၁၅-၂-၁၉၅၅) by mogok sayadaw 1 year ago 57 minutes 2 views" title="၄၈၀။ ၀ႆကာရ ပုဏၰားႏွင့္ ရွင္နႏၵာ အေမးအေျဖ (၁၅-၂-၁၉၅၅)" style="font-family: ZawGyi-One !important;">
၄၈၀။ ၀ႆကာရ ပုဏၰားႏွင့္ ရွင္နႏၵာ အေမးအေျဖ (၁၅-၂-၁၉၅၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">481</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=6jWcnGGwyOw&index=482&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=6jWcnGGwyOw&index=482&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၈၁။ ဒုကၡခ်ဳပ္ရာ နိဗၺာန္အေၾကာင္း ရွင္းျပပံုတရား (၁၆-၂-၁၉၅၅) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၄၈၁။ ဒုကၡခ်ဳပ္ရာ နိဗၺာန္အေၾကာင္း ရွင္းျပပံုတရား (၁၆-၂-၁၉၅၅)" style="font-family: ZawGyi-One !important;">
၄၈၁။ ဒုကၡခ်ဳပ္ရာ နိဗၺာန္အေၾကာင္း ရွင္းျပပံုတရား (၁၆-၂-၁၉၅၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">482</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=oJ5kp9yM_h8&index=483&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=oJ5kp9yM_h8&index=483&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 9 minutes">
1:09:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၈၂။ ေ၀ဒနာသံုးပါးကို ငါးမွ်ားခ်ိတ္ဥပမာျပ တရားေတာ္ (၈-၉-၁၉၅၅) by mogok sayadaw 1 year ago 1 hour, 9 minutes 4 views" title="၄၈၂။ ေ၀ဒနာသံုးပါးကို ငါးမွ်ားခ်ိတ္ဥပမာျပ တရားေတာ္ (၈-၉-၁၉၅၅)" style="font-family: ZawGyi-One !important;">
၄၈၂။ ေ၀ဒနာသံုးပါးကို ငါးမွ်ားခ်ိတ္ဥပမာျပ တရားေတာ္ (၈-၉-၁၉၅၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">483</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Y-f2MVSyqFM&index=484&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Y-f2MVSyqFM&index=484&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၄၈၃။ ေသာတာပန္အဂၤါ(၇)ပါး (၁-၁၁-၁၉၅၅) by mogok sayadaw 1 year ago 1 hour 4 views" title="၄၈၃။ ေသာတာပန္အဂၤါ(၇)ပါး (၁-၁၁-၁၉၅၅)">
၄၈၃။ ေသာတာပန္အဂၤါ(၇)ပါး (၁-၁၁-၁၉၅၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">484</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=q2TPBYHnKjQ&index=485&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=q2TPBYHnKjQ&index=485&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၈၄။ ၀ီရိယအကူအညီျဖင့္ သမာဓိ ပညာမဂၢင္ဆိုက္ေအာင္ လုပ္ၾကပါ (၄-၃-၁၉၅၆) by mogok sayadaw 1 year ago 54 minutes 10 views" title="၄၈၄။ ၀ီရိယအကူအညီျဖင့္ သမာဓိ ပညာမဂၢင္ဆိုက္ေအာင္ လုပ္ၾကပါ (၄-၃-၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၄၈၄။ ၀ီရိယအကူအညီျဖင့္ သမာဓိ ပညာမဂၢင္ဆိုက္ေအာင္ လုပ္ၾကပါ (၄-၃-၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">485</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VJkPBt2EEQI&index=486&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VJkPBt2EEQI&index=486&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၈၅။ သစၥာတရားနာမႈႏွင့္ ႏွလံုးသြင္းမွန္မႈတရားေတာ္(၁) (၉-၇-၁၉၅၆) by mogok sayadaw 1 year ago 53 minutes 2 views" title="၄၈၅။ သစၥာတရားနာမႈႏွင့္ ႏွလံုးသြင္းမွန္မႈတရားေတာ္(၁) (၉-၇-၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၄၈၅။ သစၥာတရားနာမႈႏွင့္ ႏွလံုးသြင္းမွန္မႈတရားေတာ္(၁) (၉-၇-၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">486</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=bGALXiUU_hI&index=487&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=bGALXiUU_hI&index=487&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/bGALXiUU_hI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAbY4KL9oIVl0-s3-MlxCOz3QmhGg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 11 minutes">
1:11:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၈၆။ သစၥာတရားနာမႈႏွင့္ ႏွလံုးသြင္းမွန္မႈတရားေတာ္(၂) (၁၀-၇-၁၉၅၆) by mogok sayadaw 1 year ago 1 hour, 11 minutes 3 views" title="၄၈၆။ သစၥာတရားနာမႈႏွင့္ ႏွလံုးသြင္းမွန္မႈတရားေတာ္(၂) (၁၀-၇-၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၄၈၆။ သစၥာတရားနာမႈႏွင့္ ႏွလံုးသြင္းမွန္မႈတရားေတာ္(၂) (၁၀-၇-၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">487</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=yqI3VyooDKE&index=488&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=yqI3VyooDKE&index=488&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/yqI3VyooDKE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB5eK2urkpRleyCE5w2L1oCfGna5Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၈၇။ သစၥာတရားနာမႈႏွင့္ ႏွလံုးသြင္းမွန္မႈတရားေတာ္(၃) (၁၁-၇-၁၉၅၆) by mogok sayadaw 1 year ago 54 minutes 2 views" title="၄၈၇။ သစၥာတရားနာမႈႏွင့္ ႏွလံုးသြင္းမွန္မႈတရားေတာ္(၃) (၁၁-၇-၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၄၈၇။ သစၥာတရားနာမႈႏွင့္ ႏွလံုးသြင္းမွန္မႈတရားေတာ္(၃) (၁၁-၇-၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">488</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7XZi9TYieZM&index=489&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7XZi9TYieZM&index=489&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/7XZi9TYieZM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCuBY3wJDW9Br8q8u7Vbtiurmv_Fg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 8 minutes">
1:08:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၈၈။ သီလ သမာဓိ ပညာ အေရးၾကီးပံု မဟာမိတၱရဟန္း (၁၃-၇-၁၉၅၆) by mogok sayadaw 1 year ago 1 hour, 8 minutes 8 views" title="၄၈၈။ သီလ သမာဓိ ပညာ အေရးၾကီးပံု မဟာမိတၱရဟန္း (၁၃-၇-၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၄၈၈။ သီလ သမာဓိ ပညာ အေရးၾကီးပံု မဟာမိတၱရဟန္း (၁၃-၇-၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">489</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=rZXpffdKENA&index=490&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=rZXpffdKENA&index=490&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/rZXpffdKENA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDE8FRKs7gu7YzZUxyyiTtzxW5zbQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၈၉။ ဗုဒၶဘာသာ၀င္ေတြ လုပ္ရမည့္တရားေတာ္ (၁၄-၇-၁၉၅၆) by mogok sayadaw 1 year ago 51 minutes 2 views" title="၄၈၉။ ဗုဒၶဘာသာ၀င္ေတြ လုပ္ရမည့္တရားေတာ္ (၁၄-၇-၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၄၈၉။ ဗုဒၶဘာသာ၀င္ေတြ လုပ္ရမည့္တရားေတာ္ (၁၄-၇-၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">490</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=afBJoo0-nB4&index=491&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=afBJoo0-nB4&index=491&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/afBJoo0-nB4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCPDG4LG2KUGg_Uzgh42qEQxGHc4w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၉၀။ ဒုကၡကို ပိုင္းျခားသိရွိၾကရန္ (၁၅-၇-၁၉၅၆) by mogok sayadaw 1 year ago 51 minutes 1 view" title="၄၉၀။ ဒုကၡကို ပိုင္းျခားသိရွိၾကရန္ (၁၅-၇-၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၄၉၀။ ဒုကၡကို ပိုင္းျခားသိရွိၾကရန္ (၁၅-၇-၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">491</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Hha2ew2SN88&index=492&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Hha2ew2SN88&index=492&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Hha2ew2SN88/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCmz98QtYUWFG9y8K4hsbeKilSVog"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="39 minutes">
39:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၉၁။ ၀ိတက္ ၀ိစာရ ရွဳနည္း ဆီခြက္မဖိတ္တရားေတာ္ (၁၈-၇-၁၉၅၆) by mogok sayadaw 1 year ago 39 minutes 7 views" title="၄၉၁။ ၀ိတက္ ၀ိစာရ ရွဳနည္း ဆီခြက္မဖိတ္တရားေတာ္ (၁၈-၇-၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၄၉၁။ ၀ိတက္ ၀ိစာရ ရွဳနည္း ဆီခြက္မဖိတ္တရားေတာ္ (၁၈-၇-၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">492</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BB_Ge-CRmBc&index=493&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BB_Ge-CRmBc&index=493&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/BB_Ge-CRmBc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDjMZwxYrE5IxDIaylXhp1UDuhhlQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="44 minutes">
44:40
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၉၂။ ဓမၼႏွင့္ အႏုဓမၼရွင္းတရားေတာ္ ( - -၁၉၅၆) by mogok sayadaw 1 year ago 44 minutes 1 view" title="၄၉၂။ ဓမၼႏွင့္ အႏုဓမၼရွင္းတရားေတာ္ ( - -၁၉၅၆)" style="font-family: ZawGyi-One !important;">
၄၉၂။ ဓမၼႏွင့္ အႏုဓမၼရွင္းတရားေတာ္ ( - -၁၉၅၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">493</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=uy7Pt7vtdDc&index=494&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=uy7Pt7vtdDc&index=494&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/uy7Pt7vtdDc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDr1AIDMoj2FYMZs8pCwBJ_Cy2vPA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 28 minutes">
1:28:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၉၃။ ဆင္ေသႏွင့္ ၾကီးမိုက္တရားေတာ္ (၇-၇-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 28 minutes 5 views" title="၄၉၃။ ဆင္ေသႏွင့္ ၾကီးမိုက္တရားေတာ္ (၇-၇-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၄၉၃။ ဆင္ေသႏွင့္ ၾကီးမိုက္တရားေတာ္ (၇-၇-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">494</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=8CrWWBmYMQw&index=495&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=8CrWWBmYMQw&index=495&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/8CrWWBmYMQw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAEh-vczqUj0qTrLWcdSVYCAYKMnA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၉၄။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ကိုယ့္စိတ္ကိုယ္ ရွဳမွတ္ၾကပါ(၁) (၁၁-၇-၁၉၅၇) by mogok sayadaw 1 year ago 58 minutes 3 views" title="၄၉၄။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ကိုယ့္စိတ္ကိုယ္ ရွဳမွတ္ၾကပါ(၁) (၁၁-၇-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၄၉၄။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ကိုယ့္စိတ္ကိုယ္ ရွဳမွတ္ၾကပါ(၁) (၁၁-၇-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">495</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4DzOs9Il3SE&index=496&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4DzOs9Il3SE&index=496&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/4DzOs9Il3SE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBBHKit0Ri5cHq4BLIkTL5IbBfwsQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="38 minutes">
38:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၉၅။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ကိုယ့္စိတ္ကိုယ္ ရွဳမွတ္ၾကပါ(၂) (၁၂-၇-၁၉၅၇) by mogok sayadaw 1 year ago 38 minutes 1 view" title="၄၉၅။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ကိုယ့္စိတ္ကိုယ္ ရွဳမွတ္ၾကပါ(၂) (၁၂-၇-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၄၉၅။ နိဗၺာန္ေရာက္ခ်င္လွ်င္ ကိုယ့္စိတ္ကိုယ္ ရွဳမွတ္ၾကပါ(၂) (၁၂-၇-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">496</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CKvzO_NxQLM&index=497&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CKvzO_NxQLM&index=497&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/CKvzO_NxQLM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD7xClSmOm1gBfAaYdtemAFACgrZw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၉၆။ မီးရထားဘူတာစဥ္ ဥပမာျပ တရားေတာ္ (၁၀-၁၀-၁၉၅၇) by mogok sayadaw 1 year ago 54 minutes 2 views" title="၄၉၆။ မီးရထားဘူတာစဥ္ ဥပမာျပ တရားေတာ္ (၁၀-၁၀-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၄၉၆။ မီးရထားဘူတာစဥ္ ဥပမာျပ တရားေတာ္ (၁၀-၁၀-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">497</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=SrWp_O7sdIw&index=498&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=SrWp_O7sdIw&index=498&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/SrWp_O7sdIw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAPwAfRhAi4ODUUxge8BO4idtDAFA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၉၇။ ၀ိပႆနာေယာဂီေလးမ်ိဳးတရားေတာ္ (၁၁-၁၀-၁၉၅၇) by mogok sayadaw 1 year ago 52 minutes 6 views" title="၄၉၇။ ၀ိပႆနာေယာဂီေလးမ်ိဳးတရားေတာ္ (၁၁-၁၀-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၄၉၇။ ၀ိပႆနာေယာဂီေလးမ်ိဳးတရားေတာ္ (၁၁-၁၀-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">498</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=RbbuYjc6XMY&index=499&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=RbbuYjc6XMY&index=499&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/RbbuYjc6XMY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAT_ddFs12NGMIJQdm7B9tw4kmVxQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 20 minutes">
1:20:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၉၈။ နကုလမာတာ နကုလပီတာ ဥပမာျပတရားေတာ္(၁) (၃-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 20 minutes 2 views" title="၄၉၈။ နကုလမာတာ နကုလပီတာ ဥပမာျပတရားေတာ္(၁) (၃-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၄၉၈။ နကုလမာတာ နကုလပီတာ ဥပမာျပတရားေတာ္(၁) (၃-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">499</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=UgxtmiPsWZ8&index=500&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=UgxtmiPsWZ8&index=500&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/UgxtmiPsWZ8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAl3JVt7Hb6ewOKTELrLT0ztgA6Tw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 18 minutes">
1:18:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၄၉၉။ နကုလမာတာ နကုလပီတာ ဥပမာျပတရားေတာ္(၂) (၄-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 18 minutes 2 views" title="၄၉၉။ နကုလမာတာ နကုလပီတာ ဥပမာျပတရားေတာ္(၂) (၄-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၄၉၉။ နကုလမာတာ နကုလပီတာ ဥပမာျပတရားေတာ္(၂) (၄-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">500</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=GASVP3MaX-E&index=501&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=GASVP3MaX-E&index=501&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/GASVP3MaX-E/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAmAD2EjAmOsw_JsySF5SeUB1q-IA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၀၀။ ပသာဒစကၡဳ ဉာဏ္စကၡဳ တရားေတာ္ (၄-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 55 minutes 7 views" title="၅၀၀။ ပသာဒစကၡဳ ဉာဏ္စကၡဳ တရားေတာ္ (၄-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၀၀။ ပသာဒစကၡဳ ဉာဏ္စကၡဳ တရားေတာ္ (၄-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">501</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=yoEaYBF6SWI&index=502&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=yoEaYBF6SWI&index=502&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 32 minutes">
1:32:12
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၀၁။ ေ၀ဒနာႏုပႆနာ သတိပ႒ာန္ (၅-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 32 minutes 25 views" title="၅၀၁။ ေ၀ဒနာႏုပႆနာ သတိပ႒ာန္ (၅-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၀၁။ ေ၀ဒနာႏုပႆနာ သတိပ႒ာန္ (၅-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">502</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=XUiNsEeYmjA&index=503&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=XUiNsEeYmjA&index=503&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 16 minutes">
1:16:12
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၀၂။ ဒုကၡသစၥာအနက္မွ ပိဠနေဌာတရားေတာ္(၁) (၆-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 16 minutes 11 views" title="၅၀၂။ ဒုကၡသစၥာအနက္မွ ပိဠနေဌာတရားေတာ္(၁) (၆-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၀၂။ ဒုကၡသစၥာအနက္မွ ပိဠနေဌာတရားေတာ္(၁) (၆-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">503</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Cu6rQgFzQXc&index=504&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Cu6rQgFzQXc&index=504&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 16 minutes">
1:16:43
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၀၃။ ဒုကၡသစၥာအနက္မွ သခၤတေဌာတရားေတာ္(၂) (၇-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 16 minutes 11 views" title="၅၀၃။ ဒုကၡသစၥာအနက္မွ သခၤတေဌာတရားေတာ္(၂) (၇-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၀၃။ ဒုကၡသစၥာအနက္မွ သခၤတေဌာတရားေတာ္(၂) (၇-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">504</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=keZH4jwP2GU&index=505&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=keZH4jwP2GU&index=505&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 17 minutes">
1:17:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၀၄။ ဒုကၡသစၥာအနက္မွ သႏၱာပေဌာတရားေတာ္(၃) (၈-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 17 minutes 5 views" title="၅၀၄။ ဒုကၡသစၥာအနက္မွ သႏၱာပေဌာတရားေတာ္(၃) (၈-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၀၄။ ဒုကၡသစၥာအနက္မွ သႏၱာပေဌာတရားေတာ္(၃) (၈-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">505</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=OOqG1ZbNJY4&index=506&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=OOqG1ZbNJY4&index=506&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 12 minutes">
1:12:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၀၅။ ဒုကၡသစၥာအနက္မွ ၀ိပရိနာမေဌာတရားေတာ္(၄) (၉-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 12 minutes 7 views" title="၅၀၅။ ဒုကၡသစၥာအနက္မွ ၀ိပရိနာမေဌာတရားေတာ္(၄) (၉-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၀၅။ ဒုကၡသစၥာအနက္မွ ၀ိပရိနာမေဌာတရားေတာ္(၄) (၉-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">506</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Ta5H0XqSNKY&index=507&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Ta5H0XqSNKY&index=507&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 16 minutes">
1:16:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၀၆။ သမုဒယသစၥာအနက္မွ အာယုဟနေဌာတရားေတာ္(၁) (၁၀-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 16 minutes 11 views" title="၅၀၆။ သမုဒယသစၥာအနက္မွ အာယုဟနေဌာတရားေတာ္(၁) (၁၀-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၀၆။ သမုဒယသစၥာအနက္မွ အာယုဟနေဌာတရားေတာ္(၁) (၁၀-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">507</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ItprRKaEA_0&index=508&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ItprRKaEA_0&index=508&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 16 minutes">
1:16:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၀၇။ သမုဒယသစၥာအနက္မွ နိဒါနေဌာတရားေတာ္(၂) (၁၁-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 16 minutes 10 views" title="၅၀၇။ သမုဒယသစၥာအနက္မွ နိဒါနေဌာတရားေတာ္(၂) (၁၁-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၀၇။ သမုဒယသစၥာအနက္မွ နိဒါနေဌာတရားေတာ္(၂) (၁၁-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">508</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=YzqNdwhIRDo&index=509&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=YzqNdwhIRDo&index=509&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 17 minutes">
1:17:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၀၈။ သမုဒယသစၥာအနက္မွ သံေယာဂေဌာတရားေတာ္(၃) (၁၂-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 17 minutes 14 views" title="၅၀၈။ သမုဒယသစၥာအနက္မွ သံေယာဂေဌာတရားေတာ္(၃) (၁၂-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၀၈။ သမုဒယသစၥာအနက္မွ သံေယာဂေဌာတရားေတာ္(၃) (၁၂-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">509</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=LoBplNJGpoc&index=510&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=LoBplNJGpoc&index=510&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 11 minutes">
1:11:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၀၉။ သမုဒယသစၥာအနက္မွ ဗလိေဗာဓေဌာတရားေတာ္(၄) (၁၃-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 11 minutes 9 views" title="၅၀၉။ သမုဒယသစၥာအနက္မွ ဗလိေဗာဓေဌာတရားေတာ္(၄) (၁၃-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၀၉။ သမုဒယသစၥာအနက္မွ ဗလိေဗာဓေဌာတရားေတာ္(၄) (၁၃-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">510</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hzGXqQPr-vs&index=511&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hzGXqQPr-vs&index=511&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 3 minutes">
1:03:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၁၀။ နိေရာဓသစၥာအနက္မွ နိႆရဏေဌာတရားေတာ္(၁) (၁၄-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 3 minutes 9 views" title="၅၁၀။ နိေရာဓသစၥာအနက္မွ နိႆရဏေဌာတရားေတာ္(၁) (၁၄-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၁၀။ နိေရာဓသစၥာအနက္မွ နိႆရဏေဌာတရားေတာ္(၁) (၁၄-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">511</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=0cY0e96EIFo&index=512&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=0cY0e96EIFo&index=512&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၁၁။ နိေရာဓသစၥာအနက္မွ ၀ိေ၀ကေဌာတရားေတာ္(၂) (၁၅-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour 8 views" title="၅၁၁။ နိေရာဓသစၥာအနက္မွ ၀ိေ၀ကေဌာတရားေတာ္(၂) (၁၅-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၁၁။ နိေရာဓသစၥာအနက္မွ ၀ိေ၀ကေဌာတရားေတာ္(၂) (၁၅-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">512</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=j7qQ6-gd2Ig&index=513&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=j7qQ6-gd2Ig&index=513&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 11 minutes">
1:11:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၁၂။ နိေရာဓသစၥာအနက္မွ အသခၤတေဌာတရားေတာ္(၃) (၁၇-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 11 minutes 9 views" title="၅၁၂။ နိေရာဓသစၥာအနက္မွ အသခၤတေဌာတရားေတာ္(၃) (၁၇-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၁၂။ နိေရာဓသစၥာအနက္မွ အသခၤတေဌာတရားေတာ္(၃) (၁၇-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">513</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mpSvl0h6-wU&index=514&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mpSvl0h6-wU&index=514&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 18 minutes">
1:18:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၁၃။ အဂၢိ၀စၥပုဏၰား ဥပမာျပတရားေတာ္ (၁၈-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 18 minutes 6 views" title="၅၁၃။ အဂၢိ၀စၥပုဏၰား ဥပမာျပတရားေတာ္ (၁၈-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၁၃။ အဂၢိ၀စၥပုဏၰား ဥပမာျပတရားေတာ္ (၁၈-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">514</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=u_F8qc6Qr2E&index=515&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=u_F8qc6Qr2E&index=515&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 17 minutes">
1:17:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၁၄။ နိေရာဓသစၥာအနက္မွ အမတေဌာတရားေတာ္(၄) (၁၉-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 17 minutes 6 views" title="၅၁၄။ နိေရာဓသစၥာအနက္မွ အမတေဌာတရားေတာ္(၄) (၁၉-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၁၄။ နိေရာဓသစၥာအနက္မွ အမတေဌာတရားေတာ္(၄) (၁၉-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">515</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=SSeJEAfsqzM&index=516&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=SSeJEAfsqzM&index=516&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၁၅။ မဂၢသစၥာအနက္မွ နိယ်ာနေဌာတရားေတာ္(၁) (၂၀-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour 9 views" title="၅၁၅။ မဂၢသစၥာအနက္မွ နိယ်ာနေဌာတရားေတာ္(၁) (၂၀-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၁၅။ မဂၢသစၥာအနက္မွ နိယ်ာနေဌာတရားေတာ္(၁) (၂၀-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">516</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Gx_ezioMTaU&index=517&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Gx_ezioMTaU&index=517&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 13 minutes">
1:13:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၁၆။ မဂၢသစၥာအနက္မွ ေဟတြတ္ေဌာတရားေတာ္(၂) (၂၂-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 13 minutes 8 views" title="၅၁၆။ မဂၢသစၥာအနက္မွ ေဟတြတ္ေဌာတရားေတာ္(၂) (၂၂-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၁၆။ မဂၢသစၥာအနက္မွ ေဟတြတ္ေဌာတရားေတာ္(၂) (၂၂-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">517</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Nh-AFML--4w&index=518&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Nh-AFML--4w&index=518&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 16 minutes">
1:16:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၁၇။ မဂၢသစၥာအနက္မွ ဒႆနေဌာတရားေတာ္(၃) (၂၃-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 16 minutes 8 views" title="၅၁၇။ မဂၢသစၥာအနက္မွ ဒႆနေဌာတရားေတာ္(၃) (၂၃-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၁၇။ မဂၢသစၥာအနက္မွ ဒႆနေဌာတရားေတာ္(၃) (၂၃-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">518</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hgOrVuoaSpc&index=519&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hgOrVuoaSpc&index=519&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 15 minutes">
1:15:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၁၈။ မဂၢသစၥာအနက္မွ အဓိပေတယ်တရားေတာ္(၄) (၂၄-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 15 minutes 5 views" title="၅၁၈။ မဂၢသစၥာအနက္မွ အဓိပေတယ်တရားေတာ္(၄) (၂၄-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၁၈။ မဂၢသစၥာအနက္မွ အဓိပေတယ်တရားေတာ္(၄) (၂၄-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">519</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KCEVg042TDY&index=520&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KCEVg042TDY&index=520&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 17 minutes">
1:17:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၁၉။ မဂၢသစၥာအနက္မွ အဓိပေတယ်တရားေတာ္(၅) (၂၅-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 17 minutes 7 views" title="၅၁၉။ မဂၢသစၥာအနက္မွ အဓိပေတယ်တရားေတာ္(၅) (၂၅-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၁၉။ မဂၢသစၥာအနက္မွ အဓိပေတယ်တရားေတာ္(၅) (၂၅-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">520</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CsmoWoqLjHk&index=521&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CsmoWoqLjHk&index=521&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 22 minutes">
1:22:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၂၀။ ငါစြဲသူစြဲ အစြဲႏွစ္ပါး ျဖဳတ္ေပးပံုတရားေတာ္၊ မွန္ၾကည့္သူႏွင့္ အရိပ္ပမာ (၂၆-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 22 minutes 13 views" title="၅၂၀။ ငါစြဲသူစြဲ အစြဲႏွစ္ပါး ျဖဳတ္ေပးပံုတရားေတာ္၊ မွန္ၾကည့္သူႏွင့္ အရိပ္ပမာ (၂၆-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၂၀။ ငါစြဲသူစြဲ အစြဲႏွစ္ပါး ျဖဳတ္ေပးပံုတရားေတာ္၊ မွန္ၾကည့္သူႏွင့္ အရိပ္ပမာ (၂၆-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">521</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=PMfCDJCeIlA&index=522&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=PMfCDJCeIlA&index=522&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 13 minutes">
1:13:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၂၁။ ကံေလးမ်ိဳးတရားေတာ္ (ေသနိယႏွင့္ပုဏၰ) (၂၉-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 13 minutes 5 views" title="၅၂၁။ ကံေလးမ်ိဳးတရားေတာ္ (ေသနိယႏွင့္ပုဏၰ) (၂၉-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၂၁။ ကံေလးမ်ိဳးတရားေတာ္ (ေသနိယႏွင့္ပုဏၰ) (၂၉-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">522</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4EGmR7DkaAM&index=523&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4EGmR7DkaAM&index=523&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 17 minutes">
1:17:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၂၂။ ဘုရားေျပာေသာ စကားႏွစ္ခြန္းတရားေတာ္ (၃၀-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 17 minutes 6 views" title="၅၂၂။ ဘုရားေျပာေသာ စကားႏွစ္ခြန္းတရားေတာ္ (၃၀-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၂၂။ ဘုရားေျပာေသာ စကားႏွစ္ခြန္းတရားေတာ္ (၃၀-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">523</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=u-QU3-HsxjI&index=524&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=u-QU3-HsxjI&index=524&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 10 minutes">
1:10:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၂၃။ ရွင္ေခမကႏွင့္ ရဟန္းၾကီး(၆၀)ဥပမာျပတရားေတာ္ (၃၁-၁၂-၁၉၅၇) by mogok sayadaw 1 year ago 1 hour, 10 minutes 4 views" title="၅၂၃။ ရွင္ေခမကႏွင့္ ရဟန္းၾကီး(၆၀)ဥပမာျပတရားေတာ္ (၃၁-၁၂-၁၉၅၇)" style="font-family: ZawGyi-One !important;">
၅၂၃။ ရွင္ေခမကႏွင့္ ရဟန္းၾကီး(၆၀)ဥပမာျပတရားေတာ္ (၃၁-၁၂-၁၉၅၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">524</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=skG7Qxr-HXA&index=525&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=skG7Qxr-HXA&index=525&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၂၄။ ၀ကၠလိရဟန္း၀တၳဳတရားေတာ္(၁) (၁-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour 9 views" title="၅၂၄။ ၀ကၠလိရဟန္း၀တၳဳတရားေတာ္(၁) (၁-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၂၄။ ၀ကၠလိရဟန္း၀တၳဳတရားေတာ္(၁) (၁-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">525</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=I4t3OLlx1Ms&index=526&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=I4t3OLlx1Ms&index=526&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၂၅။ ၀ကၠလိရဟန္း၀တၳဳတရားေတာ္(၂) (၂-၁-၁၉၅၈) by mogok sayadaw 1 year ago 57 minutes 3 views" title="၅၂၅။ ၀ကၠလိရဟန္း၀တၳဳတရားေတာ္(၂) (၂-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၂၅။ ၀ကၠလိရဟန္း၀တၳဳတရားေတာ္(၂) (၂-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">526</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=PnKn9eqqyIo&index=527&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=PnKn9eqqyIo&index=527&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၂၆။ ရွင္အႆဇိရဟန္း ၀တၳဳတရားေတာ္(၁) (၃-၁-၁၉၅၈) by mogok sayadaw 1 year ago 56 minutes 7 views" title="၅၂၆။ ရွင္အႆဇိရဟန္း ၀တၳဳတရားေတာ္(၁) (၃-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၂၆။ ရွင္အႆဇိရဟန္း ၀တၳဳတရားေတာ္(၁) (၃-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">527</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=RPbrhYm3yiI&index=528&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=RPbrhYm3yiI&index=528&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၂၇။ ကီသုေကာပမသုတ္ (၈-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour 4 views" title="၅၂၇။ ကီသုေကာပမသုတ္ (၈-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၂၇။ ကီသုေကာပမသုတ္ (၈-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">528</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mLnTz34hUp8&index=529&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mLnTz34hUp8&index=529&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 30 minutes">
1:30:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၂၈။ ပုထုဇဥ္ႏွင့္ အရိယာတုိ႔ ရွာမွီးျခင္း မတူညီၾကပံု (၉-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 30 minutes 8 views" title="၅၂၈။ ပုထုဇဥ္ႏွင့္ အရိယာတုိ႔ ရွာမွီးျခင္း မတူညီၾကပံု (၉-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၂၈။ ပုထုဇဥ္ႏွင့္ အရိယာတုိ႔ ရွာမွီးျခင္း မတူညီၾကပံု (၉-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">529</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ur4bv2gMnpE&index=530&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ur4bv2gMnpE&index=530&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 20 minutes">
1:20:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၂၉။ သာေရာပမသုတ္ တရားေတာ္(၁) (၁၄-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 20 minutes 5 views" title="၅၂၉။ သာေရာပမသုတ္ တရားေတာ္(၁) (၁၄-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၂၉။ သာေရာပမသုတ္ တရားေတာ္(၁) (၁၄-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">530</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-MGOmQExLZM&index=531&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-MGOmQExLZM&index=531&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 19 minutes">
1:19:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၃၀။ ပဓုပ႑ိတသုတ္ တရားေတာ္(၁) (၂၀-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 19 minutes 6 views" title="၅၃၀။ ပဓုပ႑ိတသုတ္ တရားေတာ္(၁) (၂၀-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၃၀။ ပဓုပ႑ိတသုတ္ တရားေတာ္(၁) (၂၀-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">531</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZCKj8YBsuvo&index=532&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZCKj8YBsuvo&index=532&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 14 minutes">
1:14:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၃၁။ ၀ုပ႑ိတသုတ္ တရားေတာ္(၂) (၂၁-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 14 minutes 3 views" title="၅၃၁။ ၀ုပ႑ိတသုတ္ တရားေတာ္(၂) (၂၁-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၃၁။ ၀ုပ႑ိတသုတ္ တရားေတာ္(၂) (၂၁-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">532</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=cOLryn3tk9M&index=533&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=cOLryn3tk9M&index=533&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 10 minutes">
1:10:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၃၂။ ေဒြးဓါ၀ိတကၱသုတ္ တရားေတာ္(၂) (၂၃-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 10 minutes 6 views" title="၅၃၂။ ေဒြးဓါ၀ိတကၱသုတ္ တရားေတာ္(၂) (၂၃-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၃၂။ ေဒြးဓါ၀ိတကၱသုတ္ တရားေတာ္(၂) (၂၃-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">533</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZuNTVhjnaJY&index=534&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZuNTVhjnaJY&index=534&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 12 minutes">
1:12:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၅၃၃။ တဏွာသခၤယသုတ္ (၂၄-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 12 minutes 4 views" title="၅၃၃။ တဏွာသခၤယသုတ္ (၂၄-၁-၁၉၅၈)">
၅၃၃။ တဏွာသခၤယသုတ္ (၂၄-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">534</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=6gopWyqbNp8&index=535&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=6gopWyqbNp8&index=535&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၃၄။ သခၤတႏွင့္ အသခၤတရွင္းတမ္းတရားေတာ္ (၂၅-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour 2 views" title="၅၃၄။ သခၤတႏွင့္ အသခၤတရွင္းတမ္းတရားေတာ္ (၂၅-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၃၄။ သခၤတႏွင့္ အသခၤတရွင္းတမ္းတရားေတာ္ (၂၅-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">535</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CnqEEpL0wnA&index=536&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CnqEEpL0wnA&index=536&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 12 minutes">
1:12:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၃၅။ အနာထပိ႑ိကသုတ္ တရားေတာ္ (၂၅-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 12 minutes 4 views" title="၅၃၅။ အနာထပိ႑ိကသုတ္ တရားေတာ္ (၂၅-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၃၅။ အနာထပိ႑ိကသုတ္ တရားေတာ္ (၂၅-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">536</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=iGSumPrVV4I&index=537&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=iGSumPrVV4I&index=537&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 11 minutes">
1:11:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၃၆။ ေရာဟိတႆသုတ္ တရားေတာ္ (၂၆-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 11 minutes 5 views" title="၅၃၆။ ေရာဟိတႆသုတ္ တရားေတာ္ (၂၆-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၃၆။ ေရာဟိတႆသုတ္ တရားေတာ္ (၂၆-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">537</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=W39NM5GRS3U&index=538&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=W39NM5GRS3U&index=538&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 19 minutes">
1:19:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၃၇။ သြျဗဟၼသုတၱန္ တရားေတာ္(၁) (၂၇-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 19 minutes 2 views" title="၅၃၇။ သြျဗဟၼသုတၱန္ တရားေတာ္(၁) (၂၇-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၃၇။ သြျဗဟၼသုတၱန္ တရားေတာ္(၁) (၂၇-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">538</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=nLVz0P_VBLc&index=539&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=nLVz0P_VBLc&index=539&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 12 minutes">
1:12:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၃၈။ သြျဗဟၼသုတၱန္ တရားေတာ္(၂) (၂၈-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 12 minutes 3 views" title="၅၃၈။ သြျဗဟၼသုတၱန္ တရားေတာ္(၂) (၂၈-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၃၈။ သြျဗဟၼသုတၱန္ တရားေတာ္(၂) (၂၈-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">539</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZTEHcG3B5jI&index=540&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZTEHcG3B5jI&index=540&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၃၉။ ေရွ႕ေနာက္မလြဲၾကပါေစႏွင့္၊ သမၼာဒိ႒ိျဖစ္ေၾကာင္း တရားေတာ္ (၂၈-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour 2 views" title="၅၃၉။ ေရွ႕ေနာက္မလြဲၾကပါေစႏွင့္၊ သမၼာဒိ႒ိျဖစ္ေၾကာင္း တရားေတာ္ (၂၈-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၃၉။ ေရွ႕ေနာက္မလြဲၾကပါေစႏွင့္၊ သမၼာဒိ႒ိျဖစ္ေၾကာင္း တရားေတာ္ (၂၈-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">540</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fzTX1tCExh0&index=541&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fzTX1tCExh0&index=541&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 17 minutes">
1:17:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၄၀။ ေဒ၀ဒူတသုတ္ တရားေတာ္(၁) (၂၉-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 17 minutes 13 views" title="၅၄၀။ ေဒ၀ဒူတသုတ္ တရားေတာ္(၁) (၂၉-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၄၀။ ေဒ၀ဒူတသုတ္ တရားေတာ္(၁) (၂၉-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">541</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=IunJxw8xYHE&index=542&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=IunJxw8xYHE&index=542&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 29 minutes">
1:29:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၄၁။ ေဒ၀ဒူတသုတ္ တရားေတာ္(၂) (၃၀-၁-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 29 minutes 5 views" title="၅၄၁။ ေဒ၀ဒူတသုတ္ တရားေတာ္(၂) (၃၀-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၄၁။ ေဒ၀ဒူတသုတ္ တရားေတာ္(၂) (၃၀-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">542</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BLVaGOpZRsQ&index=543&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BLVaGOpZRsQ&index=543&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၄၂။ ဆႏၵသုတ္(၁) (၃၁-၁-၁၉၅၈) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၅၄၂။ ဆႏၵသုတ္(၁) (၃၁-၁-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၄၂။ ဆႏၵသုတ္(၁) (၃၁-၁-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">543</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qthXiq2rYfE&index=544&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qthXiq2rYfE&index=544&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 13 minutes">
1:13:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၄၃။ ဆႏၵသုတ္(၂) (၁-၂-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 13 minutes 3 views" title="၅၄၃။ ဆႏၵသုတ္(၂) (၁-၂-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၄၃။ ဆႏၵသုတ္(၂) (၁-၂-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">544</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=d6iVdG_qPd0&index=545&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=d6iVdG_qPd0&index=545&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 28 minutes">
1:28:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၄၄။ ဆႏၵသုတ္(၃) (၂-၂-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 28 minutes 3 views" title="၅၄၄။ ဆႏၵသုတ္(၃) (၂-၂-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၄၄။ ဆႏၵသုတ္(၃) (၂-၂-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">545</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=QlOJG83OvhQ&index=546&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=QlOJG83OvhQ&index=546&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 12 minutes">
1:12:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၄၅။ နေႏၵေကာ၀ါဒသုတ္ (၃-၂-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 12 minutes 5 views" title="၅၄၅။ နေႏၵေကာ၀ါဒသုတ္ (၃-၂-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၄၅။ နေႏၵေကာ၀ါဒသုတ္ (၃-၂-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">546</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=njtgXhX32is&index=547&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=njtgXhX32is&index=547&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၄၆။ သမထမလို ၀ိပႆနာနဲ႔ နိဗၺာန္ေရာက္ႏိုင္ပံု၊ သုသိမ၀တၳဳ(၁) (၂၄-၃-၁၉၅၈) by mogok sayadaw 1 year ago 56 minutes 3 views" title="၅၄၆။ သမထမလို ၀ိပႆနာနဲ႔ နိဗၺာန္ေရာက္ႏိုင္ပံု၊ သုသိမ၀တၳဳ(၁) (၂၄-၃-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၄၆။ သမထမလို ၀ိပႆနာနဲ႔ နိဗၺာန္ေရာက္ႏိုင္ပံု၊ သုသိမ၀တၳဳ(၁) (၂၄-၃-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">547</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=roZ6u7PI5jw&index=548&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=roZ6u7PI5jw&index=548&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၄၇။ သမထမလို ၀ိပႆနာနဲ႔ နိဗၺာန္ေရာက္ႏိုင္ပံု၊ သုသိမ၀တၳဳ(၂) (၂၅-၃-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour 5 views" title="၅၄၇။ သမထမလို ၀ိပႆနာနဲ႔ နိဗၺာန္ေရာက္ႏိုင္ပံု၊ သုသိမ၀တၳဳ(၂) (၂၅-၃-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၄၇။ သမထမလို ၀ိပႆနာနဲ႔ နိဗၺာန္ေရာက္ႏိုင္ပံု၊ သုသိမ၀တၳဳ(၂) (၂၅-၃-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">548</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KOrxI0qzLZE&index=549&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KOrxI0qzLZE&index=549&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၄၈။ ဒိဌိျပဳတ္ေရးတရားေတာ္ (၇-၄-၁၉၅၈) by mogok sayadaw 1 year ago 57 minutes 5 views" title="၅၄၈။ ဒိဌိျပဳတ္ေရးတရားေတာ္ (၇-၄-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၄၈။ ဒိဌိျပဳတ္ေရးတရားေတာ္ (၇-၄-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">549</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=8KKxEOkZtSs&index=550&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=8KKxEOkZtSs&index=550&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 5 minutes">
1:05:43
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၄၉။ အျမင္မွားေဘး၊ မသူေတာ္ေဘး မသင့္ေစႏွင့္တရားေတာ္ (၉-၇-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 5 minutes 5 views" title="၅၄၉။ အျမင္မွားေဘး၊ မသူေတာ္ေဘး မသင့္ေစႏွင့္တရားေတာ္ (၉-၇-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၄၉။ အျမင္မွားေဘး၊ မသူေတာ္ေဘး မသင့္ေစႏွင့္တရားေတာ္ (၉-၇-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">550</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mwEqTqul9Oc&index=551&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mwEqTqul9Oc&index=551&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၅၀။ ပဋိစၥသမုပၸါဒ္ႏွင့္ ၀ိပႆနာတရားေတာ္ (၁၀-၇-၁၉၅၈) by mogok sayadaw 1 year ago 54 minutes 97 views" title="၅၅၀။ ပဋိစၥသမုပၸါဒ္ႏွင့္ ၀ိပႆနာတရားေတာ္ (၁၀-၇-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၅၀။ ပဋိစၥသမုပၸါဒ္ႏွင့္ ၀ိပႆနာတရားေတာ္ (၁၀-၇-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">551</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=GXNcMEEg7CU&index=552&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=GXNcMEEg7CU&index=552&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၅၁။ သခၤတအဆံုးမွာ နိဗၺာန္ရွိႏိုင္ပံုတရားေတာ္ (၁၁-၇-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour 8 views" title="၅၅၁။ သခၤတအဆံုးမွာ နိဗၺာန္ရွိႏိုင္ပံုတရားေတာ္ (၁၁-၇-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၅၁။ သခၤတအဆံုးမွာ နိဗၺာန္ရွိႏိုင္ပံုတရားေတာ္ (၁၁-၇-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">552</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NGyLM71xd8A&index=553&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NGyLM71xd8A&index=553&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၅၂။ ေ၀ဒနာခြါၿပီးမွ အနိစၥေတြ႔ေအာင္ရွဳ၊ ေသခါနီး ေ၀ဒနာခြါပံု (၇-၈-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 2 minutes 101 views" title="၅၅၂။ ေ၀ဒနာခြါၿပီးမွ အနိစၥေတြ႔ေအာင္ရွဳ၊ ေသခါနီး ေ၀ဒနာခြါပံု (၇-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၅၂။ ေ၀ဒနာခြါၿပီးမွ အနိစၥေတြ႔ေအာင္ရွဳ၊ ေသခါနီး ေ၀ဒနာခြါပံု (၇-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">553</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=r2-99SbFP2U&index=554&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=r2-99SbFP2U&index=554&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၅၃။ မွားေသာအက်င့္ႏွင့္ မွန္ေသာအက်င့္ တရားေတာ္(၁) (၈-၈-၁၉၅၈) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၅၅၃။ မွားေသာအက်င့္ႏွင့္ မွန္ေသာအက်င့္ တရားေတာ္(၁) (၈-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၅၃။ မွားေသာအက်င့္ႏွင့္ မွန္ေသာအက်င့္ တရားေတာ္(၁) (၈-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">554</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=DwTLoJaNg7Q&index=555&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=DwTLoJaNg7Q&index=555&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၅၄။ မွားေသာအက်င့္ႏွင့္ မွန္ေသာအက်င့္ တရားေတာ္(၂) (၉-၈-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 2 minutes 4 views" title="၅၅၄။ မွားေသာအက်င့္ႏွင့္ မွန္ေသာအက်င့္ တရားေတာ္(၂) (၉-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၅၄။ မွားေသာအက်င့္ႏွင့္ မွန္ေသာအက်င့္ တရားေတာ္(၂) (၉-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">555</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Lh_ada8asss&index=556&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Lh_ada8asss&index=556&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၅၅။ အဓိပတိ(၃)ပါးထား၍ ပစၥဳပၸန္ပဋိစၥသမုပၸါဒ္ကိုသာ ၀ိပႆနာရွဳရန္တရား (၁၁-၈-၁၉၅၈) by mogok sayadaw 1 year ago 56 minutes 10 views" title="၅၅၅။ အဓိပတိ(၃)ပါးထား၍ ပစၥဳပၸန္ပဋိစၥသမုပၸါဒ္ကိုသာ ၀ိပႆနာရွဳရန္တရား (၁၁-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၅၅။ အဓိပတိ(၃)ပါးထား၍ ပစၥဳပၸန္ပဋိစၥသမုပၸါဒ္ကိုသာ ၀ိပႆနာရွဳရန္တရား (၁၁-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">556</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=HzK1WbdII1g&index=557&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=HzK1WbdII1g&index=557&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 4 minutes">
1:04:40
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၅၆။ အနာဂတ္ေဘးငါးပါးႏွင့္ ပဋိစၥသမုပၸါဒ္ အႏုေလာမနည္းရွင္းပံု (၁၂-၈-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 4 minutes 6 views" title="၅၅၆။ အနာဂတ္ေဘးငါးပါးႏွင့္ ပဋိစၥသမုပၸါဒ္ အႏုေလာမနည္းရွင္းပံု (၁၂-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၅၆။ အနာဂတ္ေဘးငါးပါးႏွင့္ ပဋိစၥသမုပၸါဒ္ အႏုေလာမနည္းရွင္းပံု (၁၂-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">557</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=sBmWJFm7Nt4&index=558&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=sBmWJFm7Nt4&index=558&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၅၇။ အဓိပတိ(၃)ပါးထား၍ အားထုတ္ရန္ႏွင့္ ေ၀ဒနာႏွင့္တဏွာၾကားနိဗၺာန္ရွာပုံ (၁၃-၈-၁၉၅၈) by mogok sayadaw 1 year ago 58 minutes 3 views" title="၅၅၇။ အဓိပတိ(၃)ပါးထား၍ အားထုတ္ရန္ႏွင့္ ေ၀ဒနာႏွင့္တဏွာၾကားနိဗၺာန္ရွာပုံ (၁၃-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၅၇။ အဓိပတိ(၃)ပါးထား၍ အားထုတ္ရန္ႏွင့္ ေ၀ဒနာႏွင့္တဏွာၾကားနိဗၺာန္ရွာပုံ (၁၃-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">558</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=nNOM7tSMg_g&index=559&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=nNOM7tSMg_g&index=559&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/nNOM7tSMg_g/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDAY4YPzv88g2Exg3EUYaeZXr5fxg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 20 minutes">
1:20:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၅၈။ ခႏၶာပဋိစၥသမုပၸါဒ္ လက္ေတြ႔၀ိပႆနာတရားေတာ္ (၁၄-၈-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 20 minutes 5 views" title="၅၅၈။ ခႏၶာပဋိစၥသမုပၸါဒ္ လက္ေတြ႔၀ိပႆနာတရားေတာ္ (၁၄-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၅၈။ ခႏၶာပဋိစၥသမုပၸါဒ္ လက္ေတြ႔၀ိပႆနာတရားေတာ္ (၁၄-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">559</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=K6ayyVRizUg&index=560&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=K6ayyVRizUg&index=560&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/K6ayyVRizUg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCMHasLb6-OnwON8FSP0m3Ru7pUqQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၅၉။ အဓိပတိ(၃)ပါးထား၍ အားထုတ္ၾကပံုတရားေတာ္ (၁၅-၈-၁၉၅၈) by mogok sayadaw 1 year ago 59 minutes 4 views" title="၅၅၉။ အဓိပတိ(၃)ပါးထား၍ အားထုတ္ၾကပံုတရားေတာ္ (၁၅-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၅၉။ အဓိပတိ(၃)ပါးထား၍ အားထုတ္ၾကပံုတရားေတာ္ (၁၅-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">560</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BtueMSg7l7o&index=561&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BtueMSg7l7o&index=561&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/BtueMSg7l7o/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCIxb_QZTlcx0AmnEx5YsBGt5wdkg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၆၀။ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရန္တရားေတာ္ (၁၉-၈-၁၉၅၈) by mogok sayadaw 1 year ago 59 minutes 6 views" title="၅၆၀။ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရန္တရားေတာ္ (၁၉-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၆၀။ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရန္တရားေတာ္ (၁၉-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">561</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lfLVyiuF_Cc&index=562&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lfLVyiuF_Cc&index=562&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/lfLVyiuF_Cc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAbXIu98PSADImGPI-n3hCd2ry--w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၆၁။ ေ၀ပုလႅေတာင္ေထာက္ျပ၍ အေသဇာတ္သိမ္းရန္၊ အ၀ိဇၨာဖံုးပံုႏွင့္စုတိသံုးမ်ိဳး (၂၀-၈-၁၉၅၈) by mogok sayadaw 1 year ago 58 minutes 10 views" title="၅၆၁။ ေ၀ပုလႅေတာင္ေထာက္ျပ၍ အေသဇာတ္သိမ္းရန္၊ အ၀ိဇၨာဖံုးပံုႏွင့္စုတိသံုးမ်ိဳး (၂၀-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၆၁။ ေ၀ပုလႅေတာင္ေထာက္ျပ၍ အေသဇာတ္သိမ္းရန္၊ အ၀ိဇၨာဖံုးပံုႏွင့္စုတိသံုးမ်ိဳး (၂၀-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">562</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=3aTyw2hsqIc&index=563&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=3aTyw2hsqIc&index=563&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/3aTyw2hsqIc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD0bl_KlQ96894rh6tcWUF9FqArKQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၆၂။ အို နာ ေသလြတ္ရာနိဗၺာန္တရားေတာ္၊ နာဂရသုတ္ (၂၂-၈-၁၉၅၈) by mogok sayadaw 1 year ago 58 minutes 8 views" title="၅၆၂။ အို နာ ေသလြတ္ရာနိဗၺာန္တရားေတာ္၊ နာဂရသုတ္ (၂၂-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၆၂။ အို နာ ေသလြတ္ရာနိဗၺာန္တရားေတာ္၊ နာဂရသုတ္ (၂၂-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">563</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=rxbmhqzfUbk&index=564&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=rxbmhqzfUbk&index=564&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/rxbmhqzfUbk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB-BSCqzY6BVCsx9nPutcqSiwJBFg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 14 minutes">
1:14:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၆၃။ သမၼသနသုတ္၊ အငတ္နာေဘးတရားေတာ္ (၂၃-၈-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 14 minutes 7 views" title="၅၆၃။ သမၼသနသုတ္၊ အငတ္နာေဘးတရားေတာ္ (၂၃-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၆၃။ သမၼသနသုတ္၊ အငတ္နာေဘးတရားေတာ္ (၂၃-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">564</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qK_jcKPXw2I&index=565&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qK_jcKPXw2I&index=565&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/qK_jcKPXw2I/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAjC1pE7VTeYO3HNDahAG2vaC98-A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၆၄။ ကာလ၏ စားဖတ္ ၀ါးဖတ္မျဖစ္ေစေရး တရားေတာ္ (၂၄-၈-၁၉၅၈) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၅၆၄။ ကာလ၏ စားဖတ္ ၀ါးဖတ္မျဖစ္ေစေရး တရားေတာ္ (၂၄-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၆၄။ ကာလ၏ စားဖတ္ ၀ါးဖတ္မျဖစ္ေစေရး တရားေတာ္ (၂၄-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">565</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=_ULj_CI7N0A&index=566&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=_ULj_CI7N0A&index=566&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/_ULj_CI7N0A/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBPfG_Z4PKwoQLeTig9n0q1s0KNsg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၆၅။ ဒိဌိျပဳတ္ေရးတရားေတာ္(၂) (၂၆-၈-၁၉၅၈) by mogok sayadaw 1 year ago 53 minutes 14 views" title="၅၆၅။ ဒိဌိျပဳတ္ေရးတရားေတာ္(၂) (၂၆-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၆၅။ ဒိဌိျပဳတ္ေရးတရားေတာ္(၂) (၂၆-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">566</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ac2U9PZIX3I&index=567&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ac2U9PZIX3I&index=567&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ac2U9PZIX3I/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB316_MlYejEeR9f5BonaG8e26BlQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၆၆။ ဒိဌိျပဳတ္ေရးတရားေတာ္(၃) (၂၈-၈-၁၉၅၈) by mogok sayadaw 1 year ago 57 minutes 3 views" title="၅၆၆။ ဒိဌိျပဳတ္ေရးတရားေတာ္(၃) (၂၈-၈-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၆၆။ ဒိဌိျပဳတ္ေရးတရားေတာ္(၃) (၂၈-၈-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">567</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=UDhBoOZwaXI&index=568&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=UDhBoOZwaXI&index=568&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/UDhBoOZwaXI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA4nGDsodmcp54K8RP_swr2PuVRow"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၆၇။ သီလလံုျခံဳရံုႏွင့္ မတင္းတိမ္ပါနဲ႔(သလႅႏွင့္ အဘယေဟာ-သစ္တံုးဥပမာ) (၁-၉-၁၉၅၈) by mogok sayadaw 1 year ago 54 minutes 7 views" title="၅၆၇။ သီလလံုျခံဳရံုႏွင့္ မတင္းတိမ္ပါနဲ႔(သလႅႏွင့္ အဘယေဟာ-သစ္တံုးဥပမာ) (၁-၉-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၆၇။ သီလလံုျခံဳရံုႏွင့္ မတင္းတိမ္ပါနဲ႔(သလႅႏွင့္ အဘယေဟာ-သစ္တံုးဥပမာ) (၁-၉-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">568</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TW76kRMghAE&index=569&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TW76kRMghAE&index=569&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/TW76kRMghAE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCEVDeGHGjT5VDl7odyLT89XYk-6g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၆၈။ အဂၤါေလးပါးျပည့္စံုလွ်င္ ဒုတိယဘ၀မွာ ကိစၥၿပီးပံုတရားေတာ္(ေသာတာႏုဂတသုတ္) (၂-၉-၁၉၅၈) by mogok sayadaw 1 year ago 45 minutes 9 views" title="၅၆၈။ အဂၤါေလးပါးျပည့္စံုလွ်င္ ဒုတိယဘ၀မွာ ကိစၥၿပီးပံုတရားေတာ္(ေသာတာႏုဂတသုတ္) (၂-၉-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၆၈။ အဂၤါေလးပါးျပည့္စံုလွ်င္ ဒုတိယဘ၀မွာ ကိစၥၿပီးပံုတရားေတာ္(ေသာတာႏုဂတသုတ္) (၂-၉-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">569</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=I3uQTk66Zs8&index=570&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=I3uQTk66Zs8&index=570&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/I3uQTk66Zs8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCHPgSrG8T80HM6HE7LN2LSsL6h1A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၆၉။ ဒုလႅဘတရားငါးပါး ဘုရားေဟာငါးခ်က္ႏွင့္ ျပည့္စံုလွ်င္ အမွန္ပင္မဂ္ဆိုက္ႏိုင္ပံု (၃-၉-၁၉၅၈) by mogok sayadaw 1 year ago 55 minutes 7 views" title="၅၆၉။ ဒုလႅဘတရားငါးပါး ဘုရားေဟာငါးခ်က္ႏွင့္ ျပည့္စံုလွ်င္ အမွန္ပင္မဂ္ဆိုက္ႏိုင္ပံု (၃-၉-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၆၉။ ဒုလႅဘတရားငါးပါး ဘုရားေဟာငါးခ်က္ႏွင့္ ျပည့္စံုလွ်င္ အမွန္ပင္မဂ္ဆိုက္ႏိုင္ပံု (၃-၉-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">570</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=_lMbJZivVLw&index=571&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=_lMbJZivVLw&index=571&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/_lMbJZivVLw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBR5aDrxgR_rzFMVtLWYlKmXPqIbw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="38 minutes">
38:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၇၀။ ေသာတာပန္တည္ျခင္းအေၾကာင္း တရားေတာ္ (၄-၉-၁၉၅၈) by mogok sayadaw 1 year ago 38 minutes 5 views" title="၅၇၀။ ေသာတာပန္တည္ျခင္းအေၾကာင္း တရားေတာ္ (၄-၉-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၇၀။ ေသာတာပန္တည္ျခင္းအေၾကာင္း တရားေတာ္ (၄-၉-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">571</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=whW2jvz8gqY&index=572&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=whW2jvz8gqY&index=572&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/whW2jvz8gqY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDvzLI7fLPtDa3jJEMjJ_9tyAi-qw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="47 minutes">
47:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၇၁။ နီ၀ရဏတရားငါးပါး တရားေတာ္(၁) (၁၂-၉-၁၉၅၈) by mogok sayadaw 1 year ago 47 minutes 2 views" title="၅၇၁။ နီ၀ရဏတရားငါးပါး တရားေတာ္(၁) (၁၂-၉-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၇၁။ နီ၀ရဏတရားငါးပါး တရားေတာ္(၁) (၁၂-၉-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">572</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jcyx1l3qPD8&index=573&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jcyx1l3qPD8&index=573&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၇၂။ နီ၀ရဏတရားငါးပါး တရားေတာ္(၂) (၁၃-၉-၁၉၅၈) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၅၇၂။ နီ၀ရဏတရားငါးပါး တရားေတာ္(၂) (၁၃-၉-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၇၂။ နီ၀ရဏတရားငါးပါး တရားေတာ္(၂) (၁၃-၉-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">573</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KKXJAXKeyOo&index=574&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KKXJAXKeyOo&index=574&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၇၃။ နီ၀ရဏတရားငါးပါး တရားေတာ္(၃)၊ အဇာတသတ္ေဟာ (၁၄-၉-၁၉၅၈) by mogok sayadaw 1 year ago 54 minutes 3 views" title="၅၇၃။ နီ၀ရဏတရားငါးပါး တရားေတာ္(၃)၊ အဇာတသတ္ေဟာ (၁၄-၉-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၇၃။ နီ၀ရဏတရားငါးပါး တရားေတာ္(၃)၊ အဇာတသတ္ေဟာ (၁၄-၉-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">574</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zDGMgG3oyhs&index=575&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zDGMgG3oyhs&index=575&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 18 minutes">
1:18:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၇၄။ သမုဒၵရာေျခာက္စင္းကို ဒုကၡသစၥာအျဖစ္ ဥပမာျပတရားေတာ္ (၁၀-၁၂-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 18 minutes 7 views" title="၅၇၄။ သမုဒၵရာေျခာက္စင္းကို ဒုကၡသစၥာအျဖစ္ ဥပမာျပတရားေတာ္ (၁၀-၁၂-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၇၄။ သမုဒၵရာေျခာက္စင္းကို ဒုကၡသစၥာအျဖစ္ ဥပမာျပတရားေတာ္ (၁၀-၁၂-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">575</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=pA8KTg5CJ6c&index=576&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=pA8KTg5CJ6c&index=576&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၇၅။ ခႏၶာပဋိစၥသမုပၸါဒ္ ရဟတ္လည္ေနပံုတရားေတာ္ (၁၃-၁၂-၁၉၅၈) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၅၇၅။ ခႏၶာပဋိစၥသမုပၸါဒ္ ရဟတ္လည္ေနပံုတရားေတာ္ (၁၃-၁၂-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၇၅။ ခႏၶာပဋိစၥသမုပၸါဒ္ ရဟတ္လည္ေနပံုတရားေတာ္ (၁၃-၁၂-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">576</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=REc7A_n0yCw&index=577&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=REc7A_n0yCw&index=577&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၇၆။ ဒုကၡသစၥာကို ပိုင္ႏိုင္စြာ မသိေသးလွ်င္ သံသရာထဲလည္ဦးမည္တရား (၁၄-၁၂-၁၉၅၈) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၅၇၆။ ဒုကၡသစၥာကို ပိုင္ႏိုင္စြာ မသိေသးလွ်င္ သံသရာထဲလည္ဦးမည္တရား (၁၄-၁၂-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၇၆။ ဒုကၡသစၥာကို ပိုင္ႏိုင္စြာ မသိေသးလွ်င္ သံသရာထဲလည္ဦးမည္တရား (၁၄-၁၂-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">577</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=6MVeJCV8dyQ&index=578&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=6MVeJCV8dyQ&index=578&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:54
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၇၇။ ဒုကၡေပၚဒုကၡဆင့္ေနပံုတရားေတာ္ (၁၇-၁၂-၁၉၅၈) by mogok sayadaw 1 year ago 52 minutes 2 views" title="၅၇၇။ ဒုကၡေပၚဒုကၡဆင့္ေနပံုတရားေတာ္ (၁၇-၁၂-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၇၇။ ဒုကၡေပၚဒုကၡဆင့္ေနပံုတရားေတာ္ (၁၇-၁၂-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">578</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hjgq5WgTb3w&index=579&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hjgq5WgTb3w&index=579&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၇၈။ ဒုကၡသစၥာကိုရွဳေသာ ပုဂၢိဳလ္တို႔၏ဉာဏ္၌ ထင္ျမင္ပံုတရားေတာ္ (၁၉-၁၂-၁၉၅၈) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၅၇၈။ ဒုကၡသစၥာကိုရွဳေသာ ပုဂၢိဳလ္တို႔၏ဉာဏ္၌ ထင္ျမင္ပံုတရားေတာ္ (၁၉-၁၂-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၇၈။ ဒုကၡသစၥာကိုရွဳေသာ ပုဂၢိဳလ္တို႔၏ဉာဏ္၌ ထင္ျမင္ပံုတရားေတာ္ (၁၉-၁၂-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">579</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EY1yDplZ1zo&index=580&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EY1yDplZ1zo&index=580&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၇၉။ ဒုကၡသစၥာ၏ ဆိုး၀ါးမႈကို ရွင္းျပပံုတရားေတာ္ (၂၀-၁၂-၁၉၅၈) by mogok sayadaw 1 year ago 57 minutes 11 views" title="၅၇၉။ ဒုကၡသစၥာ၏ ဆိုး၀ါးမႈကို ရွင္းျပပံုတရားေတာ္ (၂၀-၁၂-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၇၉။ ဒုကၡသစၥာ၏ ဆိုး၀ါးမႈကို ရွင္းျပပံုတရားေတာ္ (၂၀-၁၂-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">580</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=0A0eg9YBLyQ&index=581&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=0A0eg9YBLyQ&index=581&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၈၀။ ေသာတာပန္ျဖစ္ဖို႔ ႏွစ္ခ်က္တရားေတာ္ (၃၁-၁၂-၁၉၅၈) by mogok sayadaw 1 year ago 1 hour, 2 minutes 3 views" title="၅၈၀။ ေသာတာပန္ျဖစ္ဖို႔ ႏွစ္ခ်က္တရားေတာ္ (၃၁-၁၂-၁၉၅၈)" style="font-family: ZawGyi-One !important;">
၅၈၀။ ေသာတာပန္ျဖစ္ဖို႔ ႏွစ္ခ်က္တရားေတာ္ (၃၁-၁၂-၁၉၅၈)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">581</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=O-F5qvepw44&index=582&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=O-F5qvepw44&index=582&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၈၁။ ပဋိေ၀ဓအသိေရာက္မွ ကိစၥၿပီးႏုိင္ပံု (၂-၁-၁၉၅၉) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၅၈၁။ ပဋိေ၀ဓအသိေရာက္မွ ကိစၥၿပီးႏုိင္ပံု (၂-၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၈၁။ ပဋိေ၀ဓအသိေရာက္မွ ကိစၥၿပီးႏုိင္ပံု (၂-၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">582</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=cNO9RngE5SU&index=583&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=cNO9RngE5SU&index=583&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၈၂။ သစၥဉာဏ္မရခဲ့၍ သံသရာရွည္ခဲ့ပံုတရားေတာ္ (၃-၁-၁၉၅၉) by mogok sayadaw 1 year ago 56 minutes 2 views" title="၅၈၂။ သစၥဉာဏ္မရခဲ့၍ သံသရာရွည္ခဲ့ပံုတရားေတာ္ (၃-၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၈၂။ သစၥဉာဏ္မရခဲ့၍ သံသရာရွည္ခဲ့ပံုတရားေတာ္ (၃-၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">583</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=_kx7AhoBtKI&index=584&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=_kx7AhoBtKI&index=584&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၈၃။ ကိစၥဉာဏ္တရားေတာ္၊ သုျဗဟၼနတ္သားတရားေတာ္ (၄-၁-၁၉၅၉) by mogok sayadaw 1 year ago 51 minutes 2 views" title="၅၈၃။ ကိစၥဉာဏ္တရားေတာ္၊ သုျဗဟၼနတ္သားတရားေတာ္ (၄-၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၈၃။ ကိစၥဉာဏ္တရားေတာ္၊ သုျဗဟၼနတ္သားတရားေတာ္ (၄-၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">584</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1UFCQsRYDTU&index=585&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1UFCQsRYDTU&index=585&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၈၄။ ႏွလံုးသြင္းမွန္မႈအေရးၾကီးပံု (၁၄-၁-၁၉၅၉) by mogok sayadaw 1 year ago 56 minutes 6 views" title="၅၈၄။ ႏွလံုးသြင္းမွန္မႈအေရးၾကီးပံု (၁၄-၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၈၄။ ႏွလံုးသြင္းမွန္မႈအေရးၾကီးပံု (၁၄-၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">585</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KlGJbbZDB40&index=586&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KlGJbbZDB40&index=586&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၈၅။ ထိုးထြင္းသိရမွာကို ထိုးထြင္းသိ၊ ပိုင္းျခားသိရမွာကို ပိုင္းျခားသိတရားေတာ္ (၁၅-၁-၁၉၅၉) by mogok sayadaw 1 year ago 57 minutes 3 views" title="၅၈၅။ ထိုးထြင္းသိရမွာကို ထိုးထြင္းသိ၊ ပိုင္းျခားသိရမွာကို ပိုင္းျခားသိတရားေတာ္ (၁၅-၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၈၅။ ထိုးထြင္းသိရမွာကို ထိုးထြင္းသိ၊ ပိုင္းျခားသိရမွာကို ပိုင္းျခားသိတရားေတာ္ (၁၅-၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">586</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=yEw1vTaT82w&index=587&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=yEw1vTaT82w&index=587&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၈၆။ ၀ိပႆနာရွဳပြားနည္း အလုပ္သင္တရားေတာ္ (၁၇-၁-၁၉၅၉) by mogok sayadaw 1 year ago 54 minutes 6 views" title="၅၈၆။ ၀ိပႆနာရွဳပြားနည္း အလုပ္သင္တရားေတာ္ (၁၇-၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၈၆။ ၀ိပႆနာရွဳပြားနည္း အလုပ္သင္တရားေတာ္ (၁၇-၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">587</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=q8y4iFE_sXA&index=588&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=q8y4iFE_sXA&index=588&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၈၇။ ထိနမိဒၶ၏ ေကာက္က်စ္လွည့္စားတတ္ပံု (၁၉-၁-၁၉၅၉) by mogok sayadaw 1 year ago 57 minutes 3 views" title="၅၈၇။ ထိနမိဒၶ၏ ေကာက္က်စ္လွည့္စားတတ္ပံု (၁၉-၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၈၇။ ထိနမိဒၶ၏ ေကာက္က်စ္လွည့္စားတတ္ပံု (၁၉-၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">588</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NmY-RAf92nQ&index=589&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NmY-RAf92nQ&index=589&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၈၈။ တရားေျခာက္မ်ိဳးရွင္း၊ မိလိႏၵမင္းၾကီးႏွင့္ အရွင္နာဂသိန္ အေမးအေျဖ (၁၉-၁-၁၉၅၉) by mogok sayadaw 1 year ago 55 minutes 18 views" title="၅၈၈။ တရားေျခာက္မ်ိဳးရွင္း၊ မိလိႏၵမင္းၾကီးႏွင့္ အရွင္နာဂသိန္ အေမးအေျဖ (၁၉-၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၈၈။ တရားေျခာက္မ်ိဳးရွင္း၊ မိလိႏၵမင္းၾကီးႏွင့္ အရွင္နာဂသိန္ အေမးအေျဖ (၁၉-၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">589</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jIuX4SZ8l8k&index=590&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jIuX4SZ8l8k&index=590&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၈၉။ ေသနည္းသင္ေပးပံု တရားေတာ္ (၂၀-၁-၁၉၅၉) by mogok sayadaw 1 year ago 53 minutes 4 views" title="၅၈၉။ ေသနည္းသင္ေပးပံု တရားေတာ္ (၂၀-၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၈၉။ ေသနည္းသင္ေပးပံု တရားေတာ္ (၂၀-၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">590</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=tziw33E-IT8&index=591&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=tziw33E-IT8&index=591&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:12
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၉၀။ ကုကၠဳစၥက လွည့္စားတတ္ပံု (၂၁-၁-၁၉၅၉) by mogok sayadaw 1 year ago 58 minutes 3 views" title="၅၉၀။ ကုကၠဳစၥက လွည့္စားတတ္ပံု (၂၁-၁-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၉၀။ ကုကၠဳစၥက လွည့္စားတတ္ပံု (၂၁-၁-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">591</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=0Tg23wTqGyg&index=592&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=0Tg23wTqGyg&index=592&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:40
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၉၁။ နိဗၺာန္-အဂၢိ၀စၥပုဏၰားေမး၍ ဘုရားေျဖေတာ္မူပံု(၁) (၂-၂-၁၉၅၉) by mogok sayadaw 1 year ago 1 hour, 2 minutes 8 views" title="၅၉၁။ နိဗၺာန္-အဂၢိ၀စၥပုဏၰားေမး၍ ဘုရားေျဖေတာ္မူပံု(၁) (၂-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၉၁။ နိဗၺာန္-အဂၢိ၀စၥပုဏၰားေမး၍ ဘုရားေျဖေတာ္မူပံု(၁) (၂-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">592</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=w86IZXhQgrM&index=593&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=w86IZXhQgrM&index=593&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/w86IZXhQgrM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCRngGoM5IDZ8tZY96ZS8E_lyMFYA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၉၂။ ယမကရဟန္း ဥပမာျပ(၁)တရားေတာ္ (၁၆-၂-၁၉၅၉) by mogok sayadaw 1 year ago 50 minutes 9 views" title="၅၉၂။ ယမကရဟန္း ဥပမာျပ(၁)တရားေတာ္ (၁၆-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၉၂။ ယမကရဟန္း ဥပမာျပ(၁)တရားေတာ္ (၁၆-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">593</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=bypD-uCx8pE&index=594&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=bypD-uCx8pE&index=594&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/bypD-uCx8pE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAkA2HN9RaUkQQdDNqB2VBX5-VByA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၉၃။ ယမကရဟန္း ဥပမာျပ(၂)တရားေတာ္ (၁၇-၂-၁၉၅၉) by mogok sayadaw 1 year ago 53 minutes 3 views" title="၅၉၃။ ယမကရဟန္း ဥပမာျပ(၂)တရားေတာ္ (၁၇-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၉၃။ ယမကရဟန္း ဥပမာျပ(၂)တရားေတာ္ (၁၇-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">594</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=HSlTlSlgTSY&index=595&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=HSlTlSlgTSY&index=595&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/HSlTlSlgTSY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAZKNf3Yq8kIkWOPGXyo_HCSAi3bQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၉၄။ ယမကရဟန္း ဥပမာျပ(၃)တရားေတာ္ (၁၈-၂-၁၉၅၉) by mogok sayadaw 1 year ago 1 hour 7 views" title="၅၉၄။ ယမကရဟန္း ဥပမာျပ(၃)တရားေတာ္ (၁၈-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၉၄။ ယမကရဟန္း ဥပမာျပ(၃)တရားေတာ္ (၁၈-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">595</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=dZAXKCeLXgY&index=596&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=dZAXKCeLXgY&index=596&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/dZAXKCeLXgY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA4NlGl1Wvlw-XctuAOG7gakA-C-w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၉၅။ ယမကရဟန္း ဥပမာျပ(၄)တရားေတာ္ (၁၉-၂-၁၉၅၉) by mogok sayadaw 1 year ago 56 minutes 4 views" title="၅၉၅။ ယမကရဟန္း ဥပမာျပ(၄)တရားေတာ္ (၁၉-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၉၅။ ယမကရဟန္း ဥပမာျပ(၄)တရားေတာ္ (၁၉-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">596</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=cE2CgHQgsUI&index=597&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=cE2CgHQgsUI&index=597&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/cE2CgHQgsUI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDe0JyAPK3fDVppKSVZR7RbRPQdPA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၉၆။ ယမကရဟန္း ဥပမာျပ(၅)တရားေတာ္ (၂၀-၂-၁၉၅၉) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၅၉၆။ ယမကရဟန္း ဥပမာျပ(၅)တရားေတာ္ (၂၀-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၉၆။ ယမကရဟန္း ဥပမာျပ(၅)တရားေတာ္ (၂၀-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">597</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=QUeoBzqfTw0&index=598&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=QUeoBzqfTw0&index=598&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/QUeoBzqfTw0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCV9QQ1Kkjetma4gaSzj-wHnRE61Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၉၇။ ယမကရဟန္း ဥပမာျပ(၇)တရားေတာ္ (၂၂-၂-၁၉၅၉) by mogok sayadaw 1 year ago 59 minutes 11 views" title="၅၉၇။ ယမကရဟန္း ဥပမာျပ(၇)တရားေတာ္ (၂၂-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၉၇။ ယမကရဟန္း ဥပမာျပ(၇)တရားေတာ္ (၂၂-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">598</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=n7lCO5nIBbA&index=599&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=n7lCO5nIBbA&index=599&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/n7lCO5nIBbA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCFaj2bgObJpYZnoR9HFkIGUNK_Dg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၉၈။ ရွင္သာရိပုတၱရာက ယမကရဟန္းအား တရားစစ္ပံု(၈) (၂၃-၂-၁၉၅၉) by mogok sayadaw 1 year ago 56 minutes 3 views" title="၅၉၈။ ရွင္သာရိပုတၱရာက ယမကရဟန္းအား တရားစစ္ပံု(၈) (၂၃-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၉၈။ ရွင္သာရိပုတၱရာက ယမကရဟန္းအား တရားစစ္ပံု(၈) (၂၃-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">599</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=P9s1ooK8Va8&index=600&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=P9s1ooK8Va8&index=600&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/P9s1ooK8Va8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAHE7ldHmXRER7awvLr-uLOg4Wr2A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၅၉၉။ မာဂ႑ီသုတ္(၁) (၂၄-၂-၁၉၅၉) by mogok sayadaw 1 year ago 1 hour 3 views" title="၅၉၉။ မာဂ႑ီသုတ္(၁) (၂၄-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၅၉၉။ မာဂ႑ီသုတ္(၁) (၂၄-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">600</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VVOaOvpLF9Y&index=601&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VVOaOvpLF9Y&index=601&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/VVOaOvpLF9Y/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBu8AWygHeUcq5gPVecXHLa2yEnCQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၀၀။ ဒိ႒ိေရာဂါသည္ၾကီး မာဂ႑ီအား ဘုရားေဟာၾကားပံု တရားေတာ္ (၂၆-၂-၁၉၅၉) by mogok sayadaw 1 year ago 1 hour 2 views" title="၆၀၀။ ဒိ႒ိေရာဂါသည္ၾကီး မာဂ႑ီအား ဘုရားေဟာၾကားပံု တရားေတာ္ (၂၆-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၀၀။ ဒိ႒ိေရာဂါသည္ၾကီး မာဂ႑ီအား ဘုရားေဟာၾကားပံု တရားေတာ္ (၂၆-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">601</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ve9eTaMWO1g&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=602&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ve9eTaMWO1g&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=602&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ve9eTaMWO1g/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLALJev6kA8CRO35uEmn4CNJSXG7Ow"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="43 minutes">
43:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၀၁။ အလုပ္ကင္းလွ်င္ အရူးက်န္တယ္ တရားေတာ္ (၂၇-၂-၁၉၅၉) by mogok sayadaw 1 year ago 43 minutes 5 views" title="၆၀၁။ အလုပ္ကင္းလွ်င္ အရူးက်န္တယ္ တရားေတာ္ (၂၇-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၀၁။ အလုပ္ကင္းလွ်င္ အရူးက်န္တယ္ တရားေတာ္ (၂၇-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">602</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EYneeoGfV0Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=603&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EYneeoGfV0Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=603&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/EYneeoGfV0Y/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCTVisEwNkyqUbrHWacmhDyFZreEw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၀၂။ ရုပ္နာမ္ကို ပညာနဲ႔ အကဲခတ္ပါ တရားေတာ္ (၂၈-၂-၁၉၅၉) by mogok sayadaw 1 year ago 57 minutes 17 views" title="၆၀၂။ ရုပ္နာမ္ကို ပညာနဲ႔ အကဲခတ္ပါ တရားေတာ္ (၂၈-၂-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၀၂။ ရုပ္နာမ္ကို ပညာနဲ႔ အကဲခတ္ပါ တရားေတာ္ (၂၈-၂-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">603</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qZnTU_8XunM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=604&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qZnTU_8XunM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=604&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/qZnTU_8XunM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBJXvt9Li6lEwupjzIgiRmju-7FOw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:43
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၀၃။ သိမ္ေမြ႔တဲ့ ရုပ္နာမ္ျဖစ္ပ်က္ကို သူစိမ္းျပင္ျပင္ ျမင္ေအာင္ေစာင့္ေစာင့္ၾကည့္ရန္ (၁-၃-၁၉၅၉) by mogok sayadaw 1 year ago 54 minutes 4 views" title="၆၀၃။ သိမ္ေမြ႔တဲ့ ရုပ္နာမ္ျဖစ္ပ်က္ကို သူစိမ္းျပင္ျပင္ ျမင္ေအာင္ေစာင့္ေစာင့္ၾကည့္ရန္ (၁-၃-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၀၃။ သိမ္ေမြ႔တဲ့ ရုပ္နာမ္ျဖစ္ပ်က္ကို သူစိမ္းျပင္ျပင္ ျမင္ေအာင္ေစာင့္ေစာင့္ၾကည့္ရန္ (၁-၃-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">604</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gkp_iUvwqg4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=605&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gkp_iUvwqg4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=605&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/gkp_iUvwqg4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBka8IxmvbnXlWd7GIl_IIvMJCG_w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၀၄။ ဥဒယဗၺယဉာဏ္ေရာက္လွ်င္ အက်ိဳးၾကီးလွပံု (၃-၃-၁၉၅၉) by mogok sayadaw 1 year ago 52 minutes 2 views" title="၆၀၄။ ဥဒယဗၺယဉာဏ္ေရာက္လွ်င္ အက်ိဳးၾကီးလွပံု (၃-၃-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၀၄။ ဥဒယဗၺယဉာဏ္ေရာက္လွ်င္ အက်ိဳးၾကီးလွပံု (၃-၃-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">605</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=olV9Oe8fMfo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=606&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=olV9Oe8fMfo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=606&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/olV9Oe8fMfo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBQRk5fI4JRIOLlQyg8zLRR2b0O9w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၀၅။ ဥဒယဗၺယဉာဏ္ေရာက္လွ်င္ အက်ိဳးၾကီးလွပံု (၃-၃-၁၉၅၉ ႏွင့္တူေန) (၄-၃-၁၉၅၉) by mogok sayadaw 1 year ago 1 hour 3 views" title="၆၀၅။ ဥဒယဗၺယဉာဏ္ေရာက္လွ်င္ အက်ိဳးၾကီးလွပံု (၃-၃-၁၉၅၉ ႏွင့္တူေန) (၄-၃-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၀၅။ ဥဒယဗၺယဉာဏ္ေရာက္လွ်င္ အက်ိဳးၾကီးလွပံု (၃-၃-၁၉၅၉ ႏွင့္တူေန) (၄-၃-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">606</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hlEIxttse7w&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=607&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hlEIxttse7w&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=607&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/hlEIxttse7w/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC_4ynNzGp74kJKC27rDZ35fXgK_Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၀၆။ ေသမင္းထံပို႔သည့္ ဇရာလက္ထဲမွာ ေပ်ာ္လ်က္ရွိၾကပံု၊ သစၥာေလးပါးတရားေတာ္ (၅-၃-၁၉၅၉) by mogok sayadaw 1 year ago 57 minutes 47 views" title="၆၀၆။ ေသမင္းထံပို႔သည့္ ဇရာလက္ထဲမွာ ေပ်ာ္လ်က္ရွိၾကပံု၊ သစၥာေလးပါးတရားေတာ္ (၅-၃-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၀၆။ ေသမင္းထံပို႔သည့္ ဇရာလက္ထဲမွာ ေပ်ာ္လ်က္ရွိၾကပံု၊ သစၥာေလးပါးတရားေတာ္ (၅-၃-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">607</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BCbLx8P2Bg4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=608&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BCbLx8P2Bg4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=608&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:12
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၀၇။ မာဂ႑ိသုတ္(၉)၊ ပုထုဇဥ္ရဟန္းတစ္ပါးအေမးကို ရဟႏၱာၾကီးတစ္ပါးေျဖပံု (၆-၃-၁၉၅၉) by mogok sayadaw 1 year ago 1 hour 3 views" title="၆၀၇။ မာဂ႑ိသုတ္(၉)၊ ပုထုဇဥ္ရဟန္းတစ္ပါးအေမးကို ရဟႏၱာၾကီးတစ္ပါးေျဖပံု (၆-၃-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၀၇။ မာဂ႑ိသုတ္(၉)၊ ပုထုဇဥ္ရဟန္းတစ္ပါးအေမးကို ရဟႏၱာၾကီးတစ္ပါးေျဖပံု (၆-၃-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">608</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VbDyKazxLog&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=609&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VbDyKazxLog&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=609&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၀၈။ အနတၱက အနတၱကို အားကိုးမွားေနပံု တရားေတာ္ (၇-၃-၁၉၅၉) by mogok sayadaw 1 year ago 56 minutes 4 views" title="၆၀၈။ အနတၱက အနတၱကို အားကိုးမွားေနပံု တရားေတာ္ (၇-၃-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၀၈။ အနတၱက အနတၱကို အားကိုးမွားေနပံု တရားေတာ္ (၇-၃-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">609</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ut5VvewXhXE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=610&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ut5VvewXhXE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=610&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၀၉။ တရားေဟာပုဂၢိဳလ္ႏွင့္ တရားနာပုဂၢိဳလ္တို႔ လိုက္နာရမည့္ က်င့္စဥ္တရားေတာ္ (၂၀-၃-၁၉၅၉) by mogok sayadaw 1 year ago 59 minutes 5 views" title="၆၀၉။ တရားေဟာပုဂၢိဳလ္ႏွင့္ တရားနာပုဂၢိဳလ္တို႔ လိုက္နာရမည့္ က်င့္စဥ္တရားေတာ္ (၂၀-၃-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၀၉။ တရားေဟာပုဂၢိဳလ္ႏွင့္ တရားနာပုဂၢိဳလ္တို႔ လိုက္နာရမည့္ က်င့္စဥ္တရားေတာ္ (၂၀-၃-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">610</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WxstrurUN3A&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=611&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WxstrurUN3A&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=611&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၁၀။ ၀ိပႆနာလမ္းမွ နိဗၺာန္သြားႏိုင္ပံု တရားေတာ္ (၂၃-၃-၁၉၅၉) by mogok sayadaw 1 year ago 57 minutes 4 views" title="၆၁၀။ ၀ိပႆနာလမ္းမွ နိဗၺာန္သြားႏိုင္ပံု တရားေတာ္ (၂၃-၃-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၁၀။ ၀ိပႆနာလမ္းမွ နိဗၺာန္သြားႏိုင္ပံု တရားေတာ္ (၂၃-၃-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">611</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=c6o_LU1D8WY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=612&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=c6o_LU1D8WY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=612&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၁၁။ သညာေၾကာင့္ မိစၦာဒိ႒ိျဖစ္ပံုတရားေတာ္ (၂၃-၃-၁၉၅၉) by mogok sayadaw 1 year ago 56 minutes 6 views" title="၆၁၁။ သညာေၾကာင့္ မိစၦာဒိ႒ိျဖစ္ပံုတရားေတာ္ (၂၃-၃-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၁၁။ သညာေၾကာင့္ မိစၦာဒိ႒ိျဖစ္ပံုတရားေတာ္ (၂၃-၃-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">612</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=dYi2UBn8mZI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=613&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=dYi2UBn8mZI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=613&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၁၂။ ဒုမၶိေတၱာေၾကာင့္ မိစၦာဒိ႒ိျဖစ္ပံုတရားေတာ္ (၂၆-၃-၁၉၅၉) by mogok sayadaw 1 year ago 58 minutes 6 views" title="၆၁၂။ ဒုမၶိေတၱာေၾကာင့္ မိစၦာဒိ႒ိျဖစ္ပံုတရားေတာ္ (၂၆-၃-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၁၂။ ဒုမၶိေတၱာေၾကာင့္ မိစၦာဒိ႒ိျဖစ္ပံုတရားေတာ္ (၂၆-၃-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">613</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=F5IweYs1il8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=614&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=F5IweYs1il8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=614&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၁၃။ ပရိေတာေပါေသာေၾကာင့္ မိစၱာဒိ႒ိျဖစ္ပံုတရားေတာ္ (၂၆-၃-၁၉၅၉) by mogok sayadaw 1 year ago 48 minutes 6 views" title="၆၁၃။ ပရိေတာေပါေသာေၾကာင့္ မိစၱာဒိ႒ိျဖစ္ပံုတရားေတာ္ (၂၆-၃-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၁၃။ ပရိေတာေပါေသာေၾကာင့္ မိစၱာဒိ႒ိျဖစ္ပံုတရားေတာ္ (၂၆-၃-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">614</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4Yu0-pNqf08&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=615&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4Yu0-pNqf08&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=615&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၁၄။ အရြယ္သံုးပါး တစ္ပါးပါးတြင္ တရားအားထုတ္ပါ တရားေတာ္ (၇-၄-၁၉၅၉) by mogok sayadaw 1 year ago 51 minutes 12 views" title="၆၁၄။ အရြယ္သံုးပါး တစ္ပါးပါးတြင္ တရားအားထုတ္ပါ တရားေတာ္ (၇-၄-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၁၄။ အရြယ္သံုးပါး တစ္ပါးပါးတြင္ တရားအားထုတ္ပါ တရားေတာ္ (၇-၄-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">615</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=e6icIbx1P1w&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=616&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=e6icIbx1P1w&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=616&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၁၅။ မာလုက်ပုတၱဥပမာျပ စုတိပဋိသေႏၶတရားေတာ္ (၂၆-၄-၁၉၅၉) by mogok sayadaw 1 year ago 56 minutes 12 views" title="၆၁၅။ မာလုက်ပုတၱဥပမာျပ စုတိပဋိသေႏၶတရားေတာ္ (၂၆-၄-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၁၅။ မာလုက်ပုတၱဥပမာျပ စုတိပဋိသေႏၶတရားေတာ္ (၂၆-၄-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">616</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2pQS0mxs5HM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=617&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2pQS0mxs5HM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=617&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၁၆။ စုတိပဋိသေႏၶနိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၂၇-၄-၁၉၅၉) by mogok sayadaw 1 year ago 53 minutes 12 views" title="၆၁၆။ စုတိပဋိသေႏၶနိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၂၇-၄-၁၉၅၉)" style="font-family: ZawGyi-One !important;">
၆၁၆။ စုတိပဋိသေႏၶနိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၂၇-၄-၁၉၅၉)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">617</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=GaPvpIruy5w&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=618&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=GaPvpIruy5w&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=618&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 18 minutes">
1:18:12
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၁၇။ အသိလိုက္ရန္တရားေတာ္ (၁-၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 18 minutes 12 views" title="၆၁၇။ အသိလိုက္ရန္တရားေတာ္ (၁-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၁၇။ အသိလိုက္ရန္တရားေတာ္ (၁-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">618</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=PEBfYgLryO8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=619&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=PEBfYgLryO8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=619&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၁၈။ ဒီခႏၶာပစ္ခ်ၿပီးေနာက္ ေနာက္ခႏၶာမရတာ အေကာင္းဆံုးတရားေတာ္ (၂-၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 14 views" title="၆၁၈။ ဒီခႏၶာပစ္ခ်ၿပီးေနာက္ ေနာက္ခႏၶာမရတာ အေကာင္းဆံုးတရားေတာ္ (၂-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၁၈။ ဒီခႏၶာပစ္ခ်ၿပီးေနာက္ ေနာက္ခႏၶာမရတာ အေကာင္းဆံုးတရားေတာ္ (၂-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">619</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-j__DGsrVxU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=620&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-j__DGsrVxU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=620&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၁၉။ ေ၀ဒနာအနိစၥတရားေတာ္ (၃-၁-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 37 views" title="၆၁၉။ ေ၀ဒနာအနိစၥတရားေတာ္ (၃-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၁၉။ ေ၀ဒနာအနိစၥတရားေတာ္ (၃-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">620</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gW6Ej1w8I84&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=621&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gW6Ej1w8I84&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=621&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၂၀။ အသက္တိုျခင္း ေရာဂါမ်ားျခင္း အေၾကာင္းတရား၊ သကၠပဥၥသုတ္(၁) (၃၀-၁-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 17 views" title="၆၂၀။ အသက္တိုျခင္း ေရာဂါမ်ားျခင္း အေၾကာင္းတရား၊ သကၠပဥၥသုတ္(၁) (၃၀-၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၂၀။ အသက္တိုျခင္း ေရာဂါမ်ားျခင္း အေၾကာင္းတရား၊ သကၠပဥၥသုတ္(၁) (၃၀-၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">621</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mEXPMeVqQps&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=622&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mEXPMeVqQps&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=622&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 17 minutes">
1:17:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၂၁။ ခ်ည္တိုင္ႏွင့္ၾကိဳး၊ ေခြးႏွင့္လည္ပတ္တရားေတာ္ (၄-၂-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 17 minutes 5 views" title="၆၂၁။ ခ်ည္တိုင္ႏွင့္ၾကိဳး၊ ေခြးႏွင့္လည္ပတ္တရားေတာ္ (၄-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၂၁။ ခ်ည္တိုင္ႏွင့္ၾကိဳး၊ ေခြးႏွင့္လည္ပတ္တရားေတာ္ (၄-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">622</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Z189fVmju7g&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=623&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Z189fVmju7g&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=623&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:54
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၂၂။ မဟာပုဏၰမသုတ္တရားေတာ္(၂) (၁၃-၂-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 2 views" title="၆၂၂။ မဟာပုဏၰမသုတ္တရားေတာ္(၂) (၁၃-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၂၂။ မဟာပုဏၰမသုတ္တရားေတာ္(၂) (၁၃-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">623</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=v27R-kNJhBY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=624&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=v27R-kNJhBY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=624&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၂၃။ ေသနာေပၚ၍ေသသည္ တရားေတာ္၊ ၀ိမုတၱာယတနသုတ္ (၁၄-၂-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 2 minutes 10 views" title="၆၂၃။ ေသနာေပၚ၍ေသသည္ တရားေတာ္၊ ၀ိမုတၱာယတနသုတ္ (၁၄-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၂၃။ ေသနာေပၚ၍ေသသည္ တရားေတာ္၊ ၀ိမုတၱာယတနသုတ္ (၁၄-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">624</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=sGgZGU78Npg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=625&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=sGgZGU78Npg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=625&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၂၄။ ကမၼ၀ါဒီ သႆတဒိ႒ိတရားေတာ္ (၁၄-၂-၁၉၆၀) by mogok sayadaw 1 year ago 51 minutes 4 views" title="၆၂၄။ ကမၼ၀ါဒီ သႆတဒိ႒ိတရားေတာ္ (၁၄-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၂၄။ ကမၼ၀ါဒီ သႆတဒိ႒ိတရားေတာ္ (၁၄-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">625</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=yKwS1S5KbcU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=626&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=yKwS1S5KbcU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=626&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၂၅။ ေနခ်ိန္မွာ ေသခ်ိန္မႏုတ္နဲ႔၊ မဂၢျဗဟၼစရိယက်င့္ရန္ တိုက္တြန္းတရားေတာ္ (၂၀-၂-၁၉၆၀) by mogok sayadaw 1 year ago 50 minutes 17 views" title="၆၂၅။ ေနခ်ိန္မွာ ေသခ်ိန္မႏုတ္နဲ႔၊ မဂၢျဗဟၼစရိယက်င့္ရန္ တိုက္တြန္းတရားေတာ္ (၂၀-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၂၅။ ေနခ်ိန္မွာ ေသခ်ိန္မႏုတ္နဲ႔၊ မဂၢျဗဟၼစရိယက်င့္ရန္ တိုက္တြန္းတရားေတာ္ (၂၀-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">626</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5eh22hTlsPQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=627&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5eh22hTlsPQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=627&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၂၆။ ခႏၶာကေျပာတာ ေစာင့္ၾကည့္ပါ(ေမ်ာက္ဥပမာျပ) (၂၀-၂-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 6 views" title="၆၂၆။ ခႏၶာကေျပာတာ ေစာင့္ၾကည့္ပါ(ေမ်ာက္ဥပမာျပ) (၂၀-၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၂၆။ ခႏၶာကေျပာတာ ေစာင့္ၾကည့္ပါ(ေမ်ာက္ဥပမာျပ) (၂၀-၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">627</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TIBanWyCneA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=628&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TIBanWyCneA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=628&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၂၇။ နိဗၺာန္သည္ ဆုေတာင္း၍မရႏိုင္ပံု (၃-၃-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 10 views" title="၆၂၇။ နိဗၺာန္သည္ ဆုေတာင္း၍မရႏိုင္ပံု (၃-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၂၇။ နိဗၺာန္သည္ ဆုေတာင္း၍မရႏိုင္ပံု (၃-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">628</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=IEmYhrb2K1Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=629&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=IEmYhrb2K1Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=629&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၂၈။ အိုသံၾကားသည္ႏွင့္ ထိတ္လန္႔ပံုတရားေတာ္(ခဒိယ၀နိယ ေရ၀တမေထရ္) (၅-၃-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၆၂၈။ အိုသံၾကားသည္ႏွင့္ ထိတ္လန္႔ပံုတရားေတာ္(ခဒိယ၀နိယ ေရ၀တမေထရ္) (၅-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၂၈။ အိုသံၾကားသည္ႏွင့္ ထိတ္လန္႔ပံုတရားေတာ္(ခဒိယ၀နိယ ေရ၀တမေထရ္) (၅-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">629</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1YQOTYLxS-g&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=630&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1YQOTYLxS-g&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=630&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၂၉။ သစၥာေလးပါးတရားေတာ္ (၇-၃-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 47 views" title="၆၂၉။ သစၥာေလးပါးတရားေတာ္ (၇-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၂၉။ သစၥာေလးပါးတရားေတာ္ (၇-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">630</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=0bqV-UrPP7U&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=631&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=0bqV-UrPP7U&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=631&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၃၀။ ရွင္အႏုရာဓ သစ္ပင္ဥပမာျပတရားေတာ္ (၁၁-၃-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 5 views" title="၆၃၀။ ရွင္အႏုရာဓ သစ္ပင္ဥပမာျပတရားေတာ္ (၁၁-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၃၀။ ရွင္အႏုရာဓ သစ္ပင္ဥပမာျပတရားေတာ္ (၁၁-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">631</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7kjVKbVyslY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=632&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7kjVKbVyslY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=632&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၃၁။ ရွင္အႏုရာဓအား ဘုရားက ဒိ႒ိ၀ိစိကိစၦာ ခြါေပးပံုတရားေတာ္ (၁၂-၃-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 4 views" title="၆၃၁။ ရွင္အႏုရာဓအား ဘုရားက ဒိ႒ိ၀ိစိကိစၦာ ခြါေပးပံုတရားေတာ္ (၁၂-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၃၁။ ရွင္အႏုရာဓအား ဘုရားက ဒိ႒ိ၀ိစိကိစၦာ ခြါေပးပံုတရားေတာ္ (၁၂-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">632</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=g3NrUapogGQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=633&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=g3NrUapogGQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=633&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၃၂။ ႏွလံုးသြင္းမွန္၍ အားထုတ္က နိဗၺာန္ေရာက္ပံု တရားေတာ္ (၁၃-၃-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 5 views" title="၆၃၂။ ႏွလံုးသြင္းမွန္၍ အားထုတ္က နိဗၺာန္ေရာက္ပံု တရားေတာ္ (၁၃-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၃၂။ ႏွလံုးသြင္းမွန္၍ အားထုတ္က နိဗၺာန္ေရာက္ပံု တရားေတာ္ (၁၃-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">633</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=UWv1lncPP4U&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=634&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=UWv1lncPP4U&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=634&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၃၃။ ျဖစ္ပ်က္ျမင္ေအာင္ လုပ္ျခင္းသည္ မဂၢသစၥာ(ၾကက္မၾကီးဥပမာ) (၁၇-၃-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၆၃၃။ ျဖစ္ပ်က္ျမင္ေအာင္ လုပ္ျခင္းသည္ မဂၢသစၥာ(ၾကက္မၾကီးဥပမာ) (၁၇-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၃၃။ ျဖစ္ပ်က္ျမင္ေအာင္ လုပ္ျခင္းသည္ မဂၢသစၥာ(ၾကက္မၾကီးဥပမာ) (၁၇-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">634</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=_ab7gh_gWQM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=635&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=_ab7gh_gWQM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=635&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၃၄။ ကာလိက ႏွိပ္စက္တတ္ပံုႏွင့္ သႏိၵ႒ိေကာ ေက်းဇူးျပဳပံု (၂၉-၃-၁၉၆၀) by mogok sayadaw 1 year ago 58 minutes 3 views" title="၆၃၄။ ကာလိက ႏွိပ္စက္တတ္ပံုႏွင့္ သႏိၵ႒ိေကာ ေက်းဇူးျပဳပံု (၂၉-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၃၄။ ကာလိက ႏွိပ္စက္တတ္ပံုႏွင့္ သႏိၵ႒ိေကာ ေက်းဇူးျပဳပံု (၂၉-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">635</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=PiqPro6dDoM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=636&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=PiqPro6dDoM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=636&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၃၅။ အေ၀လကႆဖႏွင့္ ဘုရားအေမးအေျဖ (၃၀-၃-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 9 views" title="၆၃၅။ အေ၀လကႆဖႏွင့္ ဘုရားအေမးအေျဖ (၃၀-၃-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၃၅။ အေ၀လကႆဖႏွင့္ ဘုရားအေမးအေျဖ (၃၀-၃-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">636</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=nplGenSR2VA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=637&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=nplGenSR2VA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=637&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၃၆။ သစၥာဆိုက္ေအာင္ ပညာနဲ႔ပြားပါ (၈-၄-၁၉၆၀) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၆၃၆။ သစၥာဆိုက္ေအာင္ ပညာနဲ႔ပြားပါ (၈-၄-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၃၆။ သစၥာဆိုက္ေအာင္ ပညာနဲ႔ပြားပါ (၈-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">637</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NLtB6a_2iFU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=638&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NLtB6a_2iFU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=638&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၃၇။ လူမိုက္ႏွင့္လူလိမၼာ ထူးျခားပံု (၁၀-၄-၁၉၆၀) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၆၃၇။ လူမိုက္ႏွင့္လူလိမၼာ ထူးျခားပံု (၁၀-၄-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၃၇။ လူမိုက္ႏွင့္လူလိမၼာ ထူးျခားပံု (၁၀-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">638</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Thcp66fxmo4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=639&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Thcp66fxmo4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=639&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၃၈။ စိတ္ကို လံုျခံဳေအာင္ထားႏိုင္လွ်င္ နိဗၺာန္ေရာက္ႏိုင္ပံု တရားေတာ္ (၁၁-၄-၁၉၆၀) by mogok sayadaw 1 year ago 51 minutes 7 views" title="၆၃၈။ စိတ္ကို လံုျခံဳေအာင္ထားႏိုင္လွ်င္ နိဗၺာန္ေရာက္ႏိုင္ပံု တရားေတာ္ (၁၁-၄-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၃၈။ စိတ္ကို လံုျခံဳေအာင္ထားႏိုင္လွ်င္ နိဗၺာန္ေရာက္ႏိုင္ပံု တရားေတာ္ (၁၁-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">639</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Z6_T0bIyffM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=640&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Z6_T0bIyffM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=640&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:56
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၃၉။ သာသာနာတြင္းသမၼာဒိ႒ိႏွင့္ သာသနာပသမၼာဒိ႒ိ (၁၂-၄-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၆၃၉။ သာသာနာတြင္းသမၼာဒိ႒ိႏွင့္ သာသနာပသမၼာဒိ႒ိ (၁၂-၄-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၃၉။ သာသာနာတြင္းသမၼာဒိ႒ိႏွင့္ သာသနာပသမၼာဒိ႒ိ (၁၂-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">640</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=GTjM_IernWM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=641&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=GTjM_IernWM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=641&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၆၄၀။ သမၸသနသုတ္ (၁၃-၄-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 4 views" title="၆၄၀။ သမၸသနသုတ္ (၁၃-၄-၁၉၆၀)">
၆၄၀။ သမၸသနသုတ္ (၁၃-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">641</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=o7Lu5ZCZxJo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=642&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=o7Lu5ZCZxJo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=642&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၄၁။ မဂၢင္ေဖာင္ဖြဲ႔ထားၾကရန္ တရားေတာ္၊ ရွင္ဆႏၵ(၁) (၁၅-၄-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၆၄၁။ မဂၢင္ေဖာင္ဖြဲ႔ထားၾကရန္ တရားေတာ္၊ ရွင္ဆႏၵ(၁) (၁၅-၄-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၄၁။ မဂၢင္ေဖာင္ဖြဲ႔ထားၾကရန္ တရားေတာ္၊ ရွင္ဆႏၵ(၁) (၁၅-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">642</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wmKt3bs2x30&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=643&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wmKt3bs2x30&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=643&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/wmKt3bs2x30/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDK9N3Z-IjGNUuTgNcepaBz0FJlqA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၄၂။ မဂၢင္ေဖာင္ဖြဲ႔ထားၾကရန္ တရားေတာ္၊ ရွင္ဆႏၵ(၂) (၁၆-၄-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 4 views" title="၆၄၂။ မဂၢင္ေဖာင္ဖြဲ႔ထားၾကရန္ တရားေတာ္၊ ရွင္ဆႏၵ(၂) (၁၆-၄-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၄၂။ မဂၢင္ေဖာင္ဖြဲ႔ထားၾကရန္ တရားေတာ္၊ ရွင္ဆႏၵ(၂) (၁၆-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">643</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=vaiJqhXVjHU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=644&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=vaiJqhXVjHU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=644&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/vaiJqhXVjHU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLABs6Eu50fLa3O5RVBjzo-vf1Jdfg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၄၃။ ကံအမိ ကံအဖမွ ဉာဏ္အမိ ဉာဏ္အဖသို႔ ကူးေျပာင္းရန္တရားေတာ္ (၁၇-၄-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 4 views" title="၆၄၃။ ကံအမိ ကံအဖမွ ဉာဏ္အမိ ဉာဏ္အဖသို႔ ကူးေျပာင္းရန္တရားေတာ္ (၁၇-၄-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၄၃။ ကံအမိ ကံအဖမွ ဉာဏ္အမိ ဉာဏ္အဖသို႔ ကူးေျပာင္းရန္တရားေတာ္ (၁၇-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">644</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=c1q1PFEpHxM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=645&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=c1q1PFEpHxM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=645&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/c1q1PFEpHxM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCSwl09kq-By2tJ-xoPm34KL2CVAg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၄၄။ ကာလ၏ စားဖတ္၀ါးဖတ္ မျဖစ္ေစေရး တရားေတာ္ (၁၉-၄-၁၉၆၀) by mogok sayadaw 1 year ago 56 minutes 4 views" title="၆၄၄။ ကာလ၏ စားဖတ္၀ါးဖတ္ မျဖစ္ေစေရး တရားေတာ္ (၁၉-၄-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၄၄။ ကာလ၏ စားဖတ္၀ါးဖတ္ မျဖစ္ေစေရး တရားေတာ္ (၁၉-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">645</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wHjqtdHLwdE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=646&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wHjqtdHLwdE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=646&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/wHjqtdHLwdE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBA-vay5fFD3AW8z_JioPxBwhjzUw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၄၅။ သမၼာဒိ႒ိငါးမ်ိဳး တရားေတာ္ (၂၀-၄-၁၉၆၀) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၆၄၅။ သမၼာဒိ႒ိငါးမ်ိဳး တရားေတာ္ (၂၀-၄-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၄၅။ သမၼာဒိ႒ိငါးမ်ိဳး တရားေတာ္ (၂၀-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">646</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ssPdrJQjlj8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=647&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ssPdrJQjlj8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=647&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ssPdrJQjlj8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLApa5fN-RD-Ca8i99kl2gxzlIorQg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၄၆။ သမုဒၵရာေျခာက္စင္းကို ခမ္းေျခာက္ေအာင္ရွဳနည္း တရားေတာ္ (၂၁-၄-၁၉၆၀) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၆၄၆။ သမုဒၵရာေျခာက္စင္းကို ခမ္းေျခာက္ေအာင္ရွဳနည္း တရားေတာ္ (၂၁-၄-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၄၆။ သမုဒၵရာေျခာက္စင္းကို ခမ္းေျခာက္ေအာင္ရွဳနည္း တရားေတာ္ (၂၁-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">647</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Uayexq-zIfg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=648&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Uayexq-zIfg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=648&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Uayexq-zIfg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD4kUUVN6ID58RJx5LQjzrf1PYr1g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၄၇။ သံသရာ့သစ္ငုတ္အျဖစ္မွ လြတ္ေျမာက္ေရး (၂၃-၄-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 5 views" title="၆၄၇။ သံသရာ့သစ္ငုတ္အျဖစ္မွ လြတ္ေျမာက္ေရး (၂၃-၄-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၄၇။ သံသရာ့သစ္ငုတ္အျဖစ္မွ လြတ္ေျမာက္ေရး (၂၃-၄-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">648</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WZ-rP1ei4do&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=649&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WZ-rP1ei4do&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=649&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/WZ-rP1ei4do/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC_JWcrTeJUvI4som-jhvlG-Nyk6Q"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၄၈။ အ၀ိဇၨာဥခြံခြါေပးပံု(၁) (၂၀-၆-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 5 views" title="၆၄၈။ အ၀ိဇၨာဥခြံခြါေပးပံု(၁) (၂၀-၆-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၄၈။ အ၀ိဇၨာဥခြံခြါေပးပံု(၁) (၂၀-၆-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">649</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5dHqiH0MAPQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=650&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5dHqiH0MAPQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=650&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/5dHqiH0MAPQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAMv_3FzBwIySlHBsa74EisNFk6dw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၄၉။ အ၀ိဇၨာဥခြံခြါေပးပံု(၂) (၂၁-၆-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 3 views" title="၆၄၉။ အ၀ိဇၨာဥခြံခြါေပးပံု(၂) (၂၁-၆-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၄၉။ အ၀ိဇၨာဥခြံခြါေပးပံု(၂) (၂၁-၆-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">650</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=h5PgsiG52os&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=651&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=h5PgsiG52os&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=651&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/h5PgsiG52os/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBU28tMfTFqmQZDdQjhdtLBDSC_KA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၅၀။ အ၀ိဇၨာဥခြံခြါေပးပံု(၃) (၂၂-၆-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 1 view" title="၆၅၀။ အ၀ိဇၨာဥခြံခြါေပးပံု(၃) (၂၂-၆-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၅၀။ အ၀ိဇၨာဥခြံခြါေပးပံု(၃) (၂၂-၆-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">651</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=XY-cO-J7bDk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=652&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=XY-cO-J7bDk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=652&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/XY-cO-J7bDk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCBZ73Yw1LBBqt6FIt620lQeJkGvg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၅၁။ အ၀ိဇၨာဥခြံခြါေပးပံု(၄)၊ မိလိႏၵႏွင့္ ရွင္နာဂသိန္ (၂၃-၆-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 7 views" title="၆၅၁။ အ၀ိဇၨာဥခြံခြါေပးပံု(၄)၊ မိလိႏၵႏွင့္ ရွင္နာဂသိန္ (၂၃-၆-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၅၁။ အ၀ိဇၨာဥခြံခြါေပးပံု(၄)၊ မိလိႏၵႏွင့္ ရွင္နာဂသိန္ (၂၃-၆-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">652</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KyzjanfwyTA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=653&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KyzjanfwyTA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=653&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/KyzjanfwyTA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAyRPkqhrqS3qu0b4BlD_0A0oVcvQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၅၂။ ဒုကၡကိုပိုင္ႏိုင္စြာသိတဲ့ပုဂၢိဳလ္ နိဗၺာန္ေရာက္မည္(ရွင္ဆႏၵ-၃) (၂၄-၆-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 4 views" title="၆၅၂။ ဒုကၡကိုပိုင္ႏိုင္စြာသိတဲ့ပုဂၢိဳလ္ နိဗၺာန္ေရာက္မည္(ရွင္ဆႏၵ-၃) (၂၄-၆-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၅၂။ ဒုကၡကိုပိုင္ႏိုင္စြာသိတဲ့ပုဂၢိဳလ္ နိဗၺာန္ေရာက္မည္(ရွင္ဆႏၵ-၃) (၂၄-၆-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">653</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=HWKtwItbR-Q&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=654&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=HWKtwItbR-Q&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=654&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/HWKtwItbR-Q/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLANC3oxdOj3duYp_Ma8o0rJuV6vhg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၅၃။ သာသနာတြင္းႏွင့္ သာသနာပခြဲျခားပံု၊ သမၼသနသုတ္ (၄-၇-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour 3 views" title="၆၅၃။ သာသနာတြင္းႏွင့္ သာသနာပခြဲျခားပံု၊ သမၼသနသုတ္ (၄-၇-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၅၃။ သာသနာတြင္းႏွင့္ သာသနာပခြဲျခားပံု၊ သမၼသနသုတ္ (၄-၇-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">654</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EHokpvoyXeg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=655&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EHokpvoyXeg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=655&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/EHokpvoyXeg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCp3RtNp7kXHpgCM5EovuBmhnIIlQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၅၄။ ခႏၶာကိုယ္အဆိပ္ပင္ၾကီးကို မဂ္ဓါးသံုးစင္းႏွင့္ျဖတ္ရန္ တရားေတာ္ (၅-၇-၁၉၆၀) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၆၅၄။ ခႏၶာကိုယ္အဆိပ္ပင္ၾကီးကို မဂ္ဓါးသံုးစင္းႏွင့္ျဖတ္ရန္ တရားေတာ္ (၅-၇-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၅၄။ ခႏၶာကိုယ္အဆိပ္ပင္ၾကီးကို မဂ္ဓါးသံုးစင္းႏွင့္ျဖတ္ရန္ တရားေတာ္ (၅-၇-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">655</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WMOJiSq8mXU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=656&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WMOJiSq8mXU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=656&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/WMOJiSq8mXU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAAIzpPIr4wLpGjRCxHGxqa3V0YVQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 6 minutes">
1:06:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၅၅။ ပုဂၢိဳလ္သံုးမ်ိဳး ေရာဂါသည္သံုးေယာက္တရားေတာ္ (၁၃-၇-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 6 minutes 1 view" title="၆၅၅။ ပုဂၢိဳလ္သံုးမ်ိဳး ေရာဂါသည္သံုးေယာက္တရားေတာ္ (၁၃-၇-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၅၅။ ပုဂၢိဳလ္သံုးမ်ိဳး ေရာဂါသည္သံုးေယာက္တရားေတာ္ (၁၃-၇-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">656</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7l9R14ogLbQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=657&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7l9R14ogLbQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=657&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၅၆။ ေနာင္တဖန္ျဖစ္ျခင္းသည္ ဒုကၡ၊ မျဖစ္ျခင္းသည္ သုခတရားေတာ္ (၈-၉-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 9 views" title="၆၅၆။ ေနာင္တဖန္ျဖစ္ျခင္းသည္ ဒုကၡ၊ မျဖစ္ျခင္းသည္ သုခတရားေတာ္ (၈-၉-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၅၆။ ေနာင္တဖန္ျဖစ္ျခင္းသည္ ဒုကၡ၊ မျဖစ္ျခင္းသည္ သုခတရားေတာ္ (၈-၉-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">657</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=amcSXs3NqPM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=658&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=amcSXs3NqPM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=658&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၅၇။ တရားအားမထုတ္လွ်င္ ေဘးအမ်ဳိးမ်ဳိးေစာင့္ေနတာနဲ႔တူပံု (၉-၉-၁၉၆၀) by mogok sayadaw 1 year ago 58 minutes 3 views" title="၆၅၇။ တရားအားမထုတ္လွ်င္ ေဘးအမ်ဳိးမ်ဳိးေစာင့္ေနတာနဲ႔တူပံု (၉-၉-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၅၇။ တရားအားမထုတ္လွ်င္ ေဘးအမ်ဳိးမ်ဳိးေစာင့္ေနတာနဲ႔တူပံု (၉-၉-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">658</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=UXoWWk5jas0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=659&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=UXoWWk5jas0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=659&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၅၈။ ဩပနယ်ိေကာတရားေတာ္(၁) (၁၀-၉-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 13 views" title="၆၅၈။ ဩပနယ်ိေကာတရားေတာ္(၁) (၁၀-၉-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၅၈။ ဩပနယ်ိေကာတရားေတာ္(၁) (၁၀-၉-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">659</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=0BTVY5r6eyU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=660&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=0BTVY5r6eyU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=660&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၅၉။ ဩပနယ်ိေကာတရားေတာ္(၂) (၁၁-၉-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 3 views" title="၆၅၉။ ဩပနယ်ိေကာတရားေတာ္(၂) (၁၁-၉-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၅၉။ ဩပနယ်ိေကာတရားေတာ္(၂) (၁၁-၉-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">660</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=6-nsDbCvB-Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=661&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=6-nsDbCvB-Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=661&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၆၀။ သမၼသနသုတ္၊ ကိုယ့္ကိုယ္ကို စံုစမ္းပါ(၁) (၁၃-၉-၁၉၆၀) by mogok sayadaw 1 year ago 50 minutes 4 views" title="၆၆၀။ သမၼသနသုတ္၊ ကိုယ့္ကိုယ္ကို စံုစမ္းပါ(၁) (၁၃-၉-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၆၀။ သမၼသနသုတ္၊ ကိုယ့္ကိုယ္ကို စံုစမ္းပါ(၁) (၁၃-၉-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">661</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=L6aYrbkhpYg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=662&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=L6aYrbkhpYg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=662&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၆၁။ သမၼသနသုတ္၊ ကိုယ့္ကိုယ္ကို စံုစမ္းပါ(၁) (၁၄-၉-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 5 views" title="၆၆၁။ သမၼသနသုတ္၊ ကိုယ့္ကိုယ္ကို စံုစမ္းပါ(၁) (၁၄-၉-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၆၁။ သမၼသနသုတ္၊ ကိုယ့္ကိုယ္ကို စံုစမ္းပါ(၁) (၁၄-၉-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">662</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=IwISOkmcKzQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=663&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=IwISOkmcKzQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=663&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 4 minutes">
1:04:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၆၂။ ဦးသံဒိုင္သို႔ အလုပ္ေပးတရားေတာ္ (၁၁-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 4 minutes 16 views" title="၆၆၂။ ဦးသံဒိုင္သို႔ အလုပ္ေပးတရားေတာ္ (၁၁-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၆၂။ ဦးသံဒိုင္သို႔ အလုပ္ေပးတရားေတာ္ (၁၁-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">663</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hjjaKW0bKhk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=664&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hjjaKW0bKhk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=664&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၆၃။ ဣႆာႏွင့္ မစၦရိယရွင္းပံု၊ သကၠပဉာသုတ္ အမွတ္(၃) (၁၄-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 6 views" title="၆၆၃။ ဣႆာႏွင့္ မစၦရိယရွင္းပံု၊ သကၠပဉာသုတ္ အမွတ္(၃) (၁၄-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၆၃။ ဣႆာႏွင့္ မစၦရိယရွင္းပံု၊ သကၠပဉာသုတ္ အမွတ္(၃) (၁၄-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">664</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=nIMIZtypXjM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=665&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=nIMIZtypXjM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=665&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 7 minutes">
1:07:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၆၄။ ပဋိစၥသမုပၸါဒ္ဆက္ပံု တရားေတာ္ (၁၅-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 7 minutes 8 views" title="၆၆၄။ ပဋိစၥသမုပၸါဒ္ဆက္ပံု တရားေတာ္ (၁၅-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၆၄။ ပဋိစၥသမုပၸါဒ္ဆက္ပံု တရားေတာ္ (၁၅-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">665</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=F2DYuuQANV4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=666&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=F2DYuuQANV4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=666&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၆၆၅။ အဂၢိ၀စၦသုတ္ (၁၆-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 2 minutes 5 views" title="၆၆၅။ အဂၢိ၀စၦသုတ္ (၁၆-၁၁-၁၉၆၀)">
၆၆၅။ အဂၢိ၀စၦသုတ္ (၁၆-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">666</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Yz5ZTKlEfmU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=667&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Yz5ZTKlEfmU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=667&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၆၆။ အ၀ိဇၨာသခၤါရတရားေတာ္ (၁၈-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 59 minutes 280 views" title="၆၆၆။ အ၀ိဇၨာသခၤါရတရားေတာ္ (၁၈-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၆၆။ အ၀ိဇၨာသခၤါရတရားေတာ္ (၁၈-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">667</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CJ3KM1sbfxo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=668&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CJ3KM1sbfxo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=668&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၆၇။ ေတ၀ိဇၨသုတ္ တရားေတာ္ (၁၉-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 57 minutes 6 views" title="၆၆၇။ ေတ၀ိဇၨသုတ္ တရားေတာ္ (၁၉-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၆၇။ ေတ၀ိဇၨသုတ္ တရားေတာ္ (၁၉-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">668</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=IH_-TUoUmM4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=669&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=IH_-TUoUmM4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=669&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 3 minutes">
1:03:17
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၆၈။ ေစတနာကံ သခၤါရတရားေတာ္ (၂၃-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 3 minutes 10 views" title="၆၆၈။ ေစတနာကံ သခၤါရတရားေတာ္ (၂၃-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၆၈။ ေစတနာကံ သခၤါရတရားေတာ္ (၂၃-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">669</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=a7lj7mW9KC0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=670&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=a7lj7mW9KC0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=670&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 19 minutes">
1:19:17
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၆၉။ ကိုယ့္အေသကိုယ္ၾကည့္တာ ၀ိပႆနာျဖစ္ပံု၊ သုသိမ၀တၳဳ (၂၅-၁၁-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 19 minutes 10 views" title="၆၆၉။ ကိုယ့္အေသကိုယ္ၾကည့္တာ ၀ိပႆနာျဖစ္ပံု၊ သုသိမ၀တၳဳ (၂၅-၁၁-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၆၉။ ကိုယ့္အေသကိုယ္ၾကည့္တာ ၀ိပႆနာျဖစ္ပံု၊ သုသိမ၀တၳဳ (၂၅-၁၁-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">670</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fwOLzfmhv9Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=671&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fwOLzfmhv9Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=671&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၇၀။ သမၼသနသုတ္တရားေတာ္(၁) (၁-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 53 minutes 4 views" title="၆၇၀။ သမၼသနသုတ္တရားေတာ္(၁) (၁-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၇၀။ သမၼသနသုတ္တရားေတာ္(၁) (၁-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">671</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wjucJz48jB8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=672&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wjucJz48jB8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=672&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 18 minutes">
1:18:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၇၁။ သမၼသနသုတ္တရားေတာ္(၂) (၂-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 18 minutes 3 views" title="၆၇၁။ သမၼသနသုတ္တရားေတာ္(၂) (၂-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၇၁။ သမၼသနသုတ္တရားေတာ္(၂) (၂-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">672</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NMA38kvjn8Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=673&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NMA38kvjn8Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=673&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 16 minutes">
1:16:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၇၂။ တဏွာမာနခ်ဳပ္ ဒိ႒ိျဖဳတ္ေရး တရားေတာ္ (၁၀-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 16 minutes 3 views" title="၆၇၂။ တဏွာမာနခ်ဳပ္ ဒိ႒ိျဖဳတ္ေရး တရားေတာ္ (၁၀-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၇၂။ တဏွာမာနခ်ဳပ္ ဒိ႒ိျဖဳတ္ေရး တရားေတာ္ (၁၀-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">673</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=HiG1HQ73XiA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=674&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=HiG1HQ73XiA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=674&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 15 minutes">
1:15:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၇၃။ အိမ္တြင္း ပဋိစၥသမုပၸါဒ္တရားေတာ္ (၁၆-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 15 minutes 6 views" title="၆၇၃။ အိမ္တြင္း ပဋိစၥသမုပၸါဒ္တရားေတာ္ (၁၆-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၇၃။ အိမ္တြင္း ပဋိစၥသမုပၸါဒ္တရားေတာ္ (၁၆-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">674</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jOtupX9rSbs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=675&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jOtupX9rSbs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=675&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၇၄။ သခၤါရတရား ကံကျပဳျပင္ထားပံုတရားေတာ္ (၁၈-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 45 minutes 4 views" title="၆၇၄။ သခၤါရတရား ကံကျပဳျပင္ထားပံုတရားေတာ္ (၁၈-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၇၄။ သခၤါရတရား ကံကျပဳျပင္ထားပံုတရားေတာ္ (၁၈-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">675</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TlTY49hj2Ps&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=676&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TlTY49hj2Ps&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=676&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၇၅။ အဓိပတိသံုးပါးထား၍ တရားအားထုတ္ပါ တရားေတာ္ (၁၈-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 54 minutes 9 views" title="၆၇၅။ အဓိပတိသံုးပါးထား၍ တရားအားထုတ္ပါ တရားေတာ္ (၁၈-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၇၅။ အဓိပတိသံုးပါးထား၍ တရားအားထုတ္ပါ တရားေတာ္ (၁၈-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">676</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Q_40ViMGTgs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=677&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Q_40ViMGTgs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=677&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 16 minutes">
1:16:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၇၆။ ဒိ႒ိႏွင့္ ၀ိစိကိစၦာသတ္နည္း တရားေတာ္ (၂၄-၁၂-၁၉၆၀) by mogok sayadaw 1 year ago 1 hour, 16 minutes 4 views" title="၆၇၆။ ဒိ႒ိႏွင့္ ၀ိစိကိစၦာသတ္နည္း တရားေတာ္ (၂၄-၁၂-၁၉၆၀)" style="font-family: ZawGyi-One !important;">
၆၇၆။ ဒိ႒ိႏွင့္ ၀ိစိကိစၦာသတ္နည္း တရားေတာ္ (၂၄-၁၂-၁၉၆၀)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">677</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mu-yYHMEHeA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=678&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mu-yYHMEHeA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=678&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၇၇။ သခၤါရတရား အနိစၥေပၚေအာင္ ၾကည့္ရန္တရားေတာ္ (၉-၁-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 6 views" title="၆၇၇။ သခၤါရတရား အနိစၥေပၚေအာင္ ၾကည့္ရန္တရားေတာ္ (၉-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၇၇။ သခၤါရတရား အနိစၥေပၚေအာင္ ၾကည့္ရန္တရားေတာ္ (၉-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">678</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=aNU7_kmH0zs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=679&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=aNU7_kmH0zs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=679&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၇၈။ ႏွလံုးသြင္းမွန္ရန္ အေရးၾကီးပံုတရားေတာ္ (၁၀-၁-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 10 views" title="၆၇၈။ ႏွလံုးသြင္းမွန္ရန္ အေရးၾကီးပံုတရားေတာ္ (၁၀-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၇၈။ ႏွလံုးသြင္းမွန္ရန္ အေရးၾကီးပံုတရားေတာ္ (၁၀-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">679</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=h4aDw84rGkk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=680&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=h4aDw84rGkk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=680&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 19 minutes">
1:19:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၇၉။ သားေကာင္ေျခာက္ေကာင္ ဥပမာျပ၊ ဆပၸာဏေကာပမသုတ္ တရားေတာ္ (၁၅-၁-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 19 minutes 5 views" title="၆၇၉။ သားေကာင္ေျခာက္ေကာင္ ဥပမာျပ၊ ဆပၸာဏေကာပမသုတ္ တရားေတာ္ (၁၅-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၇၉။ သားေကာင္ေျခာက္ေကာင္ ဥပမာျပ၊ ဆပၸာဏေကာပမသုတ္ တရားေတာ္ (၁၅-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">680</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=xZRp2YfqS_A&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=681&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=xZRp2YfqS_A&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=681&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၈၀။ မေသရာ ရွာနည္းတရားေတာ္ (၃၀-၁-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 4 views" title="၆၈၀။ မေသရာ ရွာနည္းတရားေတာ္ (၃၀-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၈၀။ မေသရာ ရွာနည္းတရားေတာ္ (၃၀-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">681</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Qjp_fCzj7UE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=682&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Qjp_fCzj7UE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=682&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၈၁။ သကၠပဥၥသုတ္ တရားေတာ္ (၃၁-၁-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 4 views" title="၆၈၁။ သကၠပဥၥသုတ္ တရားေတာ္ (၃၁-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၈၁။ သကၠပဥၥသုတ္ တရားေတာ္ (၃၁-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">682</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=00nV_xu-F04&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=683&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=00nV_xu-F04&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=683&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:02
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၈၂။ သစၥာသိေအာင္လုပ္ပါ တရားေတာ္ (၃၁-၁-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 5 views" title="၆၈၂။ သစၥာသိေအာင္လုပ္ပါ တရားေတာ္ (၃၁-၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၈၂။ သစၥာသိေအာင္လုပ္ပါ တရားေတာ္ (၃၁-၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">683</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=cEozRs139N8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=684&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=cEozRs139N8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=684&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၈၃။ လူမိုက္ႏွင့္ ပညာရွိထူးျခားပံု (၂၂-၂-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 6 views" title="၆၈၃။ လူမိုက္ႏွင့္ ပညာရွိထူးျခားပံု (၂၂-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၈၃။ လူမိုက္ႏွင့္ ပညာရွိထူးျခားပံု (၂၂-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">684</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=S8FoLAkRLcw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=685&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=S8FoLAkRLcw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=685&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၈၄။ ေ၀ဒနာႏုပႆနာရွဳပြားနည္း တရားေတာ္ (၂၈-၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၆၈၄။ ေ၀ဒနာႏုပႆနာရွဳပြားနည္း တရားေတာ္ (၂၈-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၈၄။ ေ၀ဒနာႏုပႆနာရွဳပြားနည္း တရားေတာ္ (၂၈-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">685</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BwlmttBajrc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=686&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BwlmttBajrc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=686&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၈၅။ နီ၀ရဏတရားငါးပါး ေလာဘ၊ ေဒါသ၊ ထိနမိဒၶ၊ ကုကၠဳစၥ၊ ၀ိစိကိစၦာ၊ (၂၈-၂-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 9 views" title="၆၈၅။ နီ၀ရဏတရားငါးပါး ေလာဘ၊ ေဒါသ၊ ထိနမိဒၶ၊ ကုကၠဳစၥ၊ ၀ိစိကိစၦာ၊ (၂၈-၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၈၅။ နီ၀ရဏတရားငါးပါး ေလာဘ၊ ေဒါသ၊ ထိနမိဒၶ၊ ကုကၠဳစၥ၊ ၀ိစိကိစၦာ၊ (၂၈-၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">686</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gd2xIZhwusw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=687&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gd2xIZhwusw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=687&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၈၆။ (၃၁)ဘံုမွာ မေသရာရွာေပမယ့္ မေတြ႔ႏိုင္ပံုတရားေတာ္ (၃-၃-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 5 views" title="၆၈၆။ (၃၁)ဘံုမွာ မေသရာရွာေပမယ့္ မေတြ႔ႏိုင္ပံုတရားေတာ္ (၃-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၈၆။ (၃၁)ဘံုမွာ မေသရာရွာေပမယ့္ မေတြ႔ႏိုင္ပံုတရားေတာ္ (၃-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">687</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mOfV5EieDmA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=688&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mOfV5EieDmA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=688&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/mOfV5EieDmA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC0DulrnKg-Am9m1ahf7zgYoZTR-A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၈၇။ ေတေဇာဓာတ္ေသမင္းၾကီး ဖန္တီးေနပံုတရားေတာ္ (၁၁-၃-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 4 views" title="၆၈၇။ ေတေဇာဓာတ္ေသမင္းၾကီး ဖန္တီးေနပံုတရားေတာ္ (၁၁-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၈၇။ ေတေဇာဓာတ္ေသမင္းၾကီး ဖန္တီးေနပံုတရားေတာ္ (၁၁-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">688</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=FCZw9Vp5PuY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=689&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=FCZw9Vp5PuY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=689&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/FCZw9Vp5PuY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCZVAMeBEQ3Gih6Gm8IXOOPAq_SAQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၈၈။ အနိစၥ၊ ဒုကၡ၊ အနတၱျမင္လွ်င္ ေလာဘ၊ ေဒါသ၊ ေမာဟ ကင္းစင္ေၾကာင္း၊ (၁၂-၃-၁၉၆၁) by mogok sayadaw 1 year ago 50 minutes 47 views" title="၆၈၈။ အနိစၥ၊ ဒုကၡ၊ အနတၱျမင္လွ်င္ ေလာဘ၊ ေဒါသ၊ ေမာဟ ကင္းစင္ေၾကာင္း၊ (၁၂-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၈၈။ အနိစၥ၊ ဒုကၡ၊ အနတၱျမင္လွ်င္ ေလာဘ၊ ေဒါသ၊ ေမာဟ ကင္းစင္ေၾကာင္း၊ (၁၂-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">689</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=q_c9_zgoomA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=690&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=q_c9_zgoomA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=690&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/q_c9_zgoomA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAiJqaybVFHGNxPO_T578_g0gi-Gg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၈၉။ အနိစၥ၀တ သခၤါရာ တရားေတာ္(ကီသုေကာပမသုတ္-၃) (၂၁-၃-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 4 views" title="၆၈၉။ အနိစၥ၀တ သခၤါရာ တရားေတာ္(ကီသုေကာပမသုတ္-၃) (၂၁-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၈၉။ အနိစၥ၀တ သခၤါရာ တရားေတာ္(ကီသုေကာပမသုတ္-၃) (၂၁-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">690</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=00XdVFtrnGo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=691&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=00XdVFtrnGo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=691&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/00XdVFtrnGo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBPrWPGlBm4UMe9VOvzwrsIUCEjAA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၉၀။ တရားနာျခင္းသည္ ဆင္းရဲတြင္းမွ ကယ္တင္ျခင္းအလုပ္ တရားေတာ္ (၂၃-၃-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 7 views" title="၆၉၀။ တရားနာျခင္းသည္ ဆင္းရဲတြင္းမွ ကယ္တင္ျခင္းအလုပ္ တရားေတာ္ (၂၃-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၉၀။ တရားနာျခင္းသည္ ဆင္းရဲတြင္းမွ ကယ္တင္ျခင္းအလုပ္ တရားေတာ္ (၂၃-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">691</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=XfahZiz-eHo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=692&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=XfahZiz-eHo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=692&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/XfahZiz-eHo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAKPY7yrsGVslEwrFBgC_PShY38aQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၉၁။ ခႏၶာပဋိစၥသမုပၸါဒ္နားမလည္ရင္ ဒိ႒ိ ၀ိစိကိစၦာမျပဳတ္ တရားေတာ္ (၂၉-၃-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 35 views" title="၆၉၁။ ခႏၶာပဋိစၥသမုပၸါဒ္နားမလည္ရင္ ဒိ႒ိ ၀ိစိကိစၦာမျပဳတ္ တရားေတာ္ (၂၉-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၉၁။ ခႏၶာပဋိစၥသမုပၸါဒ္နားမလည္ရင္ ဒိ႒ိ ၀ိစိကိစၦာမျပဳတ္ တရားေတာ္ (၂၉-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">692</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=y7-4qG4hRtg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=693&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=y7-4qG4hRtg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=693&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/y7-4qG4hRtg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDpJ0ushrwXoLePFZNh9Hwmp9pknw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၉၂။ ျပံဳးေသ မဲ့ေသတရားေတာ္ (၃၀-၃-၁၉၆၁) by mogok sayadaw 1 year ago 48 minutes 18 views" title="၆၉၂။ ျပံဳးေသ မဲ့ေသတရားေတာ္ (၃၀-၃-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၉၂။ ျပံဳးေသ မဲ့ေသတရားေတာ္ (၃၀-၃-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">693</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=oRUyLsaO5f4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=694&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=oRUyLsaO5f4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=694&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/oRUyLsaO5f4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBe239ZIxOT8pADk_k_DKwQdb_SVA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၉၃။ ၀ိဇၨာႏွင့္ စရဏရွင္း တရားေတာ္ (၁၆-၅-၁၉၆၁) by mogok sayadaw 1 year ago 46 minutes 7 views" title="၆၉၃။ ၀ိဇၨာႏွင့္ စရဏရွင္း တရားေတာ္ (၁၆-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၉၃။ ၀ိဇၨာႏွင့္ စရဏရွင္း တရားေတာ္ (၁၆-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">694</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EuorY49QdDk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=695&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EuorY49QdDk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=695&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/EuorY49QdDk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD0G2x5Is9x2UPUQTRgVA34vfKpMw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:43
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၉၄။ ေသခါနီးေပၚတတ္ေသာ ကုသိုလ္၊ အကုသိုလ္စိတ္ တရားေတာ္ (၂၉-၅-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 36 views" title="၆၉၄။ ေသခါနီးေပၚတတ္ေသာ ကုသိုလ္၊ အကုသိုလ္စိတ္ တရားေတာ္ (၂၉-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၉၄။ ေသခါနီးေပၚတတ္ေသာ ကုသိုလ္၊ အကုသိုလ္စိတ္ တရားေတာ္ (၂၉-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">695</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4ilv1t6sRIQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=696&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4ilv1t6sRIQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=696&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/4ilv1t6sRIQ/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAzgUzixUGTV-9HRTHUp68itP_tqQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၉၅။ မဟာနာမသုတ္၊ ေသခါနီးေဇာ(၅)တန္ တရားေတာ္ (၂၉-၅-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 141 views" title="၆၉၅။ မဟာနာမသုတ္၊ ေသခါနီးေဇာ(၅)တန္ တရားေတာ္ (၂၉-၅-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၉၅။ မဟာနာမသုတ္၊ ေသခါနီးေဇာ(၅)တန္ တရားေတာ္ (၂၉-၅-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">696</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=V6Eks8A1XH8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=697&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=V6Eks8A1XH8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=697&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/V6Eks8A1XH8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBZoX05M6qyTiey9YWSUDyTqKaOMQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၉၆။ ဘုရားအၾကိဳက္ဆံုး ပူေဇာ္နည္း(၁) (၁၃-၆-၁၉၆၁) by mogok sayadaw 1 year ago 46 minutes 106 views" title="၆၉၆။ ဘုရားအၾကိဳက္ဆံုး ပူေဇာ္နည္း(၁) (၁၃-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၉၆။ ဘုရားအၾကိဳက္ဆံုး ပူေဇာ္နည္း(၁) (၁၃-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">697</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Iy1RbzY-h-Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=698&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Iy1RbzY-h-Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=698&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Iy1RbzY-h-Y/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD6q2Jhqi1hd5g3XhYqVrEP2OPi5g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၉၇။ နိဗၺာန္သည္ ကံႏွင့္ဆက္သြယ္၊ အားထုတ္တဲ့ပုဂၢိဳလ္၏ ပစၥည္း (၂၆-၆-၁၉၆၁) by mogok sayadaw 1 year ago 51 minutes 24 views" title="၆၉၇။ နိဗၺာန္သည္ ကံႏွင့္ဆက္သြယ္၊ အားထုတ္တဲ့ပုဂၢိဳလ္၏ ပစၥည္း (၂၆-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၉၇။ နိဗၺာန္သည္ ကံႏွင့္ဆက္သြယ္၊ အားထုတ္တဲ့ပုဂၢိဳလ္၏ ပစၥည္း (၂၆-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">698</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=v61snLaeYVY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=699&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=v61snLaeYVY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=699&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/v61snLaeYVY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBGS0jtdc9yl8DzC7cjr4DqMt14Hg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၉၈။ သစၥာသိဖို႔ အေရးၾကီးဆံုး(ကိစၥဉာဏ္) (၃၁-၆-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 8 views" title="၆၉၈။ သစၥာသိဖို႔ အေရးၾကီးဆံုး(ကိစၥဉာဏ္) (၃၁-၆-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၉၈။ သစၥာသိဖို႔ အေရးၾကီးဆံုး(ကိစၥဉာဏ္) (၃၁-၆-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">699</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=et1ynebudYA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=700&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=et1ynebudYA&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=700&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/et1ynebudYA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB9xpkCxtP_p4qDF_YJAdycytBqhQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၆၉၉။ ကံကိုဉာဏ္ႏွင့္ဆက္မွ လြတ္မည္ တရားေတာ္ (၃၀-၇-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 4 views" title="၆၉၉။ ကံကိုဉာဏ္ႏွင့္ဆက္မွ လြတ္မည္ တရားေတာ္ (၃၀-၇-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၆၉၉။ ကံကိုဉာဏ္ႏွင့္ဆက္မွ လြတ္မည္ တရားေတာ္ (၃၀-၇-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">700</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EMwuj3m809k&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=701&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EMwuj3m809k&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=701&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/EMwuj3m809k/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAiE4rid4bMwxtR0UZumyenhuPmIg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၀၀။ နိဗၺာန္သို႔သြားရာ သခၤါရေလာကႏွင့္ သတၱေလာကရွင္း တရားေတာ္ (၄-၈-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 8 views" title="၇၀၀။ နိဗၺာန္သို႔သြားရာ သခၤါရေလာကႏွင့္ သတၱေလာကရွင္း တရားေတာ္ (၄-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၀၀။ နိဗၺာန္သို႔သြားရာ သခၤါရေလာကႏွင့္ သတၱေလာကရွင္း တရားေတာ္ (၄-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">701</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=iCfyZAQEqmU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=702">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=iCfyZAQEqmU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=702">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/iCfyZAQEqmU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD018tSPmL7AmItIoNCxkDAnPAY7A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၀၁။ နိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၁၀-၈-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 42 views" title="၇၀၁။ နိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၁၀-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၀၁။ နိဗၺာန္ေရာက္ေၾကာင္း တရားေတာ္ (၁၀-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">702</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Ac0LFdLmsws&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=703">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Ac0LFdLmsws&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=703">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Ac0LFdLmsws/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC0fhe8gcxPGBKXr6yci3mTOjkctg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၀၂။ ျဖစ္ေကာင္းေသာ၊ မျဖစ္ေကာင္းေသာ တဏွာမာန တရားေတာ္ (၃၀-၈-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 8 views" title="၇၀၂။ ျဖစ္ေကာင္းေသာ၊ မျဖစ္ေကာင္းေသာ တဏွာမာန တရားေတာ္ (၃၀-၈-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၀၂။ ျဖစ္ေကာင္းေသာ၊ မျဖစ္ေကာင္းေသာ တဏွာမာန တရားေတာ္ (၃၀-၈-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">703</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-BO-8mPYwrA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=704">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-BO-8mPYwrA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=704">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/-BO-8mPYwrA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAT1AkXQS1nuy89jZ8ouethHM09MA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၀၃။ ၀ိပႆနာလုပ္မွ ဒိ႒ိျပဳတ္မယ္ တရားေတာ္ (၉-၉-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 5 views" title="၇၀၃။ ၀ိပႆနာလုပ္မွ ဒိ႒ိျပဳတ္မယ္ တရားေတာ္ (၉-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၀၃။ ၀ိပႆနာလုပ္မွ ဒိ႒ိျပဳတ္မယ္ တရားေတာ္ (၉-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">704</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Jgi0eB6RCgA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=705">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Jgi0eB6RCgA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=705">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Jgi0eB6RCgA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBQ5PP_LO7wCz9SecDiNii2ps8ZVg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="39 minutes">
39:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၀၄။ လူမိုက္ႏွင့္ လူလိမၼာ မဂၢျဗဟၼစရိယ အက်င့္ေၾကာင့္ ကြာျခားပုံတရား (၁၅-၉-၁၉၆၁) by mogok sayadaw 1 year ago 39 minutes 9 views" title="၇၀၄။ လူမိုက္ႏွင့္ လူလိမၼာ မဂၢျဗဟၼစရိယ အက်င့္ေၾကာင့္ ကြာျခားပုံတရား (၁၅-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၀၄။ လူမိုက္ႏွင့္ လူလိမၼာ မဂၢျဗဟၼစရိယ အက်င့္ေၾကာင့္ ကြာျခားပုံတရား (၁၅-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">705</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=n6SA8YPOfGo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=706">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=n6SA8YPOfGo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=706">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/n6SA8YPOfGo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDd8-6KOcULgNxI9wavdVCgPLQ4MA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၀၅။ ကံကုိအတၱယူေသာ ရဟန္းတစ္ပါးတရားေတာ္(ပုဏၰသုတ္-၁) (၂၁-၉-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 6 views" title="၇၀၅။ ကံကုိအတၱယူေသာ ရဟန္းတစ္ပါးတရားေတာ္(ပုဏၰသုတ္-၁) (၂၁-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၀၅။ ကံကုိအတၱယူေသာ ရဟန္းတစ္ပါးတရားေတာ္(ပုဏၰသုတ္-၁) (၂၁-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">706</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zUwHPvcQIUE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=707">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zUwHPvcQIUE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=707">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၀၆။ ဆင္ေသႏွင့္ က်ီးမိုက္ ဥပမာျပတရားေတာ္(အရိနႏၵမ၀တၳဳ-၁) (၂၄-၉-၁၉၆၁) by mogok sayadaw 1 year ago 48 minutes 23 views" title="၇၀၆။ ဆင္ေသႏွင့္ က်ီးမိုက္ ဥပမာျပတရားေတာ္(အရိနႏၵမ၀တၳဳ-၁) (၂၄-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၀၆။ ဆင္ေသႏွင့္ က်ီးမိုက္ ဥပမာျပတရားေတာ္(အရိနႏၵမ၀တၳဳ-၁) (၂၄-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">707</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=58lELQScB3Q&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=708">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=58lELQScB3Q&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=708">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="41 minutes">
41:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၀၇။ ဆင္ေသႏွင့္ က်ီးမိုက္ ဥပမာျပတရားေတာ္(အရိနႏၵမ၀တၳဳ-၂) (၂၄-၉-၁၉၆၁) by mogok sayadaw 1 year ago 41 minutes 41 views" title="၇၀၇။ ဆင္ေသႏွင့္ က်ီးမိုက္ ဥပမာျပတရားေတာ္(အရိနႏၵမ၀တၳဳ-၂) (၂၄-၉-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၀၇။ ဆင္ေသႏွင့္ က်ီးမိုက္ ဥပမာျပတရားေတာ္(အရိနႏၵမ၀တၳဳ-၂) (၂၄-၉-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">708</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=q89vG60Yxac&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=709">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=q89vG60Yxac&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=709">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၀၈။ အျဖဴအမဲစေသာ တရားေလးမ်ိဳးတရားေတာ္ (၅-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 5 views" title="၇၀၈။ အျဖဴအမဲစေသာ တရားေလးမ်ိဳးတရားေတာ္ (၅-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၀၈။ အျဖဴအမဲစေသာ တရားေလးမ်ိဳးတရားေတာ္ (၅-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">709</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=XE-INIaDaq0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=710">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=XE-INIaDaq0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=710">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 18 minutes">
1:18:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၀၉။ ယမမင္းထံ အစစ္ခံရပံုႏွင့္ ငရဲဒုကၡမ်ားအေၾကာင္း တရားေတာ္ (၉-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 18 minutes 9 views" title="၇၀၉။ ယမမင္းထံ အစစ္ခံရပံုႏွင့္ ငရဲဒုကၡမ်ားအေၾကာင္း တရားေတာ္ (၉-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၀၉။ ယမမင္းထံ အစစ္ခံရပံုႏွင့္ ငရဲဒုကၡမ်ားအေၾကာင္း တရားေတာ္ (၉-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">710</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=UPSTm1_b250&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=711">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=UPSTm1_b250&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=711">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="41 minutes">
41:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၁၀။ ဇာတိ၊ ဇရာ၊ ဗ်ာတိ၊ မရဏတို႔၏ ႏွိပ္စက္ခံရေသာ ခႏၶာတရား (၁၃-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 41 minutes 8 views" title="၇၁၀။ ဇာတိ၊ ဇရာ၊ ဗ်ာတိ၊ မရဏတို႔၏ ႏွိပ္စက္ခံရေသာ ခႏၶာတရား (၁၃-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၁၀။ ဇာတိ၊ ဇရာ၊ ဗ်ာတိ၊ မရဏတို႔၏ ႏွိပ္စက္ခံရေသာ ခႏၶာတရား (၁၃-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">711</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=MVsBwuJ-dcE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=712">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=MVsBwuJ-dcE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=712">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="39 minutes">
39:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၁၁။ ဒြါရေျခာက္ေပါက္ သားေကာင္ေျခာက္ေကာင္ ဥပမာျပတရားေတာ္ (၁၈-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 39 minutes 4 views" title="၇၁၁။ ဒြါရေျခာက္ေပါက္ သားေကာင္ေျခာက္ေကာင္ ဥပမာျပတရားေတာ္ (၁၈-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၁၁။ ဒြါရေျခာက္ေပါက္ သားေကာင္ေျခာက္ေကာင္ ဥပမာျပတရားေတာ္ (၁၈-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">712</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=LbsTidGdBw0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=713">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=LbsTidGdBw0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=713">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="41 minutes">
41:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၁၂။ ပုထုဇဥ္ရဟန္းႏွင့္ ရဟႏၱာၾကီးေလးပါး အေမးအေျဖ (၁၉-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 41 minutes 22 views" title="၇၁၂။ ပုထုဇဥ္ရဟန္းႏွင့္ ရဟႏၱာၾကီးေလးပါး အေမးအေျဖ (၁၉-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၁၂။ ပုထုဇဥ္ရဟန္းႏွင့္ ရဟႏၱာၾကီးေလးပါး အေမးအေျဖ (၁၉-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">713</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=V2YpqiHWTCg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=714">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=V2YpqiHWTCg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=714">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="39 minutes">
39:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၁၃။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား မီးအလင္းျဖင့္ ဥပမာျပပံု (၂၁-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 39 minutes 5 views" title="၇၁၃။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား မီးအလင္းျဖင့္ ဥပမာျပပံု (၂၁-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၁၃။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား မီးအလင္းျဖင့္ ဥပမာျပပံု (၂၁-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">714</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=PVNCTRzUzMY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=715">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=PVNCTRzUzMY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=715">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="34 minutes">
34:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၁၄။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား သစ္ပင္ျဖင့္ ဥပမာျပပံု (၂၂-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 34 minutes 6 views" title="၇၁၄။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား သစ္ပင္ျဖင့္ ဥပမာျပပံု (၂၂-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၁၄။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား သစ္ပင္ျဖင့္ ဥပမာျပပံု (၂၂-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">715</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=oqmRwK8gdkk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=716">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=oqmRwK8gdkk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=716">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="44 minutes">
44:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၁၅။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား ႏြား၊ ဓါးႏွင့္ အသားျဖင့္ ဥပမာျပပံု (၂၃-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 44 minutes 20 views" title="၇၁၅။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား ႏြား၊ ဓါးႏွင့္ အသားျဖင့္ ဥပမာျပပံု (၂၃-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၁၅။ ရွင္နႏၵက ဘိကၡဳနီမငါးရာအား ႏြား၊ ဓါးႏွင့္ အသားျဖင့္ ဥပမာျပပံု (၂၃-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">716</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gIUl5M6tBm4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=717">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gIUl5M6tBm4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=717">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၁၆။ နိဗၺာန္ခရီးမေ၀း အနီးေလးတရားေတာ္ (၂၄-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 5 views" title="၇၁၆။ နိဗၺာန္ခရီးမေ၀း အနီးေလးတရားေတာ္ (၂၄-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၁၆။ နိဗၺာန္ခရီးမေ၀း အနီးေလးတရားေတာ္ (၂၄-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">717</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=W8uBTfpD7Vg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=718">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=W8uBTfpD7Vg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=718">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:17
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၁၇။ ဓမၼဒါသ သုတၱန္တရား၊ သတၱ၀ါဘယ္က စပါလိမ့္ (၂၅-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 46 minutes 9 views" title="၇၁၇။ ဓမၼဒါသ သုတၱန္တရား၊ သတၱ၀ါဘယ္က စပါလိမ့္ (၂၅-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၁၇။ ဓမၼဒါသ သုတၱန္တရား၊ သတၱ၀ါဘယ္က စပါလိမ့္ (၂၅-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">718</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7yMnPHOcnfg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=719">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7yMnPHOcnfg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=719">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၇၁၈။ တရားနာတာသည္ ပညာမ်က္လံုးကို လာယူတာ (၂၇-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၇၁၈။ တရားနာတာသည္ ပညာမ်က္လံုးကို လာယူတာ (၂၇-၁၀-၁၉၆၁)">
၇၁၈။ တရားနာတာသည္ ပညာမ်က္လံုးကို လာယူတာ (၂၇-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">719</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=RHW3aJT98IM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=720">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=RHW3aJT98IM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=720">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၁၉။ ထိနမိဒၶေဖ်ာက္နည္းႏွင့္ တဏွာအျမန္သတ္နည္း (၂၈-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၇၁၉။ ထိနမိဒၶေဖ်ာက္နည္းႏွင့္ တဏွာအျမန္သတ္နည္း (၂၈-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၁၉။ ထိနမိဒၶေဖ်ာက္နည္းႏွင့္ တဏွာအျမန္သတ္နည္း (၂၈-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">720</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wAYs1eQTfIs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=721">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wAYs1eQTfIs&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=721">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၂၀။ ရွင္မဟာေကာဋိကႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ(၁) (၂၉-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 40 views" title="၇၂၀။ ရွင္မဟာေကာဋိကႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ(၁) (၂၉-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၂၀။ ရွင္မဟာေကာဋိကႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ(၁) (၂၉-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">721</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=9spDgOTq97c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=722">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=9spDgOTq97c&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=722">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၂၁။ ရွင္မဟာေကာဋိကႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ(၂) (၃၀-၁၀-၁၉၆၁) by mogok sayadaw 1 year ago 59 minutes 35 views" title="၇၂၁။ ရွင္မဟာေကာဋိကႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ(၂) (၃၀-၁၀-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၂၁။ ရွင္မဟာေကာဋိကႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ(၂) (၃၀-၁၀-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">722</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=x755VCiFH00&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=723">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=x755VCiFH00&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=723">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၂၂။ ဘုရားေနာက္ဆံုး ေဟာၾကားေတာ္မူေသာ တရားေတာ္ (၃-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 6 views" title="၇၂၂။ ဘုရားေနာက္ဆံုး ေဟာၾကားေတာ္မူေသာ တရားေတာ္ (၃-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၂၂။ ဘုရားေနာက္ဆံုး ေဟာၾကားေတာ္မူေသာ တရားေတာ္ (၃-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">723</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=448LMNjE3AA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=724">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=448LMNjE3AA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=724">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၂၃။ ပဋိစၥသမုပၸါဒ္ ထြက္လမ္းတရားေတာ္ (၁၀-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 11 views" title="၇၂၃။ ပဋိစၥသမုပၸါဒ္ ထြက္လမ္းတရားေတာ္ (၁၀-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၂၃။ ပဋိစၥသမုပၸါဒ္ ထြက္လမ္းတရားေတာ္ (၁၀-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">724</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=0rNsvnHPpsA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=725">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=0rNsvnHPpsA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=725">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၂၄။ သႏၵိ႒ိေကာတရားေတာ္(၁) (၁၄-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 5 views" title="၇၂၄။ သႏၵိ႒ိေကာတရားေတာ္(၁) (၁၄-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၂၄။ သႏၵိ႒ိေကာတရားေတာ္(၁) (၁၄-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">725</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZalkB75r6ck&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=726">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZalkB75r6ck&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=726">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၂၅။ သတိပညာႏွင့္ရွဳရန္၊ ပဋိစၥသမုပၸါဒ္ တရားေတာ္ (၁၆-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 52 minutes 4 views" title="၇၂၅။ သတိပညာႏွင့္ရွဳရန္၊ ပဋိစၥသမုပၸါဒ္ တရားေတာ္ (၁၆-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၂၅။ သတိပညာႏွင့္ရွဳရန္၊ ပဋိစၥသမုပၸါဒ္ တရားေတာ္ (၁၆-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">726</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=_HNzZNM2EWI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=727">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=_HNzZNM2EWI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=727">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၂၆။ ဓမၼာႏုဓမၼပဋိပတၱိႏွင့္ ကတင္ညဳတ ကတေဒ၀ီတရားေတာ္ (၁၆-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 6 views" title="၇၂၆။ ဓမၼာႏုဓမၼပဋိပတၱိႏွင့္ ကတင္ညဳတ ကတေဒ၀ီတရားေတာ္ (၁၆-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၂၆။ ဓမၼာႏုဓမၼပဋိပတၱိႏွင့္ ကတင္ညဳတ ကတေဒ၀ီတရားေတာ္ (၁၆-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">727</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=15iuz-MIOic&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=728">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=15iuz-MIOic&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=728">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 18 minutes">
1:18:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၂၇။ လူမိုက္ႏွင့္ လူလိမၼာခြဲျခားရန္ တရားေတာ္ (၁၇-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 18 minutes 4 views" title="၇၂၇။ လူမိုက္ႏွင့္ လူလိမၼာခြဲျခားရန္ တရားေတာ္ (၁၇-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၂၇။ လူမိုက္ႏွင့္ လူလိမၼာခြဲျခားရန္ တရားေတာ္ (၁၇-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">728</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=SxxbCJr0eYI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=729">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=SxxbCJr0eYI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=729">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၂၈။ ကာမစၦႏၵ နီ၀ရဏသေဘာႏွင့္ ၎မွလြတ္ေျမာက္ပံု (၁၈-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 4 views" title="၇၂၈။ ကာမစၦႏၵ နီ၀ရဏသေဘာႏွင့္ ၎မွလြတ္ေျမာက္ပံု (၁၈-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၂၈။ ကာမစၦႏၵ နီ၀ရဏသေဘာႏွင့္ ၎မွလြတ္ေျမာက္ပံု (၁၈-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">729</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Jz4fJ9HJN5s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=730">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Jz4fJ9HJN5s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=730">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:58
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၂၉။ ပဋိစၥသမုပၸါဒ္ ပံုစံျပ(၃) (၂၀-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 8 views" title="၇၂၉။ ပဋိစၥသမုပၸါဒ္ ပံုစံျပ(၃) (၂၀-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၂၉။ ပဋိစၥသမုပၸါဒ္ ပံုစံျပ(၃) (၂၀-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">730</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=l5I2kJg94Ao&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=731">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=l5I2kJg94Ao&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=731">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:17
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၃၀။ ႏွလံုးသြင္းမွား၍ ၀ိပလႅာသသံုးပါး ျဖစ္လာပံုတရားေတာ္ (၂၉-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 5 views" title="၇၃၀။ ႏွလံုးသြင္းမွား၍ ၀ိပလႅာသသံုးပါး ျဖစ္လာပံုတရားေတာ္ (၂၉-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၃၀။ ႏွလံုးသြင္းမွား၍ ၀ိပလႅာသသံုးပါး ျဖစ္လာပံုတရားေတာ္ (၂၉-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">731</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WoyIOImQqG4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=732">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WoyIOImQqG4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=732">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၃၁။ အို နာ ေသ ဇာတိတို႔မွ လြတ္ေျမာက္ရာ နိဗၺာန္တရားေတာ္ (၂၉-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 9 views" title="၇၃၁။ အို နာ ေသ ဇာတိတို႔မွ လြတ္ေျမာက္ရာ နိဗၺာန္တရားေတာ္ (၂၉-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၃၁။ အို နာ ေသ ဇာတိတို႔မွ လြတ္ေျမာက္ရာ နိဗၺာန္တရားေတာ္ (၂၉-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">732</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=cea-SjLOWxY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=733">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=cea-SjLOWxY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=733">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:27
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၃၂။ ဒိ႒ိ၀ိပလႅာသ အရူး(၁၂)ပါးတရားေတာ္ (၃၀-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 6 views" title="၇၃၂။ ဒိ႒ိ၀ိပလႅာသ အရူး(၁၂)ပါးတရားေတာ္ (၃၀-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၃၂။ ဒိ႒ိ၀ိပလႅာသ အရူး(၁၂)ပါးတရားေတာ္ (၃၀-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">733</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Z7Fka_Hd0wo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=734">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Z7Fka_Hd0wo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=734">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:54
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၃၃။ နိစၥသညာအေၾကာင္း၊ ပပဥၥတရားေပၚလာပံု တရားေတာ္ (၁-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 57 minutes 5 views" title="၇၃၃။ နိစၥသညာအေၾကာင္း၊ ပပဥၥတရားေပၚလာပံု တရားေတာ္ (၁-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၃၃။ နိစၥသညာအေၾကာင္း၊ ပပဥၥတရားေပၚလာပံု တရားေတာ္ (၁-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">734</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=yPaOWto4jp8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=735">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=yPaOWto4jp8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=735">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၃၄။ ၀ိပလႅာသ တံတိုင္းၾကီး ျဖိဳဖ်က္ရန္ တရားေတာ္ (၂-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 58 minutes 5 views" title="၇၃၄။ ၀ိပလႅာသ တံတိုင္းၾကီး ျဖိဳဖ်က္ရန္ တရားေတာ္ (၂-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၃၄။ ၀ိပလႅာသ တံတိုင္းၾကီး ျဖိဳဖ်က္ရန္ တရားေတာ္ (၂-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">735</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hwK4ZO3GpaU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=736">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hwK4ZO3GpaU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=736">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၃၅။ ၀ိပလႅာသျပဳတ္ေရး တရားေတာ္ (၄-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၇၃၅။ ၀ိပလႅာသျပဳတ္ေရး တရားေတာ္ (၄-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၃၅။ ၀ိပလႅာသျပဳတ္ေရး တရားေတာ္ (၄-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">736</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=xuOosjt6yt0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=737">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=xuOosjt6yt0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=737">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၃၆။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္ တရားေတာ္(၄) (၇-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 56 minutes 7 views" title="၇၃၆။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္ တရားေတာ္(၄) (၇-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၃၆။ ကိုယ္သာနာ၍ စိတ္မနာေစႏွင့္ တရားေတာ္(၄) (၇-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">737</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KdXoB2ihcl4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=738">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KdXoB2ihcl4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=738">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၃၇။ ခႏၶာဉာဏ္ေရာက္ဖို႔ အေရးၾကီးဆံုး တရားေတာ္ (၁၂-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour 4 views" title="၇၃၇။ ခႏၶာဉာဏ္ေရာက္ဖို႔ အေရးၾကီးဆံုး တရားေတာ္ (၁၂-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၃၇။ ခႏၶာဉာဏ္ေရာက္ဖို႔ အေရးၾကီးဆံုး တရားေတာ္ (၁၂-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">738</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=YevVEjyGLJ8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=739">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=YevVEjyGLJ8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=739">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၃၈။ နိဗၺာန္ဆိုတာ နီးသလား ေ၀းသလား တရားေတာ္ (၁၅-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 48 minutes 8 views" title="၇၃၈။ နိဗၺာန္ဆိုတာ နီးသလား ေ၀းသလား တရားေတာ္ (၁၅-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၃၈။ နိဗၺာန္ဆိုတာ နီးသလား ေ၀းသလား တရားေတာ္ (၁၅-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">739</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Ng_BRqgGhP0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=740">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Ng_BRqgGhP0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=740">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၃၉။ အလွဴလွဴတယ္ဆုိတာ ကိုယ္ရတာ (၁၅-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 6 views" title="၇၃၉။ အလွဴလွဴတယ္ဆုိတာ ကိုယ္ရတာ (၁၅-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၃၉။ အလွဴလွဴတယ္ဆုိတာ ကိုယ္ရတာ (၁၅-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">740</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=bK5Pn1EIK54&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=741">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=bK5Pn1EIK54&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=741">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၄၀။ ဒုကၡသိမ္းရာ နိဗၺာန္တရားေတာ္ (၁၅-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 48 minutes 8 views" title="၇၄၀။ ဒုကၡသိမ္းရာ နိဗၺာန္တရားေတာ္ (၁၅-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၄၀။ ဒုကၡသိမ္းရာ နိဗၺာန္တရားေတာ္ (၁၅-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">741</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=XzPlubbJXD4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=742">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=XzPlubbJXD4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=742">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၄၁။ ကာမဂုဏ္တို႔၏ အျပစ္ကို သမုဒၵရာေျခာက္စင္း ဥပမာျပတရားေတာ္ (၁၉-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 55 minutes 6 views" title="၇၄၁။ ကာမဂုဏ္တို႔၏ အျပစ္ကို သမုဒၵရာေျခာက္စင္း ဥပမာျပတရားေတာ္ (၁၉-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၄၁။ ကာမဂုဏ္တို႔၏ အျပစ္ကို သမုဒၵရာေျခာက္စင္း ဥပမာျပတရားေတာ္ (၁၉-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">742</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KQLkcST8EQA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=743">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KQLkcST8EQA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=743">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၄၂။ ဦးေအာင္ဇံေ၀၊ ဦးသံဒိုင္တုိ႔အား ေဟာၾကားသည့္တရားေတာ္ (၂၁-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၇၄၂။ ဦးေအာင္ဇံေ၀၊ ဦးသံဒိုင္တုိ႔အား ေဟာၾကားသည့္တရားေတာ္ (၂၁-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၇၄၂။ ဦးေအာင္ဇံေ၀၊ ဦးသံဒိုင္တုိ႔အား ေဟာၾကားသည့္တရားေတာ္ (၂၁-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">743</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2Zt4UJ1P61M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=744">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2Zt4UJ1P61M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=744">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၄၃။ ေလာင္စာႏွင့္မီး တြဲေနပံုတရားေတာ္ (၁၄-၂-၁၉၆၂) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၇၄၃။ ေလာင္စာႏွင့္မီး တြဲေနပံုတရားေတာ္ (၁၄-၂-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၄၃။ ေလာင္စာႏွင့္မီး တြဲေနပံုတရားေတာ္ (၁၄-၂-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">744</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=i6CGKSurIWU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=745">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=i6CGKSurIWU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=745">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="40 minutes">
40:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၄၄။ အားကိုးမွား၍ ပရိေဒ၀ မခ်ဳပ္တီးႏိုင္ပံု တရားေတာ္ (၂၇-၂-၁၉၆၂) by mogok sayadaw 1 year ago 40 minutes 5 views" title="၇၄၄။ အားကိုးမွား၍ ပရိေဒ၀ မခ်ဳပ္တီးႏိုင္ပံု တရားေတာ္ (၂၇-၂-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၄၄။ အားကိုးမွား၍ ပရိေဒ၀ မခ်ဳပ္တီးႏိုင္ပံု တရားေတာ္ (၂၇-၂-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">745</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zFTXRbPxAlk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=746">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zFTXRbPxAlk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=746">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="42 minutes">
42:56
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၄၅။ ကတင္ညဳတ ကတေဒ၀ီကို ျပဳသင့္ခ်ိန္၊ မျပဳသင့္ခ်ိန္ ခဲြျခားျပပံုတရား (၇-၄-၁၉၆၂) by mogok sayadaw 1 year ago 42 minutes 6 views" title="၇၄၅။ ကတင္ညဳတ ကတေဒ၀ီကို ျပဳသင့္ခ်ိန္၊ မျပဳသင့္ခ်ိန္ ခဲြျခားျပပံုတရား (၇-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၄၅။ ကတင္ညဳတ ကတေဒ၀ီကို ျပဳသင့္ခ်ိန္၊ မျပဳသင့္ခ်ိန္ ခဲြျခားျပပံုတရား (၇-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">746</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=D3vdE8VbOp0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=747">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=D3vdE8VbOp0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=747">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="43 minutes">
43:25
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၄၆။ မဟာဒုကၡခႏၶာသုတ္(၁) (၈-၄-၁၉၆၂) by mogok sayadaw 1 year ago 43 minutes 6 views" title="၇၄၆။ မဟာဒုကၡခႏၶာသုတ္(၁) (၈-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၄၆။ မဟာဒုကၡခႏၶာသုတ္(၁) (၈-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">747</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=U1MN3luvGbk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=748">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=U1MN3luvGbk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=748">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၄၇။ ဉာဏ္အျမင္ အနတၱေတြ႔ပါမွ အတၱဒိ႒ိျပဳတ္မည္(၁) (၁၈-၄-၁၉၆၂) by mogok sayadaw 1 year ago 45 minutes 4 views" title="၇၄၇။ ဉာဏ္အျမင္ အနတၱေတြ႔ပါမွ အတၱဒိ႒ိျပဳတ္မည္(၁) (၁၈-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၄၇။ ဉာဏ္အျမင္ အနတၱေတြ႔ပါမွ အတၱဒိ႒ိျပဳတ္မည္(၁) (၁၈-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">748</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=OzhHp0jlUF0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=749">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=OzhHp0jlUF0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=749">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၄၈။ မွီ၀ဲရမည့္တရားကို မွီ၀ဲပါ (၁၉-၄-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၇၄၈။ မွီ၀ဲရမည့္တရားကို မွီ၀ဲပါ (၁၉-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၄၈။ မွီ၀ဲရမည့္တရားကို မွီ၀ဲပါ (၁၉-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">749</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=QOr6fNG8tdU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=750">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=QOr6fNG8tdU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=750">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="31 minutes">
31:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၄၉။ ကံေလးမ်ိဳးတရားေတာ္၊ ေသနိယႏွင့္ ပုဏၰခၽြတ္ခန္း(၁) (၂၂-၄-၁၉၆၂) by mogok sayadaw 1 year ago 31 minutes 16 views" title="၇၄၉။ ကံေလးမ်ိဳးတရားေတာ္၊ ေသနိယႏွင့္ ပုဏၰခၽြတ္ခန္း(၁) (၂၂-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၄၉။ ကံေလးမ်ိဳးတရားေတာ္၊ ေသနိယႏွင့္ ပုဏၰခၽြတ္ခန္း(၁) (၂၂-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">750</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ppdweBWQAXg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=751">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ppdweBWQAXg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=751">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="36 minutes">
36:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၅၀။ နိဗၺာန္အေၾကာင္း၊ အဂၢိ၀စၥသုတ္(ညအလုပ္ေပး) တရားေတာ္ (၂၄-၄-၁၉၆၂) by mogok sayadaw 1 year ago 36 minutes 8 views" title="၇၅၀။ နိဗၺာန္အေၾကာင္း၊ အဂၢိ၀စၥသုတ္(ညအလုပ္ေပး) တရားေတာ္ (၂၄-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၅၀။ နိဗၺာန္အေၾကာင္း၊ အဂၢိ၀စၥသုတ္(ညအလုပ္ေပး) တရားေတာ္ (၂၄-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">751</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=UPIj982iYcU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=752">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=UPIj982iYcU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=752">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="37 minutes">
37:43
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၅၁။ ဒိ႒ိမေသရင္ သံသရာလည္မည္တရားေတာ္ (၂၈-၄-၁၉၆၂) by mogok sayadaw 1 year ago 37 minutes 4 views" title="၇၅၁။ ဒိ႒ိမေသရင္ သံသရာလည္မည္တရားေတာ္ (၂၈-၄-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၅၁။ ဒိ႒ိမေသရင္ သံသရာလည္မည္တရားေတာ္ (၂၈-၄-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">752</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=g9eckO58Mpw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=753">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=g9eckO58Mpw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=753">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="47 minutes">
47:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၅၂။ အနာထပိဏ္သူေဌးၾကီး ေနာက္ဆံုးနာၾကားရေသာ တရားေတာ္(အစ) (၃-၅-၁၉၆၂) by mogok sayadaw 1 year ago 47 minutes 7 views" title="၇၅၂။ အနာထပိဏ္သူေဌးၾကီး ေနာက္ဆံုးနာၾကားရေသာ တရားေတာ္(အစ) (၃-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၅၂။ အနာထပိဏ္သူေဌးၾကီး ေနာက္ဆံုးနာၾကားရေသာ တရားေတာ္(အစ) (၃-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">753</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-vlxHremLGY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=754">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-vlxHremLGY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=754">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="34 minutes">
34:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၅၃။ အနာထပိဏ္သူေဌးၾကီး ေနာက္ဆံုးနာၾကားရေသာ တရားေတာ္(အဆံုး) (၃-၅-၁၉၆၂) by mogok sayadaw 1 year ago 34 minutes 6 views" title="၇၅၃။ အနာထပိဏ္သူေဌးၾကီး ေနာက္ဆံုးနာၾကားရေသာ တရားေတာ္(အဆံုး) (၃-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၅၃။ အနာထပိဏ္သူေဌးၾကီး ေနာက္ဆံုးနာၾကားရေသာ တရားေတာ္(အဆံုး) (၃-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">754</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ljGi5J1hOPU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=755">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ljGi5J1hOPU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=755">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၅၄။ ၀ိညာဥ္ေျပာင္းဟုယူလွ်င္ မိစၦာဒိ႒ိတရားေတာ္(၃) (၂၆-၅-၁၉၆၂) by mogok sayadaw 1 year ago 49 minutes 4 views" title="၇၅၄။ ၀ိညာဥ္ေျပာင္းဟုယူလွ်င္ မိစၦာဒိ႒ိတရားေတာ္(၃) (၂၆-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၅၄။ ၀ိညာဥ္ေျပာင္းဟုယူလွ်င္ မိစၦာဒိ႒ိတရားေတာ္(၃) (၂၆-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">755</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=aV9YH_unCqw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=756">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=aV9YH_unCqw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=756">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၅၅။ ကိေလသာအေစး မပယ္ႏိုင္ေသးလွ်င္ ခ်မ္းသာမရွိႏိုင္ပံု တရားေတာ္ (၂၉-၅-၁၉၆၂) by mogok sayadaw 1 year ago 55 minutes 7 views" title="၇၅၅။ ကိေလသာအေစး မပယ္ႏိုင္ေသးလွ်င္ ခ်မ္းသာမရွိႏိုင္ပံု တရားေတာ္ (၂၉-၅-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၅၅။ ကိေလသာအေစး မပယ္ႏိုင္ေသးလွ်င္ ခ်မ္းသာမရွိႏိုင္ပံု တရားေတာ္ (၂၉-၅-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">756</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wrZ7x8T-F3s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=757">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wrZ7x8T-F3s&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=757">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="44 minutes">
44:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၅၆။ ရွင္မဟာေကာဋိကႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ (၂-၆-၁၉၆၂) by mogok sayadaw 1 year ago 44 minutes 21 views" title="၇၅၆။ ရွင္မဟာေကာဋိကႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ (၂-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၅၆။ ရွင္မဟာေကာဋိကႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ (၂-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">757</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=F7VnYzXEvwE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=758">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=F7VnYzXEvwE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=758">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၅၇။ ၀ိဇၨာႏွင့္ စရဏတရားေတာ္ (၃-၆-၁၉၆၂) by mogok sayadaw 1 year ago 46 minutes 3 views" title="၇၅၇။ ၀ိဇၨာႏွင့္ စရဏတရားေတာ္ (၃-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၅၇။ ၀ိဇၨာႏွင့္ စရဏတရားေတာ္ (၃-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">758</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jKGs2BnS5Pg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=759">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jKGs2BnS5Pg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=759">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၅၈။ ဇာတိ ဇရာ မရဏ ဒုကၡသစၥာျမင္ေအာင္ ရွဳၾကရန္ (၅-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 7 views" title="၇၅၈။ ဇာတိ ဇရာ မရဏ ဒုကၡသစၥာျမင္ေအာင္ ရွဳၾကရန္ (၅-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၅၈။ ဇာတိ ဇရာ မရဏ ဒုကၡသစၥာျမင္ေအာင္ ရွဳၾကရန္ (၅-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">759</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=It1IoU5o0Ww&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=760">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=It1IoU5o0Ww&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=760">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၅၉။ စိတၱာႏုပႆနာတရားေတာ္၊ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရန္ တရားေတာ္ (၆-၆-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 8 views" title="၇၅၉။ စိတၱာႏုပႆနာတရားေတာ္၊ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရန္ တရားေတာ္ (၆-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၅၉။ စိတၱာႏုပႆနာတရားေတာ္၊ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရန္ တရားေတာ္ (၆-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">760</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jAm9q-9rkoU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=761">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jAm9q-9rkoU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=761">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၆၀။ သာသနာႏွင့္ ဆရာေကာင္းေတြ႔ခုိက္မွာ လံု႔လစိုက္ၾကရန္ (၈-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 5 views" title="၇၆၀။ သာသနာႏွင့္ ဆရာေကာင္းေတြ႔ခုိက္မွာ လံု႔လစိုက္ၾကရန္ (၈-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၆၀။ သာသနာႏွင့္ ဆရာေကာင္းေတြ႔ခုိက္မွာ လံု႔လစိုက္ၾကရန္ (၈-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">761</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=OauGfOR8cx4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=762">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=OauGfOR8cx4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=762">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၆၁။ မဂၢျဗဟၼစရိယ က်င့္ရန္တရားေတာ္၊ ဗာလပ႑ိသုတ္ (၉-၆-၁၉၆၂) by mogok sayadaw 1 year ago 49 minutes 5 views" title="၇၆၁။ မဂၢျဗဟၼစရိယ က်င့္ရန္တရားေတာ္၊ ဗာလပ႑ိသုတ္ (၉-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၆၁။ မဂၢျဗဟၼစရိယ က်င့္ရန္တရားေတာ္၊ ဗာလပ႑ိသုတ္ (၉-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">762</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ehdPhomlsfw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=763">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ehdPhomlsfw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=763">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၆၂။ တရားသိမွ ဘုရားသိသည္ တရားေတာ္ (၁၁-၆-၁၉၆၂) by mogok sayadaw 1 year ago 57 minutes 5 views" title="၇၆၂။ တရားသိမွ ဘုရားသိသည္ တရားေတာ္ (၁၁-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၆၂။ တရားသိမွ ဘုရားသိသည္ တရားေတာ္ (၁၁-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">763</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=T0vctY9v_NI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=764">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=T0vctY9v_NI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=764">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:12
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၆၃။ ေသာတာပန္တည္တဲ့ တရားေတာ္ (၁၃-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 7 views" title="၇၆၃။ ေသာတာပန္တည္တဲ့ တရားေတာ္ (၁၃-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၆၃။ ေသာတာပန္တည္တဲ့ တရားေတာ္ (၁၃-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">764</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=0vf-h5DkOPA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=765">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=0vf-h5DkOPA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=765">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၆၄။ ပရမ္းပတာေဘးမွ ကင္းလြတ္ေရး တရားေတာ္ (၁၄-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၇၆၄။ ပရမ္းပတာေဘးမွ ကင္းလြတ္ေရး တရားေတာ္ (၁၄-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၆၄။ ပရမ္းပတာေဘးမွ ကင္းလြတ္ေရး တရားေတာ္ (၁၄-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">765</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=StFBhitrigI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=766">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=StFBhitrigI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=766">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:33
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၆၅။ အာေရာဂ်ံ ပရမံ လာဘံ နိဗၺာနံသုခံ တရားေတာ္ (၁၅-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 4 views" title="၇၆၅။ အာေရာဂ်ံ ပရမံ လာဘံ နိဗၺာနံသုခံ တရားေတာ္ (၁၅-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၆၅။ အာေရာဂ်ံ ပရမံ လာဘံ နိဗၺာနံသုခံ တရားေတာ္ (၁၅-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">766</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=67dxDBl8nJ8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=767">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=67dxDBl8nJ8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=767">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/67dxDBl8nJ8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC9i2P-xiSbbdxC8ppevAE_JEJcJA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၆၆။ ရွင္နာဂသိန္က မိလိႏၵမင္းၾကီးအား ေဟာၾကားေသာတရားေတာ္ (၁၆-၆-၁၉၆၂) by mogok sayadaw 1 year ago 55 minutes 4 views" title="၇၆၆။ ရွင္နာဂသိန္က မိလိႏၵမင္းၾကီးအား ေဟာၾကားေသာတရားေတာ္ (၁၆-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၆၆။ ရွင္နာဂသိန္က မိလိႏၵမင္းၾကီးအား ေဟာၾကားေသာတရားေတာ္ (၁၆-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">767</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VovACfuUNQU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=768">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VovACfuUNQU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=768">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/VovACfuUNQU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCcpZ5qcb3psIdC2ubcmryCjsJhEA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၆၇။ ခႏၶာကိုယ္ သစၥာမ်က္လံုး တပ္ၾကည့္ရမည္ (၁၇-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 8 views" title="၇၆၇။ ခႏၶာကိုယ္ သစၥာမ်က္လံုး တပ္ၾကည့္ရမည္ (၁၇-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၆၇။ ခႏၶာကိုယ္ သစၥာမ်က္လံုး တပ္ၾကည့္ရမည္ (၁၇-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">768</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=IKK2wKtcy-g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=769">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=IKK2wKtcy-g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=769">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/IKK2wKtcy-g/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLABWY6A8jBeaJBbjWmy06AXzOXOEQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၆၈။ နိဗၺာန္ရခ်င္ရင္ ခႏၶာငါးပါးေပၚမွာ ဒုကၡသစၥာသိေအာင္လုပ္ပါ တရားေတာ္ (၂၆-၆-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 9 views" title="၇၆၈။ နိဗၺာန္ရခ်င္ရင္ ခႏၶာငါးပါးေပၚမွာ ဒုကၡသစၥာသိေအာင္လုပ္ပါ တရားေတာ္ (၂၆-၆-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၆၈။ နိဗၺာန္ရခ်င္ရင္ ခႏၶာငါးပါးေပၚမွာ ဒုကၡသစၥာသိေအာင္လုပ္ပါ တရားေတာ္ (၂၆-၆-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">769</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hKzYhNqPkcw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=770">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hKzYhNqPkcw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=770">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/hKzYhNqPkcw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBUGGvIthI37SqC_NWAZzmuWYhZCA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၆၉။ ပဋိစၥသမုပၸါဒ္တရားေတာ္၊ သစၥာမသိေသးလွ်င္ နိဗၺာန္မရွိေသး တရားေတာ္(နံက္) (၁၀-၇-၁၉၆၂) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၇၆၉။ ပဋိစၥသမုပၸါဒ္တရားေတာ္၊ သစၥာမသိေသးလွ်င္ နိဗၺာန္မရွိေသး တရားေတာ္(နံက္) (၁၀-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၆၉။ ပဋိစၥသမုပၸါဒ္တရားေတာ္၊ သစၥာမသိေသးလွ်င္ နိဗၺာန္မရွိေသး တရားေတာ္(နံက္) (၁၀-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">770</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=bs0azP66CLk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=771">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=bs0azP66CLk&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=771">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/bs0azP66CLk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAaRI1SrG4FOyhjJ8R3gC7-hycchQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 14 minutes">
1:14:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၇၀။ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရာနိဗၺာန္(ည) (၁၂-၇-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour, 14 minutes 4 views" title="၇၇၀။ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရာနိဗၺာန္(ည) (၁၂-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၇၀။ ေလာင္စာသိမ္း၍ မီးၿငိမ္းရာနိဗၺာန္(ည) (၁၂-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">771</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=D3E2zPUU2lg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=772">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=D3E2zPUU2lg&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=772">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/D3E2zPUU2lg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAfyGbYl4-7d84SXaATfSMtWFr8Lg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၇၁။ အာသ၀ ၀င္ရိုးခ်ိဳးရန္တရား (၁၃-၇-၁၉၆၂) by mogok sayadaw 1 year ago 56 minutes 4 views" title="၇၇၁။ အာသ၀ ၀င္ရိုးခ်ိဳးရန္တရား (၁၃-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၇၁။ အာသ၀ ၀င္ရိုးခ်ိဳးရန္တရား (၁၃-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">772</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qJz9Cimy2jY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=773">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qJz9Cimy2jY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=773">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/qJz9Cimy2jY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAMnhjOosPt6uLad-JYr88itgVfTw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:43
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၇၂။ ကိုယ့္အေရး ကိုယ္သိၾကရန္တရားေတာ္ (၁၆-၇-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 2 views" title="၇၇၂။ ကိုယ့္အေရး ကိုယ္သိၾကရန္တရားေတာ္ (၁၆-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၇၂။ ကိုယ့္အေရး ကိုယ္သိၾကရန္တရားေတာ္ (၁၆-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">773</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=JNEe0Pl9nPY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=774">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=JNEe0Pl9nPY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=774">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/JNEe0Pl9nPY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDB2FmHRm6zhoiPnwAdAFuzYChfew"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၇၃။ ဦးၾကြယ္+ေဒၚသန္းတို႔၏ ေရႊဂူၾကီးဘုရားျပဳျပင္ အလွဴေရစက္ခ် (၁၉-၇-၁၉၆၂) by mogok sayadaw 1 year ago 49 minutes 4 views" title="၇၇၃။ ဦးၾကြယ္+ေဒၚသန္းတို႔၏ ေရႊဂူၾကီးဘုရားျပဳျပင္ အလွဴေရစက္ခ် (၁၉-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၇၃။ ဦးၾကြယ္+ေဒၚသန္းတို႔၏ ေရႊဂူၾကီးဘုရားျပဳျပင္ အလွဴေရစက္ခ် (၁၉-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">774</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VG3wNP-tLcU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=775">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VG3wNP-tLcU&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=775">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/VG3wNP-tLcU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB8QFNmUmZQfvQqHg5hUxJLSdSNHQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၇၄။ သူတစ္ပါးအေရးထက္ ကိုယ့္အေရးကိုယ္ၾကည့္ရမည့္တရားေတာ္ (၂၄-၇-၁၉၆၂) by mogok sayadaw 1 year ago 54 minutes 4 views" title="၇၇၄။ သူတစ္ပါးအေရးထက္ ကိုယ့္အေရးကိုယ္ၾကည့္ရမည့္တရားေတာ္ (၂၄-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၇၄။ သူတစ္ပါးအေရးထက္ ကိုယ့္အေရးကိုယ္ၾကည့္ရမည့္တရားေတာ္ (၂၄-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">775</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=cOHN_YSdJ5A&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=776">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=cOHN_YSdJ5A&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=776">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/cOHN_YSdJ5A/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDbOsCNez6tvmcn1KyS32R9c-X0Sw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:57
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၇၅။ အျမင္မွားေသာေဘး မသင့္ေစရန္ တရားေတာ္ (၃၁-၇-၁၉၆၂) by mogok sayadaw 1 year ago 51 minutes 4 views" title="၇၇၅။ အျမင္မွားေသာေဘး မသင့္ေစရန္ တရားေတာ္ (၃၁-၇-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၇၅။ အျမင္မွားေသာေဘး မသင့္ေစရန္ တရားေတာ္ (၃၁-၇-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">776</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=CsarcYxnCvM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=777">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=CsarcYxnCvM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=777">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/CsarcYxnCvM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLClNzhD8TV8PdKD8TFUN-yiKdVJXw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 7 minutes">
1:07:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၇၆။ စက္ဆုပ္စရာ အသံုးမက်တာ အမွန္တရားေတာ္ (၈-၈-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour, 7 minutes 5 views" title="၇၇၆။ စက္ဆုပ္စရာ အသံုးမက်တာ အမွန္တရားေတာ္ (၈-၈-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၇၆။ စက္ဆုပ္စရာ အသံုးမက်တာ အမွန္တရားေတာ္ (၈-၈-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">777</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jhIoqjrqijI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=778">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jhIoqjrqijI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=778">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/jhIoqjrqijI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDqocFYdPR2miSfiWbGZnmPMt7Zqg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၇၇။ ေသာတာပန္ျဖစ္ဖို႔ ႏွစ္ခ်က္(ေ၀ဒနာႏုပႆနာ ဉာဏ္စဥ္ႏွင့္ရွင္းျပထားသည္) (၁၀-၈-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour 16 views" title="၇၇၇။ ေသာတာပန္ျဖစ္ဖို႔ ႏွစ္ခ်က္(ေ၀ဒနာႏုပႆနာ ဉာဏ္စဥ္ႏွင့္ရွင္းျပထားသည္) (၁၀-၈-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၇၇။ ေသာတာပန္ျဖစ္ဖို႔ ႏွစ္ခ်က္(ေ၀ဒနာႏုပႆနာ ဉာဏ္စဥ္ႏွင့္ရွင္းျပထားသည္) (၁၀-၈-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">778</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=3L2gx0uFrYM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=779">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=3L2gx0uFrYM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=779">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/3L2gx0uFrYM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAyiZt32iJH7H-10Ukx8p9jJis38A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၇၈။ မဂၢင္ေဖာင္ ျပင္ၾကရန္တရားေတာ္(၁) (၁၁-၈-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour, 2 minutes 7 views" title="၇၇၈။ မဂၢင္ေဖာင္ ျပင္ၾကရန္တရားေတာ္(၁) (၁၁-၈-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၇၈။ မဂၢင္ေဖာင္ ျပင္ၾကရန္တရားေတာ္(၁) (၁၁-၈-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">779</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=d9w5r9cR_X0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=780">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=d9w5r9cR_X0&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=780">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/d9w5r9cR_X0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAVCgyxS34gqlKIx5DG3XObttcG7w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၇၉။ မဂၢင္ေဖာင္ ျပင္ၾကရန္တရားေတာ္(၂) (၁၂-၈-၁၉၆၂) by mogok sayadaw 1 year ago 56 minutes 7 views" title="၇၇၉။ မဂၢင္ေဖာင္ ျပင္ၾကရန္တရားေတာ္(၂) (၁၂-၈-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၇၉။ မဂၢင္ေဖာင္ ျပင္ၾကရန္တရားေတာ္(၂) (၁၂-၈-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">780</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=6xp6pf1hziI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=781">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=6xp6pf1hziI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=781">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၈၀။ သာဓုတန္းကမေနဘဲ ဉာဏ္တန္းကေနပါႏွင့္ ယမမင္းစစ္ခန္း တရားေတာ္ (၁၅-၈-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour 1 view" title="၇၈၀။ သာဓုတန္းကမေနဘဲ ဉာဏ္တန္းကေနပါႏွင့္ ယမမင္းစစ္ခန္း တရားေတာ္ (၁၅-၈-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၈၀။ သာဓုတန္းကမေနဘဲ ဉာဏ္တန္းကေနပါႏွင့္ ယမမင္းစစ္ခန္း တရားေတာ္ (၁၅-၈-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">781</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=B8o2eZMJP1g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=782">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=B8o2eZMJP1g&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=782">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:54
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၈၁။ ျဖစ္ပ်က္ေတြ႔ရင္ အေသမဆိုးေတာ့ပါ တရားေတာ္ (၁၅-၈-၁၉၆၂) by mogok sayadaw 1 year ago 56 minutes 14 views" title="၇၈၁။ ျဖစ္ပ်က္ေတြ႔ရင္ အေသမဆိုးေတာ့ပါ တရားေတာ္ (၁၅-၈-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၈၁။ ျဖစ္ပ်က္ေတြ႔ရင္ အေသမဆိုးေတာ့ပါ တရားေတာ္ (၁၅-၈-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">782</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=K2lAXFDbvpE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=783">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=K2lAXFDbvpE&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=783">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 5 minutes">
1:05:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၈၂။ ဒုကၡေပးေလသမွ် ခႏၶာကျဖစ္ရပံုတရားေတာ္ (၂၃-၈-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour, 5 minutes 6 views" title="၇၈၂။ ဒုကၡေပးေလသမွ် ခႏၶာကျဖစ္ရပံုတရားေတာ္ (၂၃-၈-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၈၂။ ဒုကၡေပးေလသမွ် ခႏၶာကျဖစ္ရပံုတရားေတာ္ (၂၃-၈-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">783</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KYeXaaWDpss&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=784">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KYeXaaWDpss&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=784">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၈၃။ စင္ၾကယ္တဲ့မေနာနဲ႔မွ နိဗၺာန္ျမင္မည္ တရားေတာ္ (၂၃-၈-၁၉၆၂) by mogok sayadaw 1 year ago 55 minutes 9 views" title="၇၈၃။ စင္ၾကယ္တဲ့မေနာနဲ႔မွ နိဗၺာန္ျမင္မည္ တရားေတာ္ (၂၃-၈-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၈၃။ စင္ၾကယ္တဲ့မေနာနဲ႔မွ နိဗၺာန္ျမင္မည္ တရားေတာ္ (၂၃-၈-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">784</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=X8h31qj7kDY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=785">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=X8h31qj7kDY&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=785">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:50
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၈၄။ ဒိ႒ိခြါမႈ ေရွ႕ထားၾကရန္ (၂၉-၈-၁၉၆၂) by mogok sayadaw 1 year ago 58 minutes 4 views" title="၇၈၄။ ဒိ႒ိခြါမႈ ေရွ႕ထားၾကရန္ (၂၉-၈-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၈၄။ ဒိ႒ိခြါမႈ ေရွ႕ထားၾကရန္ (၂၉-၈-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">785</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=N_iyXqjg4ug&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=786">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=N_iyXqjg4ug&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=786">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၈၅။ ေလာင္စာႏွင့္မီး တရားေတာ္ (၃၁-၈-၁၉၆၂) by mogok sayadaw 1 year ago 57 minutes 7 views" title="၇၈၅။ ေလာင္စာႏွင့္မီး တရားေတာ္ (၃၁-၈-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၈၅။ ေလာင္စာႏွင့္မီး တရားေတာ္ (၃၁-၈-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">786</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=l35Ic41MSrM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=787">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=l35Ic41MSrM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=787">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၈၆။ ဒိ႒ိႏွင့္ ၀ိစိကိစၦာသတ္ တရားေတာ္ (၁-၉-၁၉၆၂) by mogok sayadaw 1 year ago 58 minutes 61 views" title="၇၈၆။ ဒိ႒ိႏွင့္ ၀ိစိကိစၦာသတ္ တရားေတာ္ (၁-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၈၆။ ဒိ႒ိႏွင့္ ၀ိစိကိစၦာသတ္ တရားေတာ္ (၁-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">787</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=HyGyVsDbloI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=788">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=HyGyVsDbloI&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=788">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="39 minutes">
39:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၈၇။ သစၥာသိမွ သံသရာျပတ္ပံု တရားေတာ္(၁) (၂-၉-၁၉၆၂) by mogok sayadaw 1 year ago 39 minutes 2 views" title="၇၈၇။ သစၥာသိမွ သံသရာျပတ္ပံု တရားေတာ္(၁) (၂-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၈၇။ သစၥာသိမွ သံသရာျပတ္ပံု တရားေတာ္(၁) (၂-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">788</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=5zcEBk7fWk8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=789">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=5zcEBk7fWk8&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=789">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၈၈။ သစၥာသိမွ သံသရာျပတ္ပံု တရားေတာ္(၂) (၃-၉-၁၉၆၂) by mogok sayadaw 1 year ago 48 minutes 4 views" title="၇၈၈။ သစၥာသိမွ သံသရာျပတ္ပံု တရားေတာ္(၂) (၃-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၈၈။ သစၥာသိမွ သံသရာျပတ္ပံု တရားေတာ္(၂) (၃-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">789</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=bqTc7hvhRgo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=790">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=bqTc7hvhRgo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=790">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၈၉။ အၾကားအျမင္မရွိေသာ ပုထုဇဥ္ႏွင့္ အၾကားအျမင္ရွိေသာ ပုထုဇဥ္တရား (၄-၉-၁၉၆၂) by mogok sayadaw 1 year ago 54 minutes 5 views" title="၇၈၉။ အၾကားအျမင္မရွိေသာ ပုထုဇဥ္ႏွင့္ အၾကားအျမင္ရွိေသာ ပုထုဇဥ္တရား (၄-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၈၉။ အၾကားအျမင္မရွိေသာ ပုထုဇဥ္ႏွင့္ အၾကားအျမင္ရွိေသာ ပုထုဇဥ္တရား (၄-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">790</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=kNOE9xKxfN4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=791">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=kNOE9xKxfN4&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=791">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="47 minutes">
47:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၉၀။ ခႏၶာငါးပါး ကမ္းနားသစ္ပင္ တရားေတာ္၊ နဒီသုတ္ (၅-၉-၁၉၆၂) by mogok sayadaw 1 year ago 47 minutes 8 views" title="၇၉၀။ ခႏၶာငါးပါး ကမ္းနားသစ္ပင္ တရားေတာ္၊ နဒီသုတ္ (၅-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၉၀။ ခႏၶာငါးပါး ကမ္းနားသစ္ပင္ တရားေတာ္၊ နဒီသုတ္ (၅-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">791</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VeUwar5Z6ZA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=792">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VeUwar5Z6ZA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=792">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၉၁။ ၀ိပႆနာရွဳၾကရန္ အၾကိမ္ၾကိမ္မွာပံု (၆-၉-၁၉၆၂) by mogok sayadaw 1 year ago 45 minutes 4 views" title="၇၉၁။ ၀ိပႆနာရွဳၾကရန္ အၾကိမ္ၾကိမ္မွာပံု (၆-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၉၁။ ၀ိပႆနာရွဳၾကရန္ အၾကိမ္ၾကိမ္မွာပံု (၆-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">792</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gE94I7JAaUM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=793">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gE94I7JAaUM&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=793">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/gE94I7JAaUM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAju9rpN6FW8StKVA5itRn-L2Ephw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၉၂။ စိတၱာႏုပႆနာ ရွဳၾကရန္ အၾကိမ္ၾကိမ္မွာပံု (၇-၉-၁၉၆၂) by mogok sayadaw 1 year ago 54 minutes 46 views" title="၇၉၂။ စိတၱာႏုပႆနာ ရွဳၾကရန္ အၾကိမ္ၾကိမ္မွာပံု (၇-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၉၂။ စိတၱာႏုပႆနာ ရွဳၾကရန္ အၾကိမ္ၾကိမ္မွာပံု (၇-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">793</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=aFHzyZi3JZw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=794">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=aFHzyZi3JZw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=794">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/aFHzyZi3JZw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDW24Taxgiju-xAoNlQ6wjIfxrdcA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၉၃။ ဒိ႒ိစင္မွ နိဗၺာန္ျမင္ႏိုင္မည္ တရားေတာ္ (၈-၉-၁၉၆၂) by mogok sayadaw 1 year ago 54 minutes 6 views" title="၇၉၃။ ဒိ႒ိစင္မွ နိဗၺာန္ျမင္ႏိုင္မည္ တရားေတာ္ (၈-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၉၃။ ဒိ႒ိစင္မွ နိဗၺာန္ျမင္ႏိုင္မည္ တရားေတာ္ (၈-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">794</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TS_VRYdWl2w&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=795">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TS_VRYdWl2w&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=795">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/TS_VRYdWl2w/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCYekX0z7JVzn1Qc61z07kUSDYGOw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၉၄။ ကံကုိ အတၱလုပ္ၿပီး အားမကိုးသင့္ပံု (၉-၉-၁၉၆၂) by mogok sayadaw 1 year ago 56 minutes 3 views" title="၇၉၄။ ကံကုိ အတၱလုပ္ၿပီး အားမကိုးသင့္ပံု (၉-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၉၄။ ကံကုိ အတၱလုပ္ၿပီး အားမကိုးသင့္ပံု (၉-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">795</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lwba8-WBjQA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=796">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lwba8-WBjQA&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=796">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/lwba8-WBjQA/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDaaSO1SZ1z8EvCvBkFyWFe6F9rsA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:28
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၉၅။ ေသာတာပန္ ျဖစ္ေၾကာင္းႏွစ္ပါး တရားေတာ္ (၁၀-၉-၁၉၆၂) by mogok sayadaw 1 year ago 55 minutes 77 views" title="၇၉၅။ ေသာတာပန္ ျဖစ္ေၾကာင္းႏွစ္ပါး တရားေတာ္ (၁၀-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၉၅။ ေသာတာပန္ ျဖစ္ေၾကာင္းႏွစ္ပါး တရားေတာ္ (၁၀-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">796</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KLUR818q7Iw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=797">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KLUR818q7Iw&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=797">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/KLUR818q7Iw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBvyclu43t94w-vraj2A4u2uNjJxA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၉၆။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၁) (၁၁-၉-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 5 views" title="၇၉၆။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၁) (၁၁-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၉၆။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၁) (၁၁-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">797</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=iXKl9DfZF70&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=798">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=iXKl9DfZF70&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=798">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/iXKl9DfZF70/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAjZuweGQhdQ7uxVrmQmNUO22Hqnw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="47 minutes">
47:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၉၇။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၂) (၁၂-၉-၁၉၆၂) by mogok sayadaw 1 year ago 47 minutes 3 views" title="၇၉၇။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၂) (၁၂-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၉၇။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၂) (၁၂-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">798</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KZbMmeZU_Tc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=799">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KZbMmeZU_Tc&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=799">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/KZbMmeZU_Tc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBT6wLlTSOhIvee1LEEN86v7d2sxg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၉၈။ ကုသိုလ္စစ္ကို ရေအာင္ရွာပါ (၁၂-၉-၁၉၆၂) by mogok sayadaw 1 year ago 54 minutes 3 views" title="၇၉၈။ ကုသိုလ္စစ္ကို ရေအာင္ရွာပါ (၁၂-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၉၈။ ကုသိုလ္စစ္ကို ရေအာင္ရွာပါ (၁၂-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">799</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ePIQ4c78UUo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=800">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ePIQ4c78UUo&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=800">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ePIQ4c78UUo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCfwUEIOWsOUW2u1VxjKgSFkIhPKQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 12 minutes">
1:12:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၇၉၉။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၃) (၁၃-၉-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour, 12 minutes 3 views" title="၇၉၉။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၃) (၁၃-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၇၉၉။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၃) (၁၃-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">800</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=VP1tmA_-v4M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=801">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=VP1tmA_-v4M&t=0s&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&index=801">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/VP1tmA_-v4M/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDngWL8mB1akW0L8Xl9K8sMWxQsIA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၀၀။ ကံအမိ ကံအဖမွ ဉာဏ္အမိ ဉာဏ္အဖသို႔ ေျပာင္းရန္ (၁၃-၉-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour 8 views" title="၈၀၀။ ကံအမိ ကံအဖမွ ဉာဏ္အမိ ဉာဏ္အဖသို႔ ေျပာင္းရန္ (၁၃-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၀၀။ ကံအမိ ကံအဖမွ ဉာဏ္အမိ ဉာဏ္အဖသို႔ ေျပာင္းရန္ (၁၃-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">801</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=roy-2Chywis&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=802">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=roy-2Chywis&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=802">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/roy-2Chywis/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAbbAy9xYb0yiRqsvpmQzk22b_TRA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 9 minutes">
1:09:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၀၁။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၄) (၁၄-၉-၁၉၆၂) by mogok sayadaw 1 year ago 1 hour, 9 minutes 7 views" title="၈၀၁။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၄) (၁၄-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၀၁။ ယမကရဟန္း ၀တၳဳတရားေတာ္(၄) (၁၄-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">802</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wf3ttjbtyDo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=803">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wf3ttjbtyDo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=803">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/wf3ttjbtyDo/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDqesatPPKwYuPDCcvsDdMnE3dGbA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၀၂။ ပပဥၥ ခ်ဳပ္ေပ်ာက္ေၾကာင္း တရားေတာ္ (၁၄-၉-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 9 views" title="၈၀၂။ ပပဥၥ ခ်ဳပ္ေပ်ာက္ေၾကာင္း တရားေတာ္ (၁၄-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၀၂။ ပပဥၥ ခ်ဳပ္ေပ်ာက္ေၾကာင္း တရားေတာ္ (၁၄-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">803</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zqKmvHWtQO0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=804">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zqKmvHWtQO0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=804">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/zqKmvHWtQO0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAvYBTrUZxecqTFwYJHTZ_l3pP0dw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:43
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၀၃။ ေတာင္ၾကိပ္ခံရသည္မွ လြတ္ေရး ကၽြတ္ေရး (၁၅-၉-၁၉၆၂) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၈၀၃။ ေတာင္ၾကိပ္ခံရသည္မွ လြတ္ေရး ကၽြတ္ေရး (၁၅-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၀၃။ ေတာင္ၾကိပ္ခံရသည္မွ လြတ္ေရး ကၽြတ္ေရး (၁၅-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">804</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=AYNWsbRZMuE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=805">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=AYNWsbRZMuE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=805">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/AYNWsbRZMuE/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAB3txM8qboZF5gcAOr0JAwPuBBzQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="41 minutes">
41:17
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၀၄။ လူမိုက္ႏွင့္ လူလိမၼာ အလာျခင္းတူ၍ အသြားျခင္းမတူပံု တရားေတာ္ (၁၅-၉-၁၉၆၂) by mogok sayadaw 1 year ago 41 minutes 13 views" title="၈၀၄။ လူမိုက္ႏွင့္ လူလိမၼာ အလာျခင္းတူ၍ အသြားျခင္းမတူပံု တရားေတာ္ (၁၅-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၀၄။ လူမိုက္ႏွင့္ လူလိမၼာ အလာျခင္းတူ၍ အသြားျခင္းမတူပံု တရားေတာ္ (၁၅-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">805</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jGFO3RXWCXU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=806">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jGFO3RXWCXU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=806">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/jGFO3RXWCXU/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCmMEXK2FDtOF0G996sjff2ijXPkg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="42 minutes">
42:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၀၅။ သႆတႏွင့္ ဥေစၦဒဒိ႒ိ ခြါပံု (၁၆-၉-၁၉၆၂) by mogok sayadaw 1 year ago 42 minutes 5 views" title="၈၀၅။ သႆတႏွင့္ ဥေစၦဒဒိ႒ိ ခြါပံု (၁၆-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၀၅။ သႆတႏွင့္ ဥေစၦဒဒိ႒ိ ခြါပံု (၁၆-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">806</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Ag7gde_VgwE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=807">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Ag7gde_VgwE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=807">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၀၆။ အနတၱထင္ေအာင္ ရွဳနည္းတရားေတာ္ (၁၆-၉-၁၉၆၂) by mogok sayadaw 1 year ago 54 minutes 8 views" title="၈၀၆။ အနတၱထင္ေအာင္ ရွဳနည္းတရားေတာ္ (၁၆-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၀၆။ အနတၱထင္ေအာင္ ရွဳနည္းတရားေတာ္ (၁၆-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">807</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=K2hzERo5_oY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=808">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=K2hzERo5_oY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=808">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၀၇။ တစ္မဂ္ဖိုလ္ရပံု တရားေတာ္ (၁၇-၉-၁၉၆၂) by mogok sayadaw 1 year ago 54 minutes 8 views" title="၈၀၇။ တစ္မဂ္ဖိုလ္ရပံု တရားေတာ္ (၁၇-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၀၇။ တစ္မဂ္ဖိုလ္ရပံု တရားေတာ္ (၁၇-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">808</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Lq9tON9lvHk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=809">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Lq9tON9lvHk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=809">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="39 minutes">
39:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၀၈။ မဂၢၿဗဟၼစရိယအက်င့္ႏွင့္ ပဋိစၥသမုပၸါဒ္ျဖတ္မွသာ သာသနာတြင္းသားေရာက္ (၁၈-၉-၁၉၆၂) by mogok sayadaw 1 year ago 39 minutes 8 views" title="၈၀၈။ မဂၢၿဗဟၼစရိယအက်င့္ႏွင့္ ပဋိစၥသမုပၸါဒ္ျဖတ္မွသာ သာသနာတြင္းသားေရာက္ (၁၈-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၀၈။ မဂၢၿဗဟၼစရိယအက်င့္ႏွင့္ ပဋိစၥသမုပၸါဒ္ျဖတ္မွသာ သာသနာတြင္းသားေရာက္ (၁၈-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">809</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=pcc9B4SC1U4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=810">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=pcc9B4SC1U4&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=810">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၀၉။ သံသရာခရီးစဥ္၏ ထြက္လမ္းတရားေတာ္ (၁၈-၉-၁၉၆၂) by mogok sayadaw 1 year ago 50 minutes 5 views" title="၈၀၉။ သံသရာခရီးစဥ္၏ ထြက္လမ္းတရားေတာ္ (၁၈-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၀၉။ သံသရာခရီးစဥ္၏ ထြက္လမ္းတရားေတာ္ (၁၈-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">810</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=z9tZvKvYfKU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=811">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=z9tZvKvYfKU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=811">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၁၀။ အာသ၀ခ်ဳပ္ေႀကာင္းတရားေတာ္ (၁၉-၉-၁၉၆၂) by mogok sayadaw 1 year ago 48 minutes 4 views" title="၈၁၀။ အာသ၀ခ်ဳပ္ေႀကာင္းတရားေတာ္ (၁၉-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၁၀။ အာသ၀ခ်ဳပ္ေႀကာင္းတရားေတာ္ (၁၉-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">811</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zeDdmNnGuC0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=812">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zeDdmNnGuC0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=812">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:53
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၁၁။ ဒိ႒ိခြာၿပီးမွ ၀ိပႆနာရႈရန္တရားေတာ္ (၂၀-၉-၁၉၆၂) by mogok sayadaw 1 year ago 52 minutes 3 views" title="၈၁၁။ ဒိ႒ိခြာၿပီးမွ ၀ိပႆနာရႈရန္တရားေတာ္ (၂၀-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၁၁။ ဒိ႒ိခြာၿပီးမွ ၀ိပႆနာရႈရန္တရားေတာ္ (၂၀-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">812</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Hxn3LiKr_PU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=813">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Hxn3LiKr_PU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=813">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၁၂။ အႀကားအျမင္ရွိသူႏွင့္ မရွိသူေ၀ဒနာသုံးသပ္ႀကပုံ (၂၃-၉-၁၉၆၂) by mogok sayadaw 1 year ago 48 minutes 8 views" title="၈၁၂။ အႀကားအျမင္ရွိသူႏွင့္ မရွိသူေ၀ဒနာသုံးသပ္ႀကပုံ (၂၃-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၁၂။ အႀကားအျမင္ရွိသူႏွင့္ မရွိသူေ၀ဒနာသုံးသပ္ႀကပုံ (၂၃-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">813</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mV1aMEHmF-k&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=814">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mV1aMEHmF-k&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=814">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၁၃။ ေ၀ဒနာႏုပႆနာရႈနည္းတရားေတာ္ (၂၄-၉-၁၉၆၂) by mogok sayadaw 1 year ago 50 minutes 5 views" title="၈၁၃။ ေ၀ဒနာႏုပႆနာရႈနည္းတရားေတာ္ (၂၄-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၁၃။ ေ၀ဒနာႏုပႆနာရႈနည္းတရားေတာ္ (၂၄-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">814</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=GKY3VfTiEW0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=815">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=GKY3VfTiEW0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=815">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:26
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၁၄။ နိဗၺာန္ကုိခႏၶာဖုံးေနပုံ (၂၈-၉-၁၉၆၂) by mogok sayadaw 1 year ago 55 minutes 3 views" title="၈၁၄။ နိဗၺာန္ကုိခႏၶာဖုံးေနပုံ (၂၈-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၁၄။ နိဗၺာန္ကုိခႏၶာဖုံးေနပုံ (၂၈-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">815</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=AGOuwpA3l0o&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=816">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=AGOuwpA3l0o&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=816">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၁၅။ ေလာဘ၊ ေဒါသ၊ ေမာဟ ခ်ဳပ္ေႀကာင္းတရားေတာ္ (၂-၁၀-၁၉၆၂) by mogok sayadaw 1 year ago 57 minutes 31 views" title="၈၁၅။ ေလာဘ၊ ေဒါသ၊ ေမာဟ ခ်ဳပ္ေႀကာင္းတရားေတာ္ (၂-၁၀-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၁၅။ ေလာဘ၊ ေဒါသ၊ ေမာဟ ခ်ဳပ္ေႀကာင္းတရားေတာ္ (၂-၁၀-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">816</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Vnr7CZxu588&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=817">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Vnr7CZxu588&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=817">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၁၆။ ဦးခ်စ္လွ + ေဒၚေသာင္းတုိ႔၏သားရွင္ျပဳ အလွဴေရစက္ခ် (၁၂-၁၀-၁၉၆၂) by mogok sayadaw 1 year ago 56 minutes 17 views" title="၈၁၆။ ဦးခ်စ္လွ + ေဒၚေသာင္းတုိ႔၏သားရွင္ျပဳ အလွဴေရစက္ခ် (၁၂-၁၀-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၁၆။ ဦးခ်စ္လွ + ေဒၚေသာင္းတုိ႔၏သားရွင္ျပဳ အလွဴေရစက္ခ် (၁၂-၁၀-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">817</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=9l-lzFUslJ8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=818">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=9l-lzFUslJ8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=818">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၁၇။ သပိတ္သြတ္လြတ္တရားေတာ္ (၁၃-၁၀-၁၉၆၂) by mogok sayadaw 1 year ago 53 minutes 5 views" title="၈၁၇။ သပိတ္သြတ္လြတ္တရားေတာ္ (၁၃-၁၀-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၁၇။ သပိတ္သြတ္လြတ္တရားေတာ္ (၁၃-၁၀-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">818</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zH65Huw5OJs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=819">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zH65Huw5OJs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=819">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၁၈။ အပါယ္ေရေသာက္ျမစ္ျဖတ္နည္းတရားေတာ္ (၁၄-၁၀-၁၉၆၂) by mogok sayadaw 1 year ago 45 minutes 4 views" title="၈၁၈။ အပါယ္ေရေသာက္ျမစ္ျဖတ္နည္းတရားေတာ္ (၁၄-၁၀-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၁၈။ အပါယ္ေရေသာက္ျမစ္ျဖတ္နည္းတရားေတာ္ (၁၄-၁၀-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">819</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=NWZmyMbV7hI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=820">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=NWZmyMbV7hI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=820">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၁၉။ ရွင္အႏုရာဓသုတၱန္(၁) by mogok sayadaw 1 year ago 53 minutes 6 views" title="၈၁၉။ ရွင္အႏုရာဓသုတၱန္(၁)">
၈၁၉။ ရွင္အႏုရာဓသုတၱန္(၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">820</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=f-Lterkz8Y0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=821">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=f-Lterkz8Y0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=821">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၂၀။ ရွင္အႏုရာဓသုတၱန္(၂) by mogok sayadaw 1 year ago 45 minutes 2 views" title="၈၂၀။ ရွင္အႏုရာဓသုတၱန္(၂)">
၈၂၀။ ရွင္အႏုရာဓသုတၱန္(၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">821</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-6INYEX5e9w&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=822">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-6INYEX5e9w&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=822">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၂၁။ ရွင္အႏုရာဓသုတၱန္(၃) by mogok sayadaw 1 year ago 52 minutes 8 views" title="၈၂၁။ ရွင္အႏုရာဓသုတၱန္(၃)">
၈၂၁။ ရွင္အႏုရာဓသုတၱန္(၃)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">822</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=iHOuilfR1pE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=823">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=iHOuilfR1pE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=823">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၂၂။ ရွင္အႏုရာဓသုတၱန္(၄) by mogok sayadaw 1 year ago 54 minutes 3 views" title="၈၂၂။ ရွင္အႏုရာဓသုတၱန္(၄)">
၈၂၂။ ရွင္အႏုရာဓသုတၱန္(၄)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">823</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=7ewHR4w88o0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=824">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=7ewHR4w88o0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=824">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၂၃။ ရွင္အႏုရာဓသုတၱန္(၅) by mogok sayadaw 1 year ago 52 minutes 7 views" title="၈၂၃။ ရွင္အႏုရာဓသုတၱန္(၅)">
၈၂၃။ ရွင္အႏုရာဓသုတၱန္(၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">824</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=t1LhVvq351I&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=825">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=t1LhVvq351I&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=825">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="42 minutes">
42:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၂၄။ ရွင္အႏုရာဓသုတၱန္(၆) by mogok sayadaw 1 year ago 42 minutes 4 views" title="၈၂၄။ ရွင္အႏုရာဓသုတၱန္(၆)">
၈၂၄။ ရွင္အႏုရာဓသုတၱန္(၆)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">825</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=b-rKLrnKSek&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=826">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=b-rKLrnKSek&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=826">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၂၅။ ရွင္အႏုရာဓသုတၱန္(၇) by mogok sayadaw 1 year ago 58 minutes 7 views" title="၈၂၅။ ရွင္အႏုရာဓသုတၱန္(၇)">
၈၂၅။ ရွင္အႏုရာဓသုတၱန္(၇)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">826</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2Ul5uqJfRTc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=827">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2Ul5uqJfRTc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=827">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:13
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၂၆။ သိဂၤါရ၀သုတၱန္(၁) by mogok sayadaw 1 year ago 56 minutes 9 views" title="၈၂၆။ သိဂၤါရ၀သုတၱန္(၁)">
၈၂၆။ သိဂၤါရ၀သုတၱန္(၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">827</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=GURHkzGZxqE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=828">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=GURHkzGZxqE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=828">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:38
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၂၇။ သိဂၤါရ၀သုတၱန္(၂) by mogok sayadaw 1 year ago 53 minutes 4 views" title="၈၂၇။ သိဂၤါရ၀သုတၱန္(၂)">
၈၂၇။ သိဂၤါရ၀သုတၱန္(၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">828</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=8eYBiMUnTEw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=829">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=8eYBiMUnTEw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=829">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:41
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၂၈။ သိဂၤါရ၀သုတၱန္(၃) by mogok sayadaw 1 year ago 51 minutes 6 views" title="၈၂၈။ သိဂၤါရ၀သုတၱန္(၃)">
၈၂၈။ သိဂၤါရ၀သုတၱန္(၃)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">829</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=8TaG9MJkhgY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=830">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=8TaG9MJkhgY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=830">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၂၉။ သိဂၤါရ၀သုတၱန္(၄) by mogok sayadaw 1 year ago 55 minutes 5 views" title="၈၂၉။ သိဂၤါရ၀သုတၱန္(၄)">
၈၂၉။ သိဂၤါရ၀သုတၱန္(၄)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">830</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ct9zid8jrdw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=831">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ct9zid8jrdw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=831">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer" aria-label="၈၃၀။ သိဂၤါရ၀သုတၱန္(၅) by mogok sayadaw 1 year ago 54 minutes 3 views" title="၈၃၀။ သိဂၤါရ၀သုတၱန္(၅)">
၈၃၀။ သိဂၤါရ၀သုတၱန္(၅)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">831</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Wb71C6IcUJE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=832">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Wb71C6IcUJE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=832">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၃၁။ ရွင္ဘဒၶႏွင့္ ရွင္အာနႏၵာ အေမးအေျဖ၊ ျမတ္ေသာအက်င့္ႏွင့္ ျမတ္ေသာအက်င့္အဆံုး တရားေတာ္(၁) by mogok sayadaw 1 year ago 55 minutes 14 views" title="၈၃၁။ ရွင္ဘဒၶႏွင့္ ရွင္အာနႏၵာ အေမးအေျဖ၊ ျမတ္ေသာအက်င့္ႏွင့္ ျမတ္ေသာအက်င့္အဆံုး တရားေတာ္(၁)" style="font-family: ZawGyi-One !important;">
၈၃၁။ ရွင္ဘဒၶႏွင့္ ရွင္အာနႏၵာ အေမးအေျဖ၊ ျမတ္ေသာအက်င့္ႏွင့္ ျမတ္ေသာအက်င့္အဆံုး တရားေတာ္(၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">832</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=r5Go4y6M-eE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=833">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=r5Go4y6M-eE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=833">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၃၂။ ရွင္ဘဒၶႏွင့္ ရွင္အာနႏၵာ အေမးအေျဖ၊ ျမတ္ေသာအက်င့္ႏွင့္ ျမတ္ေသာအက်င့္အဆံုး တရားေတာ္(၂) by mogok sayadaw 1 year ago 54 minutes 15 views" title="၈၃၂။ ရွင္ဘဒၶႏွင့္ ရွင္အာနႏၵာ အေမးအေျဖ၊ ျမတ္ေသာအက်င့္ႏွင့္ ျမတ္ေသာအက်င့္အဆံုး တရားေတာ္(၂)" style="font-family: ZawGyi-One !important;">
၈၃၂။ ရွင္ဘဒၶႏွင့္ ရွင္အာနႏၵာ အေမးအေျဖ၊ ျမတ္ေသာအက်င့္ႏွင့္ ျမတ္ေသာအက်င့္အဆံုး တရားေတာ္(၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">833</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=QBNctUTfbrQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=834">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=QBNctUTfbrQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=834">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၃၃။ ရွင္ဘဒၶႏွင့္ ရွင္အာနႏၵာ အေမးအေျဖ၊ ျမတ္ေသာအက်င့္ႏွင့္ ျမတ္ေသာအက်င့္အဆံုး တရားေတာ္(၃) by mogok sayadaw 1 year ago 50 minutes 14 views" title="၈၃၃။ ရွင္ဘဒၶႏွင့္ ရွင္အာနႏၵာ အေမးအေျဖ၊ ျမတ္ေသာအက်င့္ႏွင့္ ျမတ္ေသာအက်င့္အဆံုး တရားေတာ္(၃)" style="font-family: ZawGyi-One !important;">
၈၃၃။ ရွင္ဘဒၶႏွင့္ ရွင္အာနႏၵာ အေမးအေျဖ၊ ျမတ္ေသာအက်င့္ႏွင့္ ျမတ္ေသာအက်င့္အဆံုး တရားေတာ္(၃)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">834</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TDbTF9yNhoc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=835">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TDbTF9yNhoc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=835">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:00:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၃၄။ တရားထိုင္နည္း တရားေတာ္(၁) by mogok sayadaw 1 year ago 1 hour 4,023 views" title="၈၃၄။ တရားထိုင္နည္း တရားေတာ္(၁)" style="font-family: ZawGyi-One !important;">
၈၃၄။ တရားထိုင္နည္း တရားေတာ္(၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">835</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=FhMyLBwyDiw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=836">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=FhMyLBwyDiw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=836">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:05
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၃၅။ တရားထိုင္နည္း တရားေတာ္(၂) by mogok sayadaw 1 year ago 56 minutes 475 views" title="၈၃၅။ တရားထိုင္နည္း တရားေတာ္(၂)" style="font-family: ZawGyi-One !important;">
၈၃၅။ တရားထိုင္နည္း တရားေတာ္(၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">836</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gf2EIMYAjpw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=837">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gf2EIMYAjpw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=837">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၃၆။ ပါကဋ အပါဋက တရားေတာ္ by mogok sayadaw 1 year ago 50 minutes 15 views" title="၈၃၆။ ပါကဋ အပါဋက တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၃၆။ ပါကဋ အပါဋက တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">837</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hGc3hfNymwQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=838">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hGc3hfNymwQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=838">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၃၇။ သမုဒယသစၥာ၏ အယုနေ႒ာသေဘာတရားေတာ္ by mogok sayadaw 1 year ago 55 minutes 10 views" title="၈၃၇။ သမုဒယသစၥာ၏ အယုနေ႒ာသေဘာတရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၃၇။ သမုဒယသစၥာ၏ အယုနေ႒ာသေဘာတရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">838</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=eHCdGDtCXCk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=839">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=eHCdGDtCXCk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=839">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၃၈။ ျဖစ္ပ်က္တစ္ခု တန္ဖိုး၊ မိုးေလးမ်ိဳးဥပမာျပ တရားေတာ္ by mogok sayadaw 1 year ago 1 hour 5 views" title="၈၃၈။ ျဖစ္ပ်က္တစ္ခု တန္ဖိုး၊ မိုးေလးမ်ိဳးဥပမာျပ တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၃၈။ ျဖစ္ပ်က္တစ္ခု တန္ဖိုး၊ မိုးေလးမ်ိဳးဥပမာျပ တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">839</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=hhVWek9RnQ0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=840">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=hhVWek9RnQ0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=840">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၃၉။ သခၤါရတရား ပ်က္တတ္သည္၊ အဲဒါမေမ့နဲ႔ တရားေတာ္ by mogok sayadaw 1 year ago 54 minutes 19 views" title="၈၃၉။ သခၤါရတရား ပ်က္တတ္သည္၊ အဲဒါမေမ့နဲ႔ တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၃၉။ သခၤါရတရား ပ်က္တတ္သည္၊ အဲဒါမေမ့နဲ႔ တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">840</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wRapSzh8dck&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=841">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wRapSzh8dck&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=841">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၄၀။ ၾကက္ႏွင့္ခ်ည္တိုင္၊ ဆန္ပံုဥပမာျပ by mogok sayadaw 1 year ago 1 hour 6 views" title="၈၄၀။ ၾကက္ႏွင့္ခ်ည္တိုင္၊ ဆန္ပံုဥပမာျပ" style="font-family: ZawGyi-One !important;">
၈၄၀။ ၾကက္ႏွင့္ခ်ည္တိုင္၊ ဆန္ပံုဥပမာျပ
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">841</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BuCYFKr36WI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=842">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BuCYFKr36WI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=842">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="42 minutes">
42:15
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၄၁။ နိဗၺာန္ႏွင့္ အနီးဆံုး တရားေတာ္ by mogok sayadaw 1 year ago 42 minutes 6 views" title="၈၄၁။ နိဗၺာန္ႏွင့္ အနီးဆံုး တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၄၁။ နိဗၺာန္ႏွင့္ အနီးဆံုး တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">842</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=DKtEZbhXBXM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=843">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=DKtEZbhXBXM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=843">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၄၂။ ဧဟိပႆိေကာတရားေတာ္ by mogok sayadaw 1 year ago 55 minutes 6 views" title="၈၄၂။ ဧဟိပႆိေကာတရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၄၂။ ဧဟိပႆိေကာတရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">843</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Id9nn7lexfc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=844">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Id9nn7lexfc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=844">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၄၃။ သႏၵိ႒ိေကာ တရားေတာ္ by mogok sayadaw 1 year ago 52 minutes 4 views" title="၈၄၃။ သႏၵိ႒ိေကာ တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၄၃။ သႏၵိ႒ိေကာ တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">844</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=p-GPlyq_ePw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=845">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=p-GPlyq_ePw&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=845">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၄၄။ အိုနာေသလြတ္ရန္ မဂၢင္အလုပ္လုပ္ပါ by mogok sayadaw 1 year ago 1 hour, 2 minutes 9 views" title="၈၄၄။ အိုနာေသလြတ္ရန္ မဂၢင္အလုပ္လုပ္ပါ" style="font-family: ZawGyi-One !important;">
၈၄၄။ အိုနာေသလြတ္ရန္ မဂၢင္အလုပ္လုပ္ပါ
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">845</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=H21nJs1ir3Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=846">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=H21nJs1ir3Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=846">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:06
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၄၅။ ေလာကသံုးပါးလြတ္ရာ နိဗၺာန္တရားေတာ္ by mogok sayadaw 1 year ago 52 minutes 6 views" title="၈၄၅။ ေလာကသံုးပါးလြတ္ရာ နိဗၺာန္တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၄၅။ ေလာကသံုးပါးလြတ္ရာ နိဗၺာန္တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">846</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=9NPh3mHr7wg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=847">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=9NPh3mHr7wg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=847">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၄၆။ တဏွာ၊ မာန၊ ဒိ႒ိတရားေတာ္ by mogok sayadaw 1 year ago 57 minutes 6 views" title="၈၄၆။ တဏွာ၊ မာန၊ ဒိ႒ိတရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၄၆။ တဏွာ၊ မာန၊ ဒိ႒ိတရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">847</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2v059Y252wI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=848">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2v059Y252wI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=848">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:34
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၄၇။ အေသရွိမွ အေသလြတ္ရာ ရွာသင့္ေၾကာင္း တရားေတာ္ by mogok sayadaw 1 year ago 53 minutes 4 views" title="၈၄၇။ အေသရွိမွ အေသလြတ္ရာ ရွာသင့္ေၾကာင္း တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၄၇။ အေသရွိမွ အေသလြတ္ရာ ရွာသင့္ေၾကာင္း တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">848</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=3xzbvv9gIuY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=849">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=3xzbvv9gIuY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=849">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:39
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၄၈။ ရွာမွီးျခင္း မလြဲၾကေစရန္ တရားေတာ္ by mogok sayadaw 1 year ago 51 minutes 5 views" title="၈၄၈။ ရွာမွီးျခင္း မလြဲၾကေစရန္ တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၄၈။ ရွာမွီးျခင္း မလြဲၾကေစရန္ တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">849</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WZDmVi_XcJs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=850">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WZDmVi_XcJs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=850">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၄၉။ ႏွလံုးသြင္းမွားမႈေၾကာင့္ ဒိ႒ိျဖစ္ရပံု by mogok sayadaw 1 year ago 56 minutes 7 views" title="၈၄၉။ ႏွလံုးသြင္းမွားမႈေၾကာင့္ ဒိ႒ိျဖစ္ရပံု" style="font-family: ZawGyi-One !important;">
၈၄၉။ ႏွလံုးသြင္းမွားမႈေၾကာင့္ ဒိ႒ိျဖစ္ရပံု
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">850</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Ox7rsrgpmmU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=851">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Ox7rsrgpmmU&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=851">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၅၀။ ျဗဟၼာတစ္ေသာင္းကၽြတ္တန္း၀င္ပံု၊ ဗကျဗဟၼာၾကီး တရားေတာ္ by mogok sayadaw 1 year ago 51 minutes 3 views" title="၈၅၀။ ျဗဟၼာတစ္ေသာင္းကၽြတ္တန္း၀င္ပံု၊ ဗကျဗဟၼာၾကီး တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၅၀။ ျဗဟၼာတစ္ေသာင္းကၽြတ္တန္း၀င္ပံု၊ ဗကျဗဟၼာၾကီး တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">851</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=j5G7kvtQ8-8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=852">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=j5G7kvtQ8-8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=852">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၅၁။ ကံသည္ အရိပ္ကဲ့သို႔ လိုက္မလိုက္တရားေတာ္(၁) by mogok sayadaw 1 year ago 57 minutes 7 views" title="၈၅၁။ ကံသည္ အရိပ္ကဲ့သို႔ လိုက္မလိုက္တရားေတာ္(၁)" style="font-family: ZawGyi-One !important;">
၈၅၁။ ကံသည္ အရိပ္ကဲ့သို႔ လိုက္မလိုက္တရားေတာ္(၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">852</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Ehm3Uk22ABo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=853">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Ehm3Uk22ABo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=853">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၅၂။ ကံသည္ အရိပ္ကဲ့သို႔ လိုက္မလိုက္တရားေတာ္(၂) by mogok sayadaw 1 year ago 51 minutes 4 views" title="၈၅၂။ ကံသည္ အရိပ္ကဲ့သို႔ လိုက္မလိုက္တရားေတာ္(၂)" style="font-family: ZawGyi-One !important;">
၈၅၂။ ကံသည္ အရိပ္ကဲ့သို႔ လိုက္မလိုက္တရားေတာ္(၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">853</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=aM6WGDXya3k&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=854">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=aM6WGDXya3k&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=854">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၅၃။ ကိုယ္တိုင္ၾကည့္လွ်င္၊ အကာလိေကာတရားေတာ္ by mogok sayadaw 1 year ago 52 minutes 8 views" title="၈၅၃။ ကိုယ္တိုင္ၾကည့္လွ်င္၊ အကာလိေကာတရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၅၃။ ကိုယ္တိုင္ၾကည့္လွ်င္၊ အကာလိေကာတရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">854</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4lea9bhnOH0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=855">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4lea9bhnOH0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=855">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၅၄။ ၀ိဇၨာႏွင့္ စရဏ၊ ရွင္ဥပ၀ါနႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ by mogok sayadaw 1 year ago 57 minutes 12 views" title="၈၅၄။ ၀ိဇၨာႏွင့္ စရဏ၊ ရွင္ဥပ၀ါနႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ" style="font-family: ZawGyi-One !important;">
၈၅၄။ ၀ိဇၨာႏွင့္ စရဏ၊ ရွင္ဥပ၀ါနႏွင့္ ရွင္သာရိပုတၱရာ အေမးအေျဖ
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">855</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=kwk7u_d_10Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=856">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=kwk7u_d_10Y&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=856">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၅၅။ လူတိုင္းခ်မ္းသာရွာေပမယ့္ ဆင္းရဲေတြ႔ပံု by mogok sayadaw 1 year ago 52 minutes 4 views" title="၈၅၅။ လူတိုင္းခ်မ္းသာရွာေပမယ့္ ဆင္းရဲေတြ႔ပံု" style="font-family: ZawGyi-One !important;">
၈၅၅။ လူတိုင္းခ်မ္းသာရွာေပမယ့္ ဆင္းရဲေတြ႔ပံု
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">856</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=XxuTjmYYnb8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=857">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=XxuTjmYYnb8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=857">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၅၆။ ေ၀ဒနာကို သေဘာျမင္ေအာင္ၾကည့္ရန္ တရားေတာ္ by mogok sayadaw 1 year ago 50 minutes 9 views" title="၈၅၆။ ေ၀ဒနာကို သေဘာျမင္ေအာင္ၾကည့္ရန္ တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၅၆။ ေ၀ဒနာကို သေဘာျမင္ေအာင္ၾကည့္ရန္ တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">857</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=WWIWBR3v2no&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=858">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=WWIWBR3v2no&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=858">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၅၇။ ဒိ႒ိျပဳတ္ရန္ ပဋိစၥသမုပၸါဒ္ နားလည္ရမည္တရားေတာ္ by mogok sayadaw 1 year ago 53 minutes 7 views" title="၈၅၇။ ဒိ႒ိျပဳတ္ရန္ ပဋိစၥသမုပၸါဒ္ နားလည္ရမည္တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၅၇။ ဒိ႒ိျပဳတ္ရန္ ပဋိစၥသမုပၸါဒ္ နားလည္ရမည္တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">858</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qlH8xPBqYFs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=859">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qlH8xPBqYFs&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=859">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:32
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၅၈။ ဒုကၡသစၥာရွင္းတရားေတာ္ by mogok sayadaw 1 year ago 54 minutes 6 views" title="၈၅၈။ ဒုကၡသစၥာရွင္းတရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၅၈။ ဒုကၡသစၥာရွင္းတရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">859</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-bsfwCOI8bQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=860">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-bsfwCOI8bQ&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=860">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:48
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၅၉။ သႏၵိ႒ိေကာ၊ အကာလိေကာတရားေတာ္၊ မိလကၡရဟန္းဥပမာ by mogok sayadaw 1 year ago 50 minutes 6 views" title="၈၅၉။ သႏၵိ႒ိေကာ၊ အကာလိေကာတရားေတာ္၊ မိလကၡရဟန္းဥပမာ" style="font-family: ZawGyi-One !important;">
၈၅၉။ သႏၵိ႒ိေကာ၊ အကာလိေကာတရားေတာ္၊ မိလကၡရဟန္းဥပမာ
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">860</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=uVuUTQ2IX4E&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=861">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=uVuUTQ2IX4E&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=861">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 8 minutes">
1:08:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၆၀။ ကာလိက၊ အကာလိက အဆက္တရားေတာ္ by mogok sayadaw 1 year ago 1 hour, 8 minutes 8 views" title="၈၆၀။ ကာလိက၊ အကာလိက အဆက္တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၆၀။ ကာလိက၊ အကာလိက အဆက္တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">861</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BfGKV_g0vNM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=862">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BfGKV_g0vNM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=862">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၆၁။ ေနာင္တစ္ဖန္ျဖစ္ျခင္းသည္ ဒုကၡ၊ ေနာင္တစ္ဖန္မျဖစ္ျခင္းသည္ သုခ (ကာယမိမံဂါထာရွင္း) by mogok sayadaw 1 year ago 57 minutes 6 views" title="၈၆၁။ ေနာင္တစ္ဖန္ျဖစ္ျခင္းသည္ ဒုကၡ၊ ေနာင္တစ္ဖန္မျဖစ္ျခင္းသည္ သုခ (ကာယမိမံဂါထာရွင္း)" style="font-family: ZawGyi-One !important;">
၈၆၁။ ေနာင္တစ္ဖန္ျဖစ္ျခင္းသည္ ဒုကၡ၊ ေနာင္တစ္ဖန္မျဖစ္ျခင္းသည္ သုခ (ကာယမိမံဂါထာရွင္း)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">862</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=2unvuQu5-0c&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=863">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=2unvuQu5-0c&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=863">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 14 minutes">
1:14:07
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၆၂။ ကာလိက၊ အကာလိက အဆံုးတရားေတာ္ by mogok sayadaw 1 year ago 1 hour, 14 minutes 4 views" title="၈၆၂။ ကာလိက၊ အကာလိက အဆံုးတရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၆၂။ ကာလိက၊ အကာလိက အဆံုးတရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">863</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ft-S6rH4bic&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=864">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ft-S6rH4bic&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=864">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="49 minutes">
49:23
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၆၃။ ကိုယ့္စိတ္ ကိုယ္ဆံုးမရတာသည္ အခက္ဆံုး တရားေတာ္ by mogok sayadaw 1 year ago 49 minutes 4 views" title="၈၆၃။ ကိုယ့္စိတ္ ကိုယ္ဆံုးမရတာသည္ အခက္ဆံုး တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၆၃။ ကိုယ့္စိတ္ ကိုယ္ဆံုးမရတာသည္ အခက္ဆံုး တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">864</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EzJmR9giyt0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=865">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EzJmR9giyt0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=865">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၆၄။ ဇာတိ၊ ဇရာ၊ မရဏတုိ႔ကို ထမ္းရြက္၍ အႏွိပ္စက္ခံၿပီး တရားနာေနၾကပံု by mogok sayadaw 1 year ago 54 minutes 9 views" title="၈၆၄။ ဇာတိ၊ ဇရာ၊ မရဏတုိ႔ကို ထမ္းရြက္၍ အႏွိပ္စက္ခံၿပီး တရားနာေနၾကပံု" style="font-family: ZawGyi-One !important;">
၈၆၄။ ဇာတိ၊ ဇရာ၊ မရဏတုိ႔ကို ထမ္းရြက္၍ အႏွိပ္စက္ခံၿပီး တရားနာေနၾကပံု
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">865</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1VE2WDChKrg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=866">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1VE2WDChKrg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=866">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:51
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၆၅။ နိဗၺာန္အရွာတည့္ရန္ တရားေတာ္ by mogok sayadaw 1 year ago 50 minutes 5 views" title="၈၆၅။ နိဗၺာန္အရွာတည့္ရန္ တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၆၅။ နိဗၺာန္အရွာတည့္ရန္ တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">866</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ctGyDi0Iw8g&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=867">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ctGyDi0Iw8g&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=867">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၆၆။ ဒိ႒ိ ၀ိစိကိစၦာသတ္ေရး တရားေတာ္ by mogok sayadaw 1 year ago 52 minutes 15 views" title="၈၆၆။ ဒိ႒ိ ၀ိစိကိစၦာသတ္ေရး တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၆၆။ ဒိ႒ိ ၀ိစိကိစၦာသတ္ေရး တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">867</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Uliy-FGtBJM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=868">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Uliy-FGtBJM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=868">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၆၇။ အဂၢိ၀စၦသုတ္၊ ဒိ႒ိျဖဳတ္ေရး တရားေတာ္ by mogok sayadaw 1 year ago 54 minutes 4 views" title="၈၆၇။ အဂၢိ၀စၦသုတ္၊ ဒိ႒ိျဖဳတ္ေရး တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၆၇။ အဂၢိ၀စၦသုတ္၊ ဒိ႒ိျဖဳတ္ေရး တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">868</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=U2TKtyBbJzk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=869">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=U2TKtyBbJzk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=869">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:52
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၆၈။ သာသနာတြင္းအစ ျဖစ္ပ်က္ျမင္ရာက နိႆတၱ နိဇၨ၀ႏွင့္ ေ၀ဒနာရွင္းတရားေတာ္ by mogok sayadaw 1 year ago 56 minutes 6 views" title="၈၆၈။ သာသနာတြင္းအစ ျဖစ္ပ်က္ျမင္ရာက နိႆတၱ နိဇၨ၀ႏွင့္ ေ၀ဒနာရွင္းတရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၆၈။ သာသနာတြင္းအစ ျဖစ္ပ်က္ျမင္ရာက နိႆတၱ နိဇၨ၀ႏွင့္ ေ၀ဒနာရွင္းတရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">869</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=fJwSzT9UJ9o&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=870">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=fJwSzT9UJ9o&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=870">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၆၉။ သံသရာသစ္ငုတ္ မျဖစ္ေစေရး တရားေတာ္ by mogok sayadaw 1 year ago 56 minutes 6 views" title="၈၆၉။ သံသရာသစ္ငုတ္ မျဖစ္ေစေရး တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၆၉။ သံသရာသစ္ငုတ္ မျဖစ္ေစေရး တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">870</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=9lWVEV52bz8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=871">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=9lWVEV52bz8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=871">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:56
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၇၀။ ၀ိပႆနာႏွစ္မ်ိဳး တရားေတာ္ by mogok sayadaw 1 year ago 54 minutes 7 views" title="၈၇၀။ ၀ိပႆနာႏွစ္မ်ိဳး တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၇၀။ ၀ိပႆနာႏွစ္မ်ိဳး တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">871</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=3XdK5r4sWag&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=872">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=3XdK5r4sWag&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=872">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="44 minutes">
44:50
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၇၁။ သခင္၀တင္ ေလွ်ာက္ထားခ်က္(၁) by mogok sayadaw 1 year ago 44 minutes 4 views" title="၈၇၁။ သခင္၀တင္ ေလွ်ာက္ထားခ်က္(၁)" style="font-family: ZawGyi-One !important;">
၈၇၁။ သခင္၀တင္ ေလွ်ာက္ထားခ်က္(၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">872</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=s121qg24AyY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=873">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=s121qg24AyY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=873">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၇၂။ အ၀ိဇၨာႏွင့္တဏွာက တရားေတာ္ by mogok sayadaw 1 year ago 1 hour 5 views" title="၈၇၂။ အ၀ိဇၨာႏွင့္တဏွာက တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၇၂။ အ၀ိဇၨာႏွင့္တဏွာက တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">873</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=0iKSeZHadW8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=874">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=0iKSeZHadW8&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=874">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၇၃။ သခင္၀တင္ ေလွ်ာက္ထားခ်က္(၂) by mogok sayadaw 1 year ago 59 minutes 4 views" title="၈၇၃။ သခင္၀တင္ ေလွ်ာက္ထားခ်က္(၂)" style="font-family: ZawGyi-One !important;">
၈၇၃။ သခင္၀တင္ ေလွ်ာက္ထားခ်က္(၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">874</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qWSKYm4EprE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=875">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qWSKYm4EprE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=875">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၇၄။ ေ၀ဒနာရွဳနည္းတရားေတာ္ by mogok sayadaw 1 year ago 52 minutes 10 views" title="၈၇၄။ ေ၀ဒနာရွဳနည္းတရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၇၄။ ေ၀ဒနာရွဳနည္းတရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">875</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-PbE3Bh2Uok&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=876">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-PbE3Bh2Uok&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=876">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:35
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၇၅။ ေဒါက္တာသာလွ၏ အလွဴေရစက္ခ် တရားေတာ္ by mogok sayadaw 1 year ago 46 minutes 2 views" title="၈၇၅။ ေဒါက္တာသာလွ၏ အလွဴေရစက္ခ် တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၇၅။ ေဒါက္တာသာလွ၏ အလွဴေရစက္ခ် တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">876</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=EPh55ZABbzg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=877">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=EPh55ZABbzg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=877">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၇၆။ ၀ိတက္သံုးမ်ိဳးသည္ ေရွ႕ေျပး၊ ဒိ႒ိသည္ ေနာက္လိုက္ျဖစ္ပံု တရားေတာ္ by mogok sayadaw 1 year ago 55 minutes 2 views" title="၈၇၆။ ၀ိတက္သံုးမ်ိဳးသည္ ေရွ႕ေျပး၊ ဒိ႒ိသည္ ေနာက္လိုက္ျဖစ္ပံု တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၇၆။ ၀ိတက္သံုးမ်ိဳးသည္ ေရွ႕ေျပး၊ ဒိ႒ိသည္ ေနာက္လိုက္ျဖစ္ပံု တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">877</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TyyVxjVopUo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=878">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TyyVxjVopUo&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=878">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:36
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၇၇။ စိတ္ကိုပင့္ကူဥပမာျပ၍ ၀ိပႆနာရွဳရန္ တရားေတာ္ by mogok sayadaw 1 year ago 1 hour 5 views" title="၈၇၇။ စိတ္ကိုပင့္ကူဥပမာျပ၍ ၀ိပႆနာရွဳရန္ တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၇၇။ စိတ္ကိုပင့္ကူဥပမာျပ၍ ၀ိပႆနာရွဳရန္ တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">878</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=r67r65pU7HI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=879">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=r67r65pU7HI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=879">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:11
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၇၈။ ကီသုေကာပမသုတ္၊ အုိ နာ ေသ သံသရာလည္မႈ တရားေတာ္(အစ) by mogok sayadaw 1 year ago 46 minutes 5 views" title="၈၇၈။ ကီသုေကာပမသုတ္၊ အုိ နာ ေသ သံသရာလည္မႈ တရားေတာ္(အစ)" style="font-family: ZawGyi-One !important;">
၈၇၈။ ကီသုေကာပမသုတ္၊ အုိ နာ ေသ သံသရာလည္မႈ တရားေတာ္(အစ)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">879</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zmAENdvXrXI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=880">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zmAENdvXrXI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=880">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၇၉။ ေတာင္ၾကိပ္ပြဲႏွင့္ မဂၢျဗဟၼစရိယာ က်င့္ရန္တရားေတာ္ by mogok sayadaw 1 year ago 48 minutes 4 views" title="၈၇၉။ ေတာင္ၾကိပ္ပြဲႏွင့္ မဂၢျဗဟၼစရိယာ က်င့္ရန္တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၇၉။ ေတာင္ၾကိပ္ပြဲႏွင့္ မဂၢျဗဟၼစရိယာ က်င့္ရန္တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">880</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=wPmaet6oRwc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=881">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=wPmaet6oRwc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=881">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="36 minutes">
36:17
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၈၀။ ကီသုေကာပမသုတ္၊ အုိ နာ ေသ သံသရာလည္မႈ တရားေတာ္(အဆံုး) by mogok sayadaw 1 year ago 36 minutes 3 views" title="၈၈၀။ ကီသုေကာပမသုတ္၊ အုိ နာ ေသ သံသရာလည္မႈ တရားေတာ္(အဆံုး)" style="font-family: ZawGyi-One !important;">
၈၈၀။ ကီသုေကာပမသုတ္၊ အုိ နာ ေသ သံသရာလည္မႈ တရားေတာ္(အဆံုး)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">881</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Nr5z2P9nl40&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=882">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Nr5z2P9nl40&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=882">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="48 minutes">
48:01
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၈၁။ အေကာင္းဆံုးေသနည္း တရားေတာ္(အစ) by mogok sayadaw 1 year ago 48 minutes 3 views" title="၈၈၁။ အေကာင္းဆံုးေသနည္း တရားေတာ္(အစ)" style="font-family: ZawGyi-One !important;">
၈၈၁။ အေကာင္းဆံုးေသနည္း တရားေတာ္(အစ)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">882</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qyAK2wpvY80&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=883">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qyAK2wpvY80&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=883">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="33 minutes">
33:44
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၈၂။ အေကာင္းဆံုးေသနည္း တရားေတာ္(အဆံုး) by mogok sayadaw 1 year ago 33 minutes 7 views" title="၈၈၂။ အေကာင္းဆံုးေသနည္း တရားေတာ္(အဆံုး)" style="font-family: ZawGyi-One !important;">
၈၈၂။ အေကာင္းဆံုးေသနည္း တရားေတာ္(အဆံုး)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">883</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gXU2rk5RUpg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=884">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gXU2rk5RUpg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=884">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="57 minutes">
57:20
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၈၃။ သခၤါရတရားျဖစ္ေပၚပံုႏွင့္ အနတၱလကၡဏာ by mogok sayadaw 1 year ago 57 minutes 7 views" title="၈၈၃။ သခၤါရတရားျဖစ္ေပၚပံုႏွင့္ အနတၱလကၡဏာ" style="font-family: ZawGyi-One !important;">
၈၈၃။ သခၤါရတရားျဖစ္ေပၚပံုႏွင့္ အနတၱလကၡဏာ
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">884</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=qvuGS74NkNE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=885">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=qvuGS74NkNE&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=885">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:55
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၈၄။ သစၥာမ်က္လံုးသို႔ ေျပာင္းရန္တရားေတာ္ by mogok sayadaw 1 year ago 1 hour 12 views" title="၈၈၄။ သစၥာမ်က္လံုးသို႔ ေျပာင္းရန္တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၈၄။ သစၥာမ်က္လံုးသို႔ ေျပာင္းရန္တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">885</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=XdfuFQcCiNI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=886">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=XdfuFQcCiNI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=886">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/XdfuFQcCiNI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBMxUiBmiLR-8DGmWNJFzibkTSdwA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၈၅။ သတိေပး(၄)ခ်က္တရားေတာ္ by mogok sayadaw 1 year ago 54 minutes 9 views" title="၈၈၅။ သတိေပး(၄)ခ်က္တရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၈၅။ သတိေပး(၄)ခ်က္တရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">886</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=9y61HLu9c5Q&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=887">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=9y61HLu9c5Q&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=887">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/9y61HLu9c5Q/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBsqxqsaYWwx_AwnADwUbxyQtMWvA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၈၆။ အပါယ္လမ္းဖြင့္ၿပီး နိဗၺာန္လမ္းပိတ္ထားသည့္ နီ၀ရဏ(၅)ပါးတရားေတာ္ by mogok sayadaw 1 year ago 1 hour 7 views" title="၈၈၆။ အပါယ္လမ္းဖြင့္ၿပီး နိဗၺာန္လမ္းပိတ္ထားသည့္ နီ၀ရဏ(၅)ပါးတရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၈၆။ အပါယ္လမ္းဖြင့္ၿပီး နိဗၺာန္လမ္းပိတ္ထားသည့္ နီ၀ရဏ(၅)ပါးတရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">887</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=KF5qvamL-0I&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=888">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=KF5qvamL-0I&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=888">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/KF5qvamL-0I/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDnn5cuAc5XrCRLmad8GK046G8idw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:30
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၈၇။ ဥေစၦဒဒိ႒ိယူထားေသာ ယမကရဟန္း၀တၳဳ(၁) by mogok sayadaw 1 year ago 1 hour, 2 minutes 7 views" title="၈၈၇။ ဥေစၦဒဒိ႒ိယူထားေသာ ယမကရဟန္း၀တၳဳ(၁)" style="font-family: ZawGyi-One !important;">
၈၈၇။ ဥေစၦဒဒိ႒ိယူထားေသာ ယမကရဟန္း၀တၳဳ(၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">888</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=3mzN9gikAr0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=889">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=3mzN9gikAr0&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=889">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/3mzN9gikAr0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCh5j2R1olIAslmI0qeTeAA3BjsWw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၈၈။ ပဋိစၥသမုပၸါဒ္ႏွင့္ အာသေ၀ါတရား ခ်ဳပ္ပံု by mogok sayadaw 1 year ago 53 minutes 21 views" title="၈၈၈။ ပဋိစၥသမုပၸါဒ္ႏွင့္ အာသေ၀ါတရား ခ်ဳပ္ပံု" style="font-family: ZawGyi-One !important;">
၈၈၈။ ပဋိစၥသမုပၸါဒ္ႏွင့္ အာသေ၀ါတရား ခ်ဳပ္ပံု
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">889</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=o_ex4G9I4Sg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=890">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=o_ex4G9I4Sg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=890">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/o_ex4G9I4Sg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD_zCB50J8-k8tyK4AcvjzBqDb6rw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour, 2 minutes">
1:02:47
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၈၉။ ခုနစ္ႏွစ္သား သုခသာမေဏ ရဟႏၱာျဖစ္ပံု by mogok sayadaw 1 year ago 1 hour, 2 minutes 11 views" title="၈၈၉။ ခုနစ္ႏွစ္သား သုခသာမေဏ ရဟႏၱာျဖစ္ပံု" style="font-family: ZawGyi-One !important;">
၈၈၉။ ခုနစ္ႏွစ္သား သုခသာမေဏ ရဟႏၱာျဖစ္ပံု
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">890</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=YNcy5xo_3rg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=891">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=YNcy5xo_3rg&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=891">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/YNcy5xo_3rg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDnLc2fKlqWGLKMJ3zoK37Xv3ptYQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၉၀။ ဆီဆံုႏွင့္ ႏွမ္းဥပမာျပ by mogok sayadaw 1 year ago 56 minutes 10 views" title="၈၉၀။ ဆီဆံုႏွင့္ ႏွမ္းဥပမာျပ" style="font-family: ZawGyi-One !important;">
၈၉၀။ ဆီဆံုႏွင့္ ႏွမ္းဥပမာျပ
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">891</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=F9FKYiEbVgk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=892">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=F9FKYiEbVgk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=892">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/F9FKYiEbVgk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCidQZRL0kUs3Il3v8HLbPWwMg-Rw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၉၁။ ေက်ာက္ေတာင္ ဥပမာျပ နိဗၺာန္အေၾကာင္းရွင္ျပပံု တရားေတာ္ (၇-၉-၁၉၆၂) by mogok sayadaw 1 year ago 56 minutes 6 views" title="၈၉၁။ ေက်ာက္ေတာင္ ဥပမာျပ နိဗၺာန္အေၾကာင္းရွင္ျပပံု တရားေတာ္ (၇-၉-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၉၁။ ေက်ာက္ေတာင္ ဥပမာျပ နိဗၺာန္အေၾကာင္းရွင္ျပပံု တရားေတာ္ (၇-၉-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">892</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=1TFGVBOfpkk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=893">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=1TFGVBOfpkk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=893">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/1TFGVBOfpkk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBVe61A71cbU8m7cjyakaQIvEy58A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="58 minutes">
58:19
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၉၂။ ဆီခြက္မဖိတ္ ဥပမာျပ၍ အနိစၥမဂဉာဏ္ ကိုက္ညီရန္ တရားေတာ္ (၁၀-၁၀-၁၉၆၂) by mogok sayadaw 1 year ago 58 minutes 13 views" title="၈၉၂။ ဆီခြက္မဖိတ္ ဥပမာျပ၍ အနိစၥမဂဉာဏ္ ကိုက္ညီရန္ တရားေတာ္ (၁၀-၁၀-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၉၂။ ဆီခြက္မဖိတ္ ဥပမာျပ၍ အနိစၥမဂဉာဏ္ ကိုက္ညီရန္ တရားေတာ္ (၁၀-၁၀-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">893</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=FwlLronc4LI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=894">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=FwlLronc4LI&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=894">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/FwlLronc4LI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBwqKjFcYxbP95-JVWhpYyG9K0bTA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="55 minutes">
55:16
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၉၃။ ေသာတႏုတၱသတသုတ္ႏွင့္ ၀ဋ္သံုးပါး သင့္ပံုတရားေတာ္ by mogok sayadaw 1 year ago 55 minutes 15 views" title="၈၉၃။ ေသာတႏုတၱသတသုတ္ႏွင့္ ၀ဋ္သံုးပါး သင့္ပံုတရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၉၃။ ေသာတႏုတၱသတသုတ္ႏွင့္ ၀ဋ္သံုးပါး သင့္ပံုတရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">894</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=q9Qxgul-p7k&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=895">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=q9Qxgul-p7k&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=895">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/q9Qxgul-p7k/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLC4weHb76gK0ysDWvnm-grPnMfO_A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:37
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၉၄။ ခႏၶာကို မလိုခ်င္ေသာဉာဏ္ႏွင့္သြားမွ နိဗၺာန္ေရာက္မည္ by mogok sayadaw 1 year ago 53 minutes 7 views" title="၈၉၄။ ခႏၶာကို မလိုခ်င္ေသာဉာဏ္ႏွင့္သြားမွ နိဗၺာန္ေရာက္မည္" style="font-family: ZawGyi-One !important;">
၈၉၄။ ခႏၶာကို မလိုခ်င္ေသာဉာဏ္ႏွင့္သြားမွ နိဗၺာန္ေရာက္မည္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">895</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=BbXQJYYFQdk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=896">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=BbXQJYYFQdk&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=896">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/BbXQJYYFQdk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBL2Mx3KPa93_f56JnBgEMLN2Uj9A"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="52 minutes">
52:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၉၅။ အမတေ႒ာတရားေတာ္ by mogok sayadaw 1 year ago 52 minutes 17 views" title="၈၉၅။ အမတေ႒ာတရားေတာ္" style="font-family: ZawGyi-One !important;">
၈၉၅။ အမတေ႒ာတရားေတာ္
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">896</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=zqrhcVKROtY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=897">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=zqrhcVKROtY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=897">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/zqrhcVKROtY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD_kC8RadD3s4CIYLCCw_jFA2NMvQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="37 minutes">
37:09
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၉၆။ သစၥာသိလွ်င္ ဘာမွပူစရာမရွိပံု၊ ရထားၾကီးက ထြက္ေတာ့မယ္ မွီရံုေလးပဲ (၁၅-၁၀-၁၉၆၂) by mogok sayadaw 1 year ago 37 minutes 188 views" title="၈၉၆။ သစၥာသိလွ်င္ ဘာမွပူစရာမရွိပံု၊ ရထားၾကီးက ထြက္ေတာ့မယ္ မွီရံုေလးပဲ (၁၅-၁၀-၁၉၆၂)" style="font-family: ZawGyi-One !important;">
၈၉၆။ သစၥာသိလွ်င္ ဘာမွပူစရာမရွိပံု၊ ရထားၾကီးက ထြက္ေတာ့မယ္ မွီရံုေလးပဲ (၁၅-၁၀-၁၉၆၂)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">897</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=B82jWieZ5_w&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=898">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=B82jWieZ5_w&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=898">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/B82jWieZ5_w/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD8A_3jul0ZsFlaaKDpBtjQtfKFKA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="6 minutes, 8 seconds">
6:08
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၉၇။ မိုးကုတ္ဆရာေတာ္ဘုရားၾကီး၏ ရွစ္ပါးသီလေပး (၁၈-၁၁-၁၉၆၁) by mogok sayadaw 1 year ago 6 minutes, 8 seconds 407 views" title="၈၉၇။ မိုးကုတ္ဆရာေတာ္ဘုရားၾကီး၏ ရွစ္ပါးသီလေပး (၁၈-၁၁-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၈၉၇။ မိုးကုတ္ဆရာေတာ္ဘုရားၾကီး၏ ရွစ္ပါးသီလေပး (၁၈-၁၁-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">898</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=S0GearZFtlc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=899">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=S0GearZFtlc&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=899">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/S0GearZFtlc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDn_8aMgEWq1uQhKbjsIg9-vSuGdQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="11 minutes">
11:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၉၈။ မိုးကုတ္ဆရာေတာ္ဘုရားၾကီး၏ အာဟာရစားနည္း (၂-၁၂-၁၉၆၁) by mogok sayadaw 1 year ago 11 minutes 580 views" title="၈၉၈။ မိုးကုတ္ဆရာေတာ္ဘုရားၾကီး၏ အာဟာရစားနည္း (၂-၁၂-၁၉၆၁)" style="font-family: ZawGyi-One !important;">
၈၉၈။ မိုးကုတ္ဆရာေတာ္ဘုရားၾကီး၏ အာဟာရစားနည္း (၂-၁၂-၁၉၆၁)
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">899</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=L9WMiKJUIKM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=900">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=L9WMiKJUIKM&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=900">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/L9WMiKJUIKM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBH2bjVED8g6XnAUs2gTMl6WmuLsA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="8 minutes, 45 seconds">
8:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၈၉၉။ ထိနမိဒၶရွိေနလွ်င္ ေထာင္က်ေနသူႏွင့္ တူပံု by mogok sayadaw 1 year ago 8 minutes, 45 seconds 12 views" title="၈၉၉။ ထိနမိဒၶရွိေနလွ်င္ ေထာင္က်ေနသူႏွင့္ တူပံု" style="font-family: ZawGyi-One !important;">
၈၉၉။ ထိနမိဒၶရွိေနလွ်င္ ေထာင္က်ေနသူႏွင့္ တူပံု
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">900</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-WkPVEPx9VY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=901">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-WkPVEPx9VY&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s&index=901">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/-WkPVEPx9VY/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCWnRFOgaawecy34DeV3EZ9FdpNFw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="16 minutes">
16:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၀၀။ ဦးဇနိတာလကၤာရ၏ အာဟာရစားနည္း by mogok sayadaw 1 year ago 16 minutes 110 views" title="၉၀၀။ ဦးဇနိတာလကၤာရ၏ အာဟာရစားနည္း" style="font-family: ZawGyi-One !important;">
၉၀၀။ ဦးဇနိတာလကၤာရ၏ အာဟာရစားနည္း
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">901</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=xGXUg1ZzPBg&index=902&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=xGXUg1ZzPBg&index=902&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/xGXUg1ZzPBg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBIejDHQsAkGQ7YYfgxvlnTeJ-INQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="20 minutes">
20:24
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၀၁။ ပခုကၠဳဆရာေတာ္ အိပ္ရာႏိုးတရား ၆.၇.၁၉၆၂ by mogok sayadaw 1 year ago 20 minutes 682 views" title="၉၀၁။ ပခုကၠဳဆရာေတာ္ အိပ္ရာႏိုးတရား ၆.၇.၁၉၆၂" style="font-family: ZawGyi-One !important;">
၉၀၁။ ပခုကၠဳဆရာေတာ္ အိပ္ရာႏိုးတရား ၆.၇.၁၉၆၂
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">902</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=-WvMhjpUxtI&index=903&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=-WvMhjpUxtI&index=903&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/-WvMhjpUxtI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDmvUDOxNYS8lwdMXET1r7SZ0Qo8g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="45 minutes">
45:18
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၀၂။ သစၥာဥာဏ္တရားေတာ္ ၂၈.၇.၁၉၆၁ by mogok sayadaw 1 year ago 45 minutes 10 views" title="၉၀၂။ သစၥာဥာဏ္တရားေတာ္ ၂၈.၇.၁၉၆၁" style="font-family: ZawGyi-One !important;">
၉၀၂။ သစၥာဥာဏ္တရားေတာ္ ၂၈.၇.၁၉၆၁
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">903</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gqWjVzZ27Kg&index=904&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gqWjVzZ27Kg&index=904&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/gqWjVzZ27Kg/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLB13swhaU3GOwPWr4mtQVGCiyja2g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="44 minutes">
44:49
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၀၃။ မဂ္ဥာဏ္သာကိုးစားရာ အားထားရာအစစ္ျဖစ္ပံု ၁၂.၁၁.၁၉၆၁ by mogok sayadaw 1 year ago 44 minutes 9 views" title="၉၀၃။ မဂ္ဥာဏ္သာကိုးစားရာ အားထားရာအစစ္ျဖစ္ပံု ၁၂.၁၁.၁၉၆၁" style="font-family: ZawGyi-One !important;">
၉၀၃။ မဂ္ဥာဏ္သာကိုးစားရာ အားထားရာအစစ္ျဖစ္ပံု ၁၂.၁၁.၁၉၆၁
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">904</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=TNXBmpsyHC4&index=905&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=TNXBmpsyHC4&index=905&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/TNXBmpsyHC4/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAh19BGaNoSbuWEWbmT9-KXGmLHAA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:04
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၀၄။ အႏၱရာယ္မကင္းေဘးမရွင္းရျခင္းအေၾကာင္းရင္း ၂၇.၅.၁၉၆၁ by mogok sayadaw 1 year ago 59 minutes 12 views" title="၉၀၄။ အႏၱရာယ္မကင္းေဘးမရွင္းရျခင္းအေၾကာင္းရင္း ၂၇.၅.၁၉၆၁" style="font-family: ZawGyi-One !important;">
၉၀၄။ အႏၱရာယ္မကင္းေဘးမရွင္းရျခင္းအေၾကာင္းရင္း ၂၇.၅.၁၉၆၁
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">905</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Kt8s4FMArls&index=906&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Kt8s4FMArls&index=906&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Kt8s4FMArls/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDv_XmJpHP7RquESHz0JgTUWk_WAQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="28 minutes">
28:40
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၀၅။ မွတ္တမ္းတင္လမ္းမဆံုးဘဲ ခႏၶာကိုဥာဏ္ႏွင့္သိမွ နိဗၺာန္ရႏုိင္ပံု နိ၀ရဏ(၅)မ်ိဳး ၂၈.၅.၁၉၆၁ by mogok sayadaw 1 year ago 28 minutes 30 views" title="၉၀၅။ မွတ္တမ္းတင္လမ္းမဆံုးဘဲ ခႏၶာကိုဥာဏ္ႏွင့္သိမွ နိဗၺာန္ရႏုိင္ပံု နိ၀ရဏ(၅)မ်ိဳး ၂၈.၅.၁၉၆၁" style="font-family: ZawGyi-One !important;">
၉၀၅။ မွတ္တမ္းတင္လမ္းမဆံုးဘဲ ခႏၶာကိုဥာဏ္ႏွင့္သိမွ နိဗၺာန္ရႏုိင္ပံု နိ၀ရဏ(၅)မ်ိဳး ၂၈.၅.၁၉၆၁
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">906</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=mJZ7OSpPBg0&index=907&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=mJZ7OSpPBg0&index=907&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/mJZ7OSpPBg0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD8gfz3E7CVk1lMOn--aLN_2shVKQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="30 minutes">
30:03
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၀၆။ တဏွာမကုန္သ၍ ကံမေသသျဖင့္ ခႏၶာဒုကၡႏွင့္ အိုးစားမကြဲႏိုင္ပံု ၁၅.၁၂.၁၉၆၁ by mogok sayadaw 1 year ago 30 minutes 10 views" title="၉၀၆။ တဏွာမကုန္သ၍ ကံမေသသျဖင့္ ခႏၶာဒုကၡႏွင့္ အိုးစားမကြဲႏိုင္ပံု ၁၅.၁၂.၁၉၆၁" style="font-family: ZawGyi-One !important;">
၉၀၆။ တဏွာမကုန္သ၍ ကံမေသသျဖင့္ ခႏၶာဒုကၡႏွင့္ အိုးစားမကြဲႏိုင္ပံု ၁၅.၁၂.၁၉၆၁
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">907</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ur6VLM7Loaw&index=908&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ur6VLM7Loaw&index=908&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="50 minutes">
50:31
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၀၇။ ၀ိပႆနာဥာဏ္ မဂ္ဥာဏ္ျဖင့္ ကိေလသာနဲ႕ ကံအမိႈက္ရွင္းၾကရန္ ၁၃.၇.၁၉၆၁ by mogok sayadaw 1 year ago 50 minutes 10 views" title="၉၀၇။ ၀ိပႆနာဥာဏ္ မဂ္ဥာဏ္ျဖင့္ ကိေလသာနဲ႕ ကံအမိႈက္ရွင္းၾကရန္ ၁၃.၇.၁၉၆၁" style="font-family: ZawGyi-One !important;">
၉၀၇။ ၀ိပႆနာဥာဏ္ မဂ္ဥာဏ္ျဖင့္ ကိေလသာနဲ႕ ကံအမိႈက္ရွင္းၾကရန္ ၁၃.၇.၁၉၆၁
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">908</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=SPIbTkvrk8A&index=909&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=SPIbTkvrk8A&index=909&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="47 minutes">
47:22
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၀၈။ ဒုကၡမရွိတာ နိဗၺာန္ႏွင့္စိတ္ရႈနည္း ၁၇.၉.၁၉၆၂ by mogok sayadaw 1 year ago 47 minutes 17 views" title="၉၀၈။ ဒုကၡမရွိတာ နိဗၺာန္ႏွင့္စိတ္ရႈနည္း ၁၇.၉.၁၉၆၂" style="font-family: ZawGyi-One !important;">
၉၀၈။ ဒုကၡမရွိတာ နိဗၺာန္ႏွင့္စိတ္ရႈနည္း ၁၇.၉.၁၉၆၂
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">909</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=lPsiUQ7nW9c&index=910&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=lPsiUQ7nW9c&index=910&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition empty" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="59 minutes">
59:50
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၀၉။ ကတိနို႕၏ခ်ဳပ္ျငိမ္းရာသိမ္းရာ နိဗၺာန္သို႕ထြက္ၾကရန္ ၇.၇.၁၉၆၂ by mogok sayadaw 1 year ago 59 minutes 9 views" title="၉၀၉။ ကတိနို႕၏ခ်ဳပ္ျငိမ္းရာသိမ္းရာ နိဗၺာန္သို႕ထြက္ၾကရန္ ၇.၇.၁၉၆၂" style="font-family: ZawGyi-One !important;">
၉၀၉။ ကတိနို႕၏ခ်ဳပ္ျငိမ္းရာသိမ္းရာ နိဗၺာန္သို႕ထြက္ၾကရန္ ၇.၇.၁၉၆၂
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">910</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=4-xmso5niGk&index=911&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=4-xmso5niGk&index=911&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/4-xmso5niGk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAbr5Dxa4D05q0XXvJpRJs0DjaakA"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="41 minutes">
41:45
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၁၀။ ဒုကၡလွည့္ေနပံုႏွင့္ စိတ္ရႈနည္း ၃.၁၂.၁၉၆၁ by mogok sayadaw 1 year ago 41 minutes 13 views" title="၉၁၀။ ဒုကၡလွည့္ေနပံုႏွင့္ စိတ္ရႈနည္း ၃.၁၂.၁၉၆၁" style="font-family: ZawGyi-One !important;">
၉၁၀။ ဒုကၡလွည့္ေနပံုႏွင့္ စိတ္ရႈနည္း ၃.၁၂.၁၉၆၁
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">911</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=Wq8fM5FR4xk&index=912&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=Wq8fM5FR4xk&index=912&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/Wq8fM5FR4xk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBU9B993Jcfoh_A0rWc0Y9HYRxbOw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="51 minutes">
51:46
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၁၁။ ဇာတိ၊ ဇရာ၊ မရဏ ဒုကၡမီးႏွင့္ ၃၁ဘံု ၁၄.၆.၁၉၆၁ by mogok sayadaw 1 year ago 51 minutes 122 views" title="၉၁၁။ ဇာတိ၊ ဇရာ၊ မရဏ ဒုကၡမီးႏွင့္ ၃၁ဘံု ၁၄.၆.၁၉၆၁" style="font-family: ZawGyi-One !important;">
၉၁၁။ ဇာတိ၊ ဇရာ၊ မရဏ ဒုကၡမီးႏွင့္ ၃၁ဘံု ၁၄.၆.၁၉၆၁
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">912</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=foCDDlEGSFM&index=913&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=foCDDlEGSFM&index=913&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/foCDDlEGSFM/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA5cv0s-CIn2sg6HKRveKDdzZjt8w"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:40
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၁၂။ သခၤါရတရားအပ်က္ဆံုးသည္ နိဗၺာန္ျဖစ္ပံု ၁၅.၆.၁၉၆၁ by mogok sayadaw 1 year ago 46 minutes 14 views" title="၉၁၂။ သခၤါရတရားအပ်က္ဆံုးသည္ နိဗၺာန္ျဖစ္ပံု ၁၅.၆.၁၉၆၁" style="font-family: ZawGyi-One !important;">
၉၁၂။ သခၤါရတရားအပ်က္ဆံုးသည္ နိဗၺာန္ျဖစ္ပံု ၁၅.၆.၁၉၆၁
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">913</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=jDj1Gsh7oJc&index=914&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=jDj1Gsh7oJc&index=914&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/jDj1Gsh7oJc/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBNApSX3DPZrhZEZ7DChuFslTCwig"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:29
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၁၃။ ခႏၶာကိုယ္ျဖစ္ပ်က္ေမ့ေနလွ်င္ မသူေတာ္ေဘးသင့္ေနပံု ၃၁.၁.၁၉၆၀ by mogok sayadaw 1 year ago 53 minutes 12 views" title="၉၁၃။ ခႏၶာကိုယ္ျဖစ္ပ်က္ေမ့ေနလွ်င္ မသူေတာ္ေဘးသင့္ေနပံု ၃၁.၁.၁၉၆၀" style="font-family: ZawGyi-One !important;">
၉၁၃။ ခႏၶာကိုယ္ျဖစ္ပ်က္ေမ့ေနလွ်င္ မသူေတာ္ေဘးသင့္ေနပံု ၃၁.၁.၁၉၆၀
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">914</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=D22suLHQKBI&index=915&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=D22suLHQKBI&index=915&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/D22suLHQKBI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLDE_GoJOOQ78lQ6JNemVbhYLQVhlw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:00
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၁၄။ သကၠပဥၥသုတ္ တရားေတာ္ ၁၂.၂.၁၉၆၀ by mogok sayadaw 1 year ago 1 hour 24 views" title="၉၁၄။ သကၠပဥၥသုတ္ တရားေတာ္ ၁၂.၂.၁၉၆၀" style="font-family: ZawGyi-One !important;">
၉၁၄။ သကၠပဥၥသုတ္ တရားေတာ္ ၁၂.၂.၁၉၆၀
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">915</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=gZI_McDNO-Y&index=916&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=gZI_McDNO-Y&index=916&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/gZI_McDNO-Y/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLD6nGkvoiAEg_EcMATeWZ8eY_mb0g"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="53 minutes">
53:14
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၁၅။ မဟာပုဏာမသုတ္ တရားေတာ္ (၁) ၁၃.၂.၁၉၆၀ by mogok sayadaw 1 year ago 53 minutes 12 views" title="၉၁၅။ မဟာပုဏာမသုတ္ တရားေတာ္ (၁) ၁၃.၂.၁၉၆၀" style="font-family: ZawGyi-One !important;">
၉၁၅။ မဟာပုဏာမသုတ္ တရားေတာ္ (၁) ၁၃.၂.၁၉၆၀
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">916</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=QZfgTsgkjT0&index=917&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=QZfgTsgkjT0&index=917&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/QZfgTsgkjT0/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLBdrbn-rL2f4HlookN4-FbFUCW9gg"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="1 hour">
1:01:42
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၁၆။ ၀ိဥာဏ္အစကံအဆံုး၊ ပဋစၥသမုပၸါဒ္(၈)မ်ိဳး အျမဲျဖစ္ေနပံု ၂.၃.၁၉၆၀ by mogok sayadaw 1 year ago 1 hour 29 views" title="၉၁၆။ ၀ိဥာဏ္အစကံအဆံုး၊ ပဋစၥသမုပၸါဒ္(၈)မ်ိဳး အျမဲျဖစ္ေနပံု ၂.၃.၁၉၆၀" style="font-family: ZawGyi-One !important;">
၉၁၆။ ၀ိဥာဏ္အစကံအဆံုး၊ ပဋစၥသမုပၸါဒ္(၈)မ်ိဳး အျမဲျဖစ္ေနပံု ၂.၃.၁၉၆၀
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">917</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=ZL5xvD3XzEI&index=918&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=ZL5xvD3XzEI&index=918&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/ZL5xvD3XzEI/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLA-taPfYjdG3Yt5Z_KgC4hpGSghKw"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="46 minutes">
46:10
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၁၇။ ေသာတပန္အျမင္ေလးမ်ိဳးႏွင့္ ဖိုလ္၀င္စားပံု ၃.၃.၁၉၆၀ by mogok sayadaw 1 year ago 46 minutes 40 views" title="၉၁၇။ ေသာတပန္အျမင္ေလးမ်ိဳးႏွင့္ ဖိုလ္၀င္စားပံု ၃.၃.၁၉၆၀" style="font-family: ZawGyi-One !important;">
၉၁၇။ ေသာတပန္အျမင္ေလးမ်ိဳးႏွင့္ ဖိုလ္၀င္စားပံု ၃.၃.၁၉၆၀
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">918</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=vjo1KgfCHAw&index=919&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=vjo1KgfCHAw&index=919&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/vjo1KgfCHAw/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLCS7AqAxmHEjoq0MJyGg5IZ7e96ww"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="56 minutes">
56:59
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၁၈။ သမၼာဒိ႒ိငါးမ်ိဳးတရားေတာ္ အမွတ္(၅) ၉.၄.၁၉၆၀ by mogok sayadaw 1 year ago 56 minutes 23 views" title="၉၁၈။ သမၼာဒိ႒ိငါးမ်ိဳးတရားေတာ္ အမွတ္(၅) ၉.၄.၁၉၆၀" style="font-family: ZawGyi-One !important;">
၉၁၈။ သမၼာဒိ႒ိငါးမ်ိဳးတရားေတာ္ အမွတ္(၅) ၉.၄.၁၉၆၀
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer><ytd-playlist-video-renderer class="style-scope ytd-playlist-video-list-renderer">
<yt-icon id="reorder" icon="yt-icons:drag_handle" class="style-scope ytd-playlist-video-renderer"><svg viewBox="0 0 48 48" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g viewBox="0 0 48 48" class="style-scope yt-icon">
<path d="M0 18H10v4h24v-4zM8 30h26v-4H10v4z" class="style-scope yt-icon"></path>
</g></svg>
</yt-icon>
<yt-formatted-string id="index" class="style-scope ytd-playlist-video-renderer">919</yt-formatted-string>
<div id="content" class="style-scope ytd-playlist-video-renderer">
<a class="yt-simple-endpoint style-scope ytd-playlist-video-renderer" href="/watch?v=k9Hr8wekfw8&index=920&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<ytd-thumbnail id="thumbnail" height="68" width="120" class="style-scope ytd-playlist-video-renderer">
<a id="thumbnail" class="yt-simple-endpoint inline-block style-scope ytd-thumbnail" aria-hidden="true" tabindex="-1" rel="null" href="/watch?v=k9Hr8wekfw8&index=920&list=PLkAlGChAwhhzgGvAE3bSxho2ML5h5NK2h&t=0s">
<yt-img-shadow class="style-scope ytd-thumbnail no-transition" loaded="" style="background-color: transparent;"><img id="img" class="style-scope yt-img-shadow" alt="" width="120" src="https://i.ytimg.com/vi/k9Hr8wekfw8/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB&rs=AOn4CLAqW0Z3yjP8xd54_lk8HuW_ZncuxQ"></yt-img-shadow>
<div id="overlays" class="style-scope ytd-thumbnail"><ytd-thumbnail-overlay-time-status-renderer class="style-scope ytd-thumbnail" overlay-style="DEFAULT"><span class="style-scope ytd-thumbnail-overlay-time-status-renderer" aria-label="54 minutes">
54:21
</span></ytd-thumbnail-overlay-time-status-renderer></div>
<div id="mouseover-overlay" class="style-scope ytd-thumbnail"></div>
<div id="hover-overlays" class="style-scope ytd-thumbnail"></div>
</a>
</ytd-thumbnail>
<div id="meta" class="style-scope ytd-playlist-video-renderer">
<h3 class="style-scope ytd-playlist-video-renderer">
<ytd-badge-supported-renderer class="style-scope ytd-playlist-video-renderer">
<template is="dom-repeat" id="repeat" as="badge" class="style-scope ytd-badge-supported-renderer"></template>
</ytd-badge-supported-renderer>
<span id="video-title" class="style-scope ytd-playlist-video-renderer __zg __zg" aria-label="၉၁၉။ သုညတတရားနာမွ သုညတနိဗၺာန္ရမည္ တရားေတာ္ ၉.၄.၁၉၆၀ by mogok sayadaw 1 year ago 54 minutes 79 views" title="၉၁၉။ သုညတတရားနာမွ သုညတနိဗၺာန္ရမည္ တရားေတာ္ ၉.၄.၁၉၆၀" style="font-family: ZawGyi-One !important;">
၉၁၉။ သုညတတရားနာမွ သုညတနိဗၺာန္ရမည္ တရားေတာ္ ၉.၄.၁၉၆၀
</span>
</h3>
<ytd-video-meta-block class="playlist style-scope ytd-playlist-video-renderer">
<div id="metadata" class="style-scope ytd-video-meta-block">
<div id="byline-container" class="style-scope ytd-video-meta-block">
<div id="byline-inner-container" class="style-scope ytd-video-meta-block">
<yt-formatted-string id="byline" ellipsis-truncate="" class="style-scope ytd-video-meta-block complex-string" title="mogok sayadaw" has-link-only_=""><a class="yt-simple-endpoint style-scope yt-formatted-string" spellcheck="false" href="/channel/UCHaPaF21AHfchOSGGmln1Lg">mogok sayadaw</a></yt-formatted-string>
<ytd-badge-supported-renderer class="style-scope ytd-video-meta-block" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</div>
<div id="separator" class="style-scope ytd-video-meta-block">•</div>
</div>
<div id="metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" strip-whitespace="" class="style-scope ytd-video-meta-block"></template>
</div>
</div>
<div id="additional-metadata-line" class="style-scope ytd-video-meta-block">
<template is="dom-repeat" class="style-scope ytd-video-meta-block"></template>
</div>
</ytd-video-meta-block>
</div>
<ytd-badge-supported-renderer id="badges" class="style-scope ytd-playlist-video-renderer" disable-upgrade="" hidden="">
</ytd-badge-supported-renderer>
</a>
<div id="offer-button" class="style-scope ytd-playlist-video-renderer"></div>
</div>
<div id="menu" class="style-scope ytd-playlist-video-renderer" hidden=""></div>
</ytd-playlist-video-renderer></div>
"""
soup = BeautifulSoup(html, 'html.parser')
with open('new_file_test_today.txt', 'w') as f:
for data in soup.find_all('ytd-playlist-video-renderer'):
#print(data.find('yt-formatted-string'))
#print(data.find('a', attrs={'id':'thumbnail','class': 'yt-simple-endpoint inline-block style-scope ytd-thumbnail'}).get('href'))
try:
a_result = data.find('a', attrs={'id':'thumbnail','class': 'yt-simple-endpoint inline-block style-scope ytd-thumbnail'}).get('href')
id = a_result.split('&')[0].split('=')[1]
time = data.find('span', attrs={'class': 'style-scope ytd-thumbnail-overlay-time-status-renderer'}).get_text().strip()
title = data.find('span', attrs={'id': 'video-title'}).get_text().strip()
f.write('{}|||{}|||{}\n'.format(id, time, title))
except AttributeError as err:
print(err, 'err') | [
"[email protected]"
]
| |
902e1d1b428f38fde1ca93edfaae6cde5fc512c6 | 2e7d24351eb91ebf57d2dae23606b20661de6dd3 | /circuitpython/frozen/Adafruit_CircuitPython_BusDevice/adafruit_bus_device/i2c_device.py | d2ee118dc9a7b1c65b700920e096100a65a59646 | [
"MIT"
]
| permissive | BitKnitting/wakey_circuitpython | 9978d4a437cf7d9e671a1c9b3e10aa7cb3735df9 | 44da963f7f0422f93513f8b9efcdc6b9b704dc42 | refs/heads/master | 2020-03-21T15:46:18.362833 | 2018-08-31T12:33:07 | 2018-08-31T12:33:07 | 138,731,763 | 3 | 2 | null | 2018-07-03T12:03:54 | 2018-06-26T12:00:44 | Python | UTF-8 | Python | false | false | 4,107 | py | # The MIT License (MIT)
#
# Copyright (c) 2016 Scott Shawcroft for Adafruit Industries
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
`adafruit_bus_device.i2c_device` - I2C Bus Device
====================================================
"""
__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_BusDevice.git"
class I2CDevice:
"""
Represents a single I2C device and manages locking the bus and the device
address.
:param ~busio.I2C i2c: The I2C bus the device is on
:param int device_address: The 7 bit device address
.. note:: This class is **NOT** built into CircuitPython. See
:ref:`here for install instructions <bus_device_installation>`.
Example:
.. code-block:: python
import busio
from board import *
from adafruit_bus_device.i2c_device import I2CDevice
with busio.I2C(SCL, SDA) as i2c:
device = I2CDevice(i2c, 0x70)
bytes_read = bytearray(4)
with device:
device.readinto(bytes_read)
# A second transaction
with device:
device.write(bytes_read)
"""
def __init__(self, i2c, device_address):
# Verify that a deivce with that address exists.
while not i2c.try_lock():
pass
try:
i2c.writeto(device_address, b'')
except OSError:
raise ValueError("No I2C device at address: %x" % device_address)
finally:
i2c.unlock()
self.i2c = i2c
self.device_address = device_address
def readinto(self, buf, **kwargs):
"""
Read into ``buf`` from the device. The number of bytes read will be the
length of ``buf``.
If ``start`` or ``end`` is provided, then the buffer will be sliced
as if ``buf[start:end]``. This will not cause an allocation like
``buf[start:end]`` will so it saves memory.
:param bytearray buffer: buffer to write into
:param int start: Index to start writing at
:param int end: Index to write up to but not include
"""
self.i2c.readfrom_into(self.device_address, buf, **kwargs)
def write(self, buf, **kwargs):
"""
Write the bytes from ``buffer`` to the device. Transmits a stop bit if
``stop`` is set.
If ``start`` or ``end`` is provided, then the buffer will be sliced
as if ``buffer[start:end]``. This will not cause an allocation like
``buffer[start:end]`` will so it saves memory.
:param bytearray buffer: buffer containing the bytes to write
:param int start: Index to start writing from
:param int end: Index to read up to but not include
:param bool stop: If true, output an I2C stop condition after the buffer is written
"""
self.i2c.writeto(self.device_address, buf, **kwargs)
def __enter__(self):
while not self.i2c.try_lock():
pass
return self
def __exit__(self, *exc):
self.i2c.unlock()
return False
| [
"[email protected]"
]
| |
f979fef97028dcfc003ffad3e0d58622e1a3d5c9 | 01fcf89c5a4f1c67621e07c99a6092a27e92f34e | /homework_sample_answer/chap11/chap_11_01.py | 235eb1cbd7d84e732fbce991ab71320ba64ae7e5 | []
| no_license | fintalk/study-python | f3d86c06c4e3cdd2fcadf051ed883c78117f339e | 62cb9a9df0493e671b5ccb7fcb14703466fab324 | refs/heads/main | 2023-04-21T01:18:01.356090 | 2021-05-14T03:59:13 | 2021-05-14T03:59:13 | 317,142,313 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,316 | py | # P350 の urillibモジュールの機能を使う、を写経して実行してください
pass
# P351 を 読んでOrderedDictを使う、を写経して実行してください
from collections import OrderedDict
od = OrderedDict()
od["a"] = "A"
od["c"] = "C"
od["b"] = "B"
print(od)
d = {}
d["a"] = "A"
d["c"] = "C"
d["b"] = "B"
print(d)
# od から B を削除して下さい
od.popitem()
print(od)
# OrderedDict の公式ドキュメントを探してURLを記述して下さい。
# https://docs.python.org/ja/3/library/collections.html?highlight=ordereddict#collections.OrderedDict
# chap_06_02.md で勉強した dir 関数を使って od が持つメソッドや型を調べてプリントして下さい
print(dir(od))
# ⇑ のメソッドから、 od から値だけ取得するメソッドを探して実行して下さい。
print(od.values())
# P353のタプルからディクショナリを作る、を写経して実行してください
pass
# P354のsetdefault()メソッドを使う、を写経して実行してください
pass
# P354のdefalutdict を使う、を写経して実行してください。
pass
# defaultdictの公式ドキュメントを探してURLを記述して下さい。
# https://docs.python.org/ja/3/library/collections.html?highlight=defaultdict#collections.defaultdict
# P355の bisectモジュールの公式ドキュメントを探してURLを記述して下さい。
# https://docs.python.org/ja/3/library/bisect.html?highlight=bisect#module-bisect
# 以下のリストをソートして下さい
names = ['Emmalyn', 'Sorcha', 'Ina', 'Rennie', 'Blinni']
names.sort() # 破壊的変更
print(names)
# ソートした names にP355の insort_left をつかって Taro を挿入してください。注意:insort_left は bisect モジュールの関数ですので、import する必要があります。OrderedDict をインポートしたコードを参考にしてみてください。
import bisect
bisect.insort_left(names,"Taro")
print(names)
# ソートした names にP355の insort_left をつかって Hanako を挿入してください
bisect.insort_left(names,"Hanako")
print(names)
# ソートした names にP355の insort をつかって shinseitaro を挿入してください
bisect.insort(names,"shinseitaro")
print(names) | [
"[email protected]"
]
| |
9c9bcfe777119a1657627881597b927da34239e2 | 24cf6d01fc9485c2e5578523bce6313aab47a30e | /DataLoaders/Flat_DataLoader.py | 8118ed234c95d2e2ce6c7b176ab4bd64ba986bd0 | []
| no_license | sahahn/GenDiagFramework | 352212b2c540a6db73e810e416a9d3d4fa84f95a | 29498d3667d644d5b3a8fd0f0e277cbdd14027ba | refs/heads/master | 2020-04-14T06:10:10.609366 | 2019-06-18T20:22:31 | 2019-06-18T20:22:31 | 163,678,894 | 2 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,328 | py | from DataLoaders.IQ_DataLoader import IQ_DataLoader
import os
import numpy as np
def load_map(dr, name, ind):
left = np.load(dr + name + '-lh.npy')[:,:,ind]
right = np.load(dr + name + '-rh.npy')[:,:,ind]
full = np.stack([left, right], axis=-1)
return full
class Flat_DataLoader(IQ_DataLoader):
''' Input size refers to inds to select because Im a bad person'''
def load_data(self):
all_names = os.listdir(self.init_location)
all_names = [name for name in all_names if 'NDAR' in name]
names = [name.split('-')[0] for name in all_names]
names = list(set([name for name in names if name + '-rh.npy' in all_names and
name + '-lh.npy' in all_names and
name in self.iq_dict]))
map_inds = self.input_size
if self.preloaded == False:
s_norm_info = []
for ind in map_inds:
data = np.array([load_map(self.init_location, name, ind) for name in names[:500]])
data_mean = np.mean(data)
data -= data_mean
data_max = np.max(data)
data /= data_max
imax = np.max(data)
imin = np.min(data)
s_norm_info.append([data_mean, data_max, imax, imin])
for name in names:
if (len(self.data_points) < self.limit) and (name in self.iq_dict):
label = self.iq_dict[name]
dp = self.create_data_point(name, label)
if self.preloaded == False:
all_maps = []
for i in range(len(map_inds)):
data = load_map(self.init_location, name, map_inds[i])
data = data.astype('float32')
data -= s_norm_info[i][0]
data /= s_norm_info[i][1]
data -= s_norm_info[i][3]
data /= (s_norm_info[i][2] - s_norm_info[i][3])
all_maps.append(data)
all_maps = np.concatenate(all_maps, axis=-1)
dp.set_data(all_maps)
self.data_points.append(dp)
| [
"[email protected]"
]
| |
81c41286026d665cd68a617771359ef7abdc7b15 | 0bcd3d105e53286a1f9970dfef1d92c2fb67d738 | /tutorial/views.py | 1ee1c6df0dcde5662f94be624ea3851fd672e239 | []
| no_license | billy0402/django-todo-list | b2b9c74f4152d835521cdf9d088a0f79cb10a246 | 0ee51612ea9a91d866055724f4c325de8568b96d | refs/heads/master | 2022-03-20T15:55:03.911331 | 2019-09-28T01:08:39 | 2019-10-05T15:54:04 | 211,426,756 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,158 | py | from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def root(request):
s = '<h1>Hello World</h1>'
return HttpResponse(s)
def request_test(request):
# http://127.0.0.1:8000/tutorial/request_test/?s1=Hello&s2=World
s1 = request.GET.get('s1')
s2 = request.GET.get('s2')
return HttpResponse('<h1>{} {}</h1>'.format(s1, s2))
def render_test(request,n1,n2):
score = n1 + n2
return render(request,'render_test.html', {
'score': score
})
def homework(request, start, stop, base):
num_array = []
is_reversed = False
if start > stop:
# x = start
# start = stop
# stop = x
start, stop = stop, start
is_reversed = True
num_range = range(start,stop+1)
if is_reversed:
num_range = reversed(num_range)
if base == 1:
for num in num_range:
if num%2 == 1:
num_array.append(num)
else:
for num in num_range:
if num%2 == 0:
num_array.append(num)
return render(request,'homework.html',{
'num_array': num_array
})
| [
"[email protected]"
]
| |
de55d3bb9bde3646fcaf7ebfc3094bcb62b0b6c3 | 2357a471980f925ba58a9045868ec2cc9ad2a7c7 | /1haha.py | 0224529ebfc4ce78344f3e945f1502d88015f02e | []
| no_license | yyyuaaaan/pythonfirst | ec0a63eebf0ec753caf6119ce5c21178868f0135 | 8374e85646b0025be2689e96be2b3cbf6ac15109 | refs/heads/master | 2021-01-10T01:40:49.284641 | 2017-01-12T17:14:58 | 2017-01-12T17:14:58 | 52,094,871 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 4,858 | py | """
不要在iterate list 的时候改变它的值,会出错,要clone这个list再做操作。
for e1 in L1[:]: #在iterate的时候,拷贝一下list
L1=[1, 2, 3, 4]
L2=[1,2,5,6]
class BinaryTreeNode: # this will not work,python do not suppurt pointer, and recursion
def __init__(self,value=0):
self.value = value
self.left = BinaryTreeNode()
self.right = BinaryTreeNode()
stable sorting is good, donot exchange equal keys,
Sorting by insertion
Sorting by selection
Sorting by exchange
Unit test:会用stubs, 当软件还不存在,simulate来测试
L.sort 改变了list, sorted不改变list,return一个新的list
如果对dict 做sorted返回一个keys的list,如果用dict.sort,会出exception,因为dict没有sort
Some general rules of testing:
A testing unit should focus on one tiny bit of functionality and prove it correct.
Each test unit must be fully independent. Each of them must be able to run alone, and also within the test
suite, regardless of the order they are called. The implication of this rule is that each test must be loaded
with a fresh dataset and may have to do some cleanup afterwards. This is usually handled by setUp() and
tearDown() methods.
Try hard to make tests that run fast. If one single test needs more than a few millisecond to run, development
will be slowed down or the tests will not be run as often as desirable. In some cases, tests can’t be fast
because they need a complex data structure to work on, and this data structure must be loaded every time
the test runs. Keep these heavier tests in a separate test suite that is run by some scheduled task, and
run all other tests as often as needed.
Learn your tools and learn how to run a single test or a test case. Then, when developing a function inside
a module, run this function’s tests very often, ideally automatically when you save the code.
Always run the full test suite before a coding session, and run it again after. This will give you more
confidence that you did not break anything in the rest of the code.
It is a good idea to implement a hook that runs all tests before pushing code to a shared repository.
The first step when you are debugging your code is to write a new test pinpointing the bug. While it is not
always possible to do, those bug catching test are among the most valuable pieces of code in your project.
Use long and descriptive names for testing functions.
Regression testing
The intent of regression testing is to ensure that a change such as those mentioned above has not introduced
new faults.[1] One of the main reasons for regression testing is to determine whether a change in one part
of the software affects other parts of the software.[2]
Unit Test Libraries
The reasons why I choose and continue to use py.test are the simple test collection, the lack of boilerplate
and the ability to define set up and tear down functions at test, class or module level. For example for this
function:
def parse_connection(connection_string):
pass
Whilst the same test in py.test is more simple:
from parse_conn import parse_connection
import py.test
def test_not_at():
py.test.raises(ValueError, parse_connection, 'invalid uri')
"""
import py.test
#One more feature of py.test that is really useful is the ability to run all the tests in a subdirectory.
def test_div_zero():
py.test.raises(ZeroDivisionError, "1/0")
def func(x):
return x + 1
def test_answer():
assert func(3) == 5
def test_simple():
assert "42 is the answer" == str(42) + " " + "is the answer"
def test_multiply():
assert 42 == 6 * 7
def test_ord():
assert ord('a') + 1 == ord('b')
if __name__ == '__main__':
pytest.main()
def bsearch(l, value):
"""
shoude have left right index, and have a different solution see9.3
:param l:
:param value:
:return:
"""
lo, hi = 0, len(l)-1
while lo <= hi:
mid = (lo + hi) / 2
if l[mid] < value:
lo = mid + 1
elif value < l[mid]:
hi = mid - 1
else:
return mid
return -1
a = [1, 2, 3, 5, 9, 11, 15, 66]
print bsearch(a,7)
def merge_sort(A):
"""
Sort list A into order, and return result.
wrong
"""
n = len(A)
if n==1:
return A
mid = n//2 # floor division
L = merge_sort(A[:mid])
R = merge_sort(A[mid:])
return merge(L,R)
def merge(L,R):
"""
Given two sorted sequences L and R, return their merge.
"""
i = 0
j = 0
answer = []
while i<len(L) and j<len(R):
if L[i]<R[j]:
answer.append(L[i])
i += 1
else:
answer.append(R[j])
j += 1
if i<len(L):
answer.extend(L[i:])
if j<len(R):
answer.extend(R[j:])
return answer
| [
"[email protected]"
]
| |
cb92727f9560c4c2f70f0459267418a4fd1f1a67 | 0cd64f3f67c6a3b130a788906da84ffc3d15396a | /Library/lib/python3.9/site-packages/sympy/printing/tests/test_repr.py | 897e6ac2a9fb2bbad3ab7c3929577123087596b9 | [
"MIT",
"BSD-3-Clause",
"0BSD",
"LicenseRef-scancode-free-unknown",
"GPL-1.0-or-later",
"LicenseRef-scancode-other-copyleft",
"LicenseRef-scancode-python-cwi",
"Python-2.0"
]
| permissive | Ryorama/codeapp | 32ef44a3e8058da9858924df211bf82f5f5018f1 | cf7f5753c6c4c3431d8209cbaacf5208c3c664fa | refs/heads/main | 2023-06-26T09:24:13.724462 | 2021-07-27T17:54:25 | 2021-07-27T17:54:25 | 388,520,626 | 0 | 0 | MIT | 2021-07-22T16:01:32 | 2021-07-22T16:01:32 | null | UTF-8 | Python | false | false | 11,278 | py | from typing import Any, Dict
from sympy.testing.pytest import raises
from sympy import (symbols, sympify, Function, Integer, Matrix, Abs,
Rational, Float, S, WildFunction, ImmutableDenseMatrix, sin, true, false, ones,
sqrt, root, AlgebraicNumber, Symbol, Dummy, Wild, MatrixSymbol, Q)
from sympy.combinatorics import Cycle, Permutation
from sympy.core.symbol import Str
from sympy.geometry import Point, Ellipse
from sympy.printing import srepr
from sympy.polys import ring, field, ZZ, QQ, lex, grlex, Poly
from sympy.polys.polyclasses import DMP
from sympy.polys.agca.extensions import FiniteExtension
x, y = symbols('x,y')
# eval(srepr(expr)) == expr has to succeed in the right environment. The right
# environment is the scope of "from sympy import *" for most cases.
ENV = {"Str": Str} # type: Dict[str, Any]
exec("from sympy import *", ENV)
def sT(expr, string, import_stmt=None):
"""
sT := sreprTest
Tests that srepr delivers the expected string and that
the condition eval(srepr(expr))==expr holds.
"""
if import_stmt is None:
ENV2 = ENV
else:
ENV2 = ENV.copy()
exec(import_stmt, ENV2)
assert srepr(expr) == string
assert eval(string, ENV2) == expr
def test_printmethod():
class R(Abs):
def _sympyrepr(self, printer):
return "foo(%s)" % printer._print(self.args[0])
assert srepr(R(x)) == "foo(Symbol('x'))"
def test_Add():
sT(x + y, "Add(Symbol('x'), Symbol('y'))")
assert srepr(x**2 + 1, order='lex') == "Add(Pow(Symbol('x'), Integer(2)), Integer(1))"
assert srepr(x**2 + 1, order='old') == "Add(Integer(1), Pow(Symbol('x'), Integer(2)))"
assert srepr(sympify('x + 3 - 2', evaluate=False), order='none') == "Add(Symbol('x'), Integer(3), Mul(Integer(-1), Integer(2)))"
def test_more_than_255_args_issue_10259():
from sympy import Add, Mul
for op in (Add, Mul):
expr = op(*symbols('x:256'))
assert eval(srepr(expr)) == expr
def test_Function():
sT(Function("f")(x), "Function('f')(Symbol('x'))")
# test unapplied Function
sT(Function('f'), "Function('f')")
sT(sin(x), "sin(Symbol('x'))")
sT(sin, "sin")
def test_Geometry():
sT(Point(0, 0), "Point2D(Integer(0), Integer(0))")
sT(Ellipse(Point(0, 0), 5, 1),
"Ellipse(Point2D(Integer(0), Integer(0)), Integer(5), Integer(1))")
# TODO more tests
def test_Singletons():
sT(S.Catalan, 'Catalan')
sT(S.ComplexInfinity, 'zoo')
sT(S.EulerGamma, 'EulerGamma')
sT(S.Exp1, 'E')
sT(S.GoldenRatio, 'GoldenRatio')
sT(S.TribonacciConstant, 'TribonacciConstant')
sT(S.Half, 'Rational(1, 2)')
sT(S.ImaginaryUnit, 'I')
sT(S.Infinity, 'oo')
sT(S.NaN, 'nan')
sT(S.NegativeInfinity, '-oo')
sT(S.NegativeOne, 'Integer(-1)')
sT(S.One, 'Integer(1)')
sT(S.Pi, 'pi')
sT(S.Zero, 'Integer(0)')
def test_Integer():
sT(Integer(4), "Integer(4)")
def test_list():
sT([x, Integer(4)], "[Symbol('x'), Integer(4)]")
def test_Matrix():
for cls, name in [(Matrix, "MutableDenseMatrix"), (ImmutableDenseMatrix, "ImmutableDenseMatrix")]:
sT(cls([[x**+1, 1], [y, x + y]]),
"%s([[Symbol('x'), Integer(1)], [Symbol('y'), Add(Symbol('x'), Symbol('y'))]])" % name)
sT(cls(), "%s([])" % name)
sT(cls([[x**+1, 1], [y, x + y]]), "%s([[Symbol('x'), Integer(1)], [Symbol('y'), Add(Symbol('x'), Symbol('y'))]])" % name)
def test_empty_Matrix():
sT(ones(0, 3), "MutableDenseMatrix(0, 3, [])")
sT(ones(4, 0), "MutableDenseMatrix(4, 0, [])")
sT(ones(0, 0), "MutableDenseMatrix([])")
def test_Rational():
sT(Rational(1, 3), "Rational(1, 3)")
sT(Rational(-1, 3), "Rational(-1, 3)")
def test_Float():
sT(Float('1.23', dps=3), "Float('1.22998', precision=13)")
sT(Float('1.23456789', dps=9), "Float('1.23456788994', precision=33)")
sT(Float('1.234567890123456789', dps=19),
"Float('1.234567890123456789013', precision=66)")
sT(Float('0.60038617995049726', dps=15),
"Float('0.60038617995049726', precision=53)")
sT(Float('1.23', precision=13), "Float('1.22998', precision=13)")
sT(Float('1.23456789', precision=33),
"Float('1.23456788994', precision=33)")
sT(Float('1.234567890123456789', precision=66),
"Float('1.234567890123456789013', precision=66)")
sT(Float('0.60038617995049726', precision=53),
"Float('0.60038617995049726', precision=53)")
sT(Float('0.60038617995049726', 15),
"Float('0.60038617995049726', precision=53)")
def test_Symbol():
sT(x, "Symbol('x')")
sT(y, "Symbol('y')")
sT(Symbol('x', negative=True), "Symbol('x', negative=True)")
def test_Symbol_two_assumptions():
x = Symbol('x', negative=0, integer=1)
# order could vary
s1 = "Symbol('x', integer=True, negative=False)"
s2 = "Symbol('x', negative=False, integer=True)"
assert srepr(x) in (s1, s2)
assert eval(srepr(x), ENV) == x
def test_Symbol_no_special_commutative_treatment():
sT(Symbol('x'), "Symbol('x')")
sT(Symbol('x', commutative=False), "Symbol('x', commutative=False)")
sT(Symbol('x', commutative=0), "Symbol('x', commutative=False)")
sT(Symbol('x', commutative=True), "Symbol('x', commutative=True)")
sT(Symbol('x', commutative=1), "Symbol('x', commutative=True)")
def test_Wild():
sT(Wild('x', even=True), "Wild('x', even=True)")
def test_Dummy():
d = Dummy('d')
sT(d, "Dummy('d', dummy_index=%s)" % str(d.dummy_index))
def test_Dummy_assumption():
d = Dummy('d', nonzero=True)
assert d == eval(srepr(d))
s1 = "Dummy('d', dummy_index=%s, nonzero=True)" % str(d.dummy_index)
s2 = "Dummy('d', nonzero=True, dummy_index=%s)" % str(d.dummy_index)
assert srepr(d) in (s1, s2)
def test_Dummy_from_Symbol():
# should not get the full dictionary of assumptions
n = Symbol('n', integer=True)
d = n.as_dummy()
assert srepr(d
) == "Dummy('n', dummy_index=%s)" % str(d.dummy_index)
def test_tuple():
sT((x,), "(Symbol('x'),)")
sT((x, y), "(Symbol('x'), Symbol('y'))")
def test_WildFunction():
sT(WildFunction('w'), "WildFunction('w')")
def test_settins():
raises(TypeError, lambda: srepr(x, method="garbage"))
def test_Mul():
sT(3*x**3*y, "Mul(Integer(3), Pow(Symbol('x'), Integer(3)), Symbol('y'))")
assert srepr(3*x**3*y, order='old') == "Mul(Integer(3), Symbol('y'), Pow(Symbol('x'), Integer(3)))"
assert srepr(sympify('(x+4)*2*x*7', evaluate=False), order='none') == "Mul(Add(Symbol('x'), Integer(4)), Integer(2), Symbol('x'), Integer(7))"
def test_AlgebraicNumber():
a = AlgebraicNumber(sqrt(2))
sT(a, "AlgebraicNumber(Pow(Integer(2), Rational(1, 2)), [Integer(1), Integer(0)])")
a = AlgebraicNumber(root(-2, 3))
sT(a, "AlgebraicNumber(Pow(Integer(-2), Rational(1, 3)), [Integer(1), Integer(0)])")
def test_PolyRing():
assert srepr(ring("x", ZZ, lex)[0]) == "PolyRing((Symbol('x'),), ZZ, lex)"
assert srepr(ring("x,y", QQ, grlex)[0]) == "PolyRing((Symbol('x'), Symbol('y')), QQ, grlex)"
assert srepr(ring("x,y,z", ZZ["t"], lex)[0]) == "PolyRing((Symbol('x'), Symbol('y'), Symbol('z')), ZZ[t], lex)"
def test_FracField():
assert srepr(field("x", ZZ, lex)[0]) == "FracField((Symbol('x'),), ZZ, lex)"
assert srepr(field("x,y", QQ, grlex)[0]) == "FracField((Symbol('x'), Symbol('y')), QQ, grlex)"
assert srepr(field("x,y,z", ZZ["t"], lex)[0]) == "FracField((Symbol('x'), Symbol('y'), Symbol('z')), ZZ[t], lex)"
def test_PolyElement():
R, x, y = ring("x,y", ZZ)
assert srepr(3*x**2*y + 1) == "PolyElement(PolyRing((Symbol('x'), Symbol('y')), ZZ, lex), [((2, 1), 3), ((0, 0), 1)])"
def test_FracElement():
F, x, y = field("x,y", ZZ)
assert srepr((3*x**2*y + 1)/(x - y**2)) == "FracElement(FracField((Symbol('x'), Symbol('y')), ZZ, lex), [((2, 1), 3), ((0, 0), 1)], [((1, 0), 1), ((0, 2), -1)])"
def test_FractionField():
assert srepr(QQ.frac_field(x)) == \
"FractionField(FracField((Symbol('x'),), QQ, lex))"
assert srepr(QQ.frac_field(x, y, order=grlex)) == \
"FractionField(FracField((Symbol('x'), Symbol('y')), QQ, grlex))"
def test_PolynomialRingBase():
assert srepr(ZZ.old_poly_ring(x)) == \
"GlobalPolynomialRing(ZZ, Symbol('x'))"
assert srepr(ZZ[x].old_poly_ring(y)) == \
"GlobalPolynomialRing(ZZ[x], Symbol('y'))"
assert srepr(QQ.frac_field(x).old_poly_ring(y)) == \
"GlobalPolynomialRing(FractionField(FracField((Symbol('x'),), QQ, lex)), Symbol('y'))"
def test_DMP():
assert srepr(DMP([1, 2], ZZ)) == 'DMP([1, 2], ZZ)'
assert srepr(ZZ.old_poly_ring(x)([1, 2])) == \
"DMP([1, 2], ZZ, ring=GlobalPolynomialRing(ZZ, Symbol('x')))"
def test_FiniteExtension():
assert srepr(FiniteExtension(Poly(x**2 + 1, x))) == \
"FiniteExtension(Poly(x**2 + 1, x, domain='ZZ'))"
def test_ExtensionElement():
A = FiniteExtension(Poly(x**2 + 1, x))
assert srepr(A.generator) == \
"ExtElem(DMP([1, 0], ZZ, ring=GlobalPolynomialRing(ZZ, Symbol('x'))), FiniteExtension(Poly(x**2 + 1, x, domain='ZZ')))"
def test_BooleanAtom():
assert srepr(true) == "true"
assert srepr(false) == "false"
def test_Integers():
sT(S.Integers, "Integers")
def test_Naturals():
sT(S.Naturals, "Naturals")
def test_Naturals0():
sT(S.Naturals0, "Naturals0")
def test_Reals():
sT(S.Reals, "Reals")
def test_matrix_expressions():
n = symbols('n', integer=True)
A = MatrixSymbol("A", n, n)
B = MatrixSymbol("B", n, n)
sT(A, "MatrixSymbol(Str('A'), Symbol('n', integer=True), Symbol('n', integer=True))")
sT(A*B, "MatMul(MatrixSymbol(Str('A'), Symbol('n', integer=True), Symbol('n', integer=True)), MatrixSymbol(Str('B'), Symbol('n', integer=True), Symbol('n', integer=True)))")
sT(A + B, "MatAdd(MatrixSymbol(Str('A'), Symbol('n', integer=True), Symbol('n', integer=True)), MatrixSymbol(Str('B'), Symbol('n', integer=True), Symbol('n', integer=True)))")
def test_Cycle():
# FIXME: sT fails because Cycle is not immutable and calling srepr(Cycle(1, 2))
# adds keys to the Cycle dict (GH-17661)
#import_stmt = "from sympy.combinatorics import Cycle"
#sT(Cycle(1, 2), "Cycle(1, 2)", import_stmt)
assert srepr(Cycle(1, 2)) == "Cycle(1, 2)"
def test_Permutation():
import_stmt = "from sympy.combinatorics import Permutation"
sT(Permutation(1, 2), "Permutation(1, 2)", import_stmt)
def test_dict():
from sympy import srepr
from sympy.abc import x, y, z
d = {}
assert srepr(d) == "{}"
d = {x: y}
assert srepr(d) == "{Symbol('x'): Symbol('y')}"
d = {x: y, y: z}
assert srepr(d) in (
"{Symbol('x'): Symbol('y'), Symbol('y'): Symbol('z')}",
"{Symbol('y'): Symbol('z'), Symbol('x'): Symbol('y')}",
)
d = {x: {y: z}}
assert srepr(d) == "{Symbol('x'): {Symbol('y'): Symbol('z')}}"
def test_set():
from sympy import srepr
from sympy.abc import x, y
s = set()
assert srepr(s) == "set()"
s = {x, y}
assert srepr(s) in ("{Symbol('x'), Symbol('y')}", "{Symbol('y'), Symbol('x')}")
def test_Predicate():
sT(Q.even, "Q.even")
def test_AppliedPredicate():
sT(Q.even(Symbol('z')), "AppliedPredicate(Q.even, Symbol('z'))")
| [
"[email protected]"
]
| |
b50ea4f921725dc555649786318d9db6b0221eed | bc9f66258575dd5c8f36f5ad3d9dfdcb3670897d | /lib/surface/vmware/private_clouds/management_dns_zone_bindings/create.py | 0a1b65fdb80eb05ca00517f4a46682fb1e7a6968 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | google-cloud-sdk-unofficial/google-cloud-sdk | 05fbb473d629195f25887fc5bfaa712f2cbc0a24 | 392abf004b16203030e6efd2f0af24db7c8d669e | refs/heads/master | 2023-08-31T05:40:41.317697 | 2023-08-23T18:23:16 | 2023-08-23T18:23:16 | 335,182,594 | 9 | 2 | NOASSERTION | 2022-10-29T20:49:13 | 2021-02-02T05:47:30 | Python | UTF-8 | Python | false | false | 3,829 | py | # -*- coding: utf-8 -*- #
# Copyright 2022 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""'vmware private-clouds management-dns-zone-bindings create' command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.api_lib.vmware.managementdnszonebinding import ManagementDNSZoneBindingClient
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.vmware import flags
from googlecloudsdk.core import log
DETAILED_HELP = {
'DESCRIPTION':
"""
Create a management DNS zone binding.
""",
'EXAMPLES':
"""
To create a management DNS zone binding called `my-mgmt-dns-zone-binding` that corresponds to the vmware engine network `sample-vmware-engine-network` in private cloud
`my-private-cloud`, in location `us-east2-b`, run:
$ {command} my-mgmt-dns-zone-binding --project=my-project --private-cloud=my-private-cloud --location=us-east2-b --vmware-engine-network=sample-vmware-engine-network
Or:
$ {command} my-mgmt-dns-zone-binding --private-cloud=my-private-cloud --vmware-engine-network=sample-vmware-engine-network
In the second example, the project and location are taken from gcloud properties `core/project` and `compute/zone` respectively.
""",
}
@base.Hidden
@base.ReleaseTracks(base.ReleaseTrack.GA)
class Create(base.CreateCommand):
"""Create a management DNS zone binding."""
detailed_help = DETAILED_HELP
@staticmethod
def Args(parser):
"""Register flags for this command."""
flags.AddManagementDnsZoneBindingArgToParser(parser)
base.ASYNC_FLAG.AddToParser(parser)
base.ASYNC_FLAG.SetDefault(parser, True)
parser.display_info.AddFormat('yaml')
group = parser.add_mutually_exclusive_group(required=True)
group.add_argument(
'--vpc-network',
required=False,
help="""\
Resource name of the Google Cloud VPC network to bind to the management DNS zone of the private cloud.
""")
group.add_argument(
'--vmware-engine-network',
required=False,
help="""\
Resource name of VMware Engine network to bind to the management DNS zone of the private cloud.
""")
parser.add_argument(
'--description',
help="""\
Text describing the binding resource that represents the network getting bound to the management DNS zone.
""")
def Run(self, args):
mdzb = args.CONCEPTS.management_dns_zone_binding.Parse()
client = ManagementDNSZoneBindingClient()
is_async = args.async_
operation = client.Create(
mdzb,
vpc_network=args.vpc_network,
vmware_engine_network=args.vmware_engine_network,
description=args.description,
)
if is_async:
log.CreatedResource(
operation.name, kind='management DNS zone binding', is_async=True)
return
resource = client.WaitForOperation(
operation_ref=client.GetOperationRef(operation),
message=('waiting for management DNS zone binding [{}] ' +
'to be created').format(mdzb.RelativeName()))
log.CreatedResource(mdzb.RelativeName(), kind='management DNS zone binding')
return resource
| [
"[email protected]"
]
| |
18275199fd9c26d3212b785f9a9f49ab7414ab26 | 79c8b6f17f22dd6b72b7ab228e38539797b3d1e9 | /common/access/shortcuts.py | 146b418bcf109b49d1a4c7e022692711308aac33 | []
| no_license | wd5/system | ac81e76413c620a225fdaff335f5c59f6ebf5bd0 | 26d8453965598e5b28bf2178c5cd01e637ac89b7 | refs/heads/master | 2021-01-17T22:07:50.130502 | 2013-01-22T14:37:08 | 2013-01-22T14:37:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,598 | py | # -*- coding: utf-8 -*-
from django.contrib.auth.models import Group
from guardian.shortcuts import get_groups_with_perms, assign, remove_perm, get_perms_for_model
def check_perm_for_model(perm_name, model):
perms = get_perms_for_model(model)
for perm in perms:
if perm.codename == perm_name:
return True
return False
def assign_perm_for_groups_id(perm_name, object, groups_ids):
groups = Group.objects.filter(pk__in=groups_ids)
for group in groups:
assign(perm_name, group, object)
def remove_perm_for_groups_id(perm_name, object, groups_ids):
groups = Group.objects.filter(pk__in=groups_ids)
for group in groups:
remove_perm(perm_name, group, object)
def get_group_ids_for_object_perm(perm_name, object):
groups_dict = get_groups_with_perms(object, attach_perms=True)
groups_ids = []
for (group, perms) in groups_dict.iteritems():
if perm_name in perms: groups_ids.append(unicode(group.id))
return groups_ids
def edit_group_perms_for_object(perm_name, object, old_perm_groups_ids, new_perm_groups_ids):
remove_perm_groups_ids = []
for id in old_perm_groups_ids:
if id not in new_perm_groups_ids:
remove_perm_groups_ids.append(id)
if remove_perm_groups_ids:
remove_perm_for_groups_id(perm_name, object, remove_perm_groups_ids)
assign_perm_groups_ids = []
for i in new_perm_groups_ids:
if i not in old_perm_groups_ids:
assign_perm_groups_ids.append(i)
assign_perm_for_groups_id(perm_name, object, assign_perm_groups_ids)
| [
"[email protected]"
]
| |
fc07cc8aa332da4535122a8f44ad78050787f822 | bd5b3934969ebf4f693ceb4be17a68f9c3ebd414 | /beginPython/ch09/queen2.py | 0496019e7f12164f89f9d5fb28ddc7b2fe3a2ec6 | []
| no_license | lyk4411/untitled | bc46863d3bbb2b71edf13947f24b892c2cf43e1a | 875b7dfa765ffa40d76582d2ae41813d2e15c8bd | refs/heads/master | 2021-04-06T09:09:08.977227 | 2021-03-10T02:56:34 | 2021-03-10T02:56:34 | 124,990,530 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,238 | py | def conflict(state,nextx):
'定义冲突函数,state为元组,nextx为下一个皇后的水平位置,nexty为下一个皇后的垂直位置'
nexty = len(state)
for i in range(nexty):
if abs(state[i]-nextx) in (0,nexty-i):#若下一个皇后和前面的皇后列相同或者在一条对角线上,则冲突
return True
return False
def queens(num=8,state=()):
'八皇后问题,这里num表示规模'
for pos in range(num):
if not conflict(state,pos):#位置不冲突
# print("pos")
# print(pos)
if len(state) == num - 1:#若是最后一个皇后,则返回该位置
yield (pos,)
print("last pos:" + str(pos))
else:#若不是最后一个皇后,则将该位置返回到state元组并传给后面的皇后
for result in queens(num,state + (pos,)):
print("================")
print("state:" + str(state))
print("pos:" + str(pos,))
print("result:" + str(result))
print("================")
yield (pos,) + result
print(list(queens(4)))
# print(tuple(queens(4)))
| [
"[email protected]"
]
| |
06f83917b5ba4e8ace83e5b1da0fa8851fcb74f7 | c83473c2f9b63429f40e8a4806ab49305815c81d | /introduction/basic_version_celcius.py | 69e0eb4e50b6eb3724bf74838d7c3f1fd6c76375 | []
| no_license | pelinbalci/machinelearning | f8f84cda07a2ae87f23598188a6c148badb6e15f | 33e9786ea49f114c24c02dbf24e33434d0421f65 | refs/heads/master | 2022-11-15T19:55:46.633659 | 2020-07-05T18:38:54 | 2020-07-05T18:38:54 | 273,779,533 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 670 | py | # https://colab.research.google.com/github/tensorflow/examples/blob/master/courses/udacity_intro_to_tensorflow_for_deep_learning/l02c01_celsius_to_fahrenheit.ipynb
import numpy as np
import tensorflow as tf
celsius_q = np.array([-40, -10, 0, 8, 15, 22, 38], dtype=float)
fahrenheit_a = np.array([-40, 14, 32, 46, 59, 72, 100], dtype=float)
learning_rate = 0.1
define_layers = tf.keras.layers.Dense(units=1, input_shape=[1])
model = tf.keras.Sequential([define_layers])
model.compile(loss='mean_squared_error', optimizer=tf.keras.optimizers.Adam(learning_rate))
history = model.fit(celsius_q, fahrenheit_a, epochs=500, verbose=False)
print(model.predict([100]))
| [
"[email protected]"
]
| |
7f1db2986a6ad0c55e96979360f37996b7a2233f | b66985c330740d191b009abc46ff042c664eb3f6 | /sporthub/settings.py | 2d3b8bfce760454890cba8a644586e1aac1b09aa | []
| no_license | kalyevb/footbal_pole | fee9fc4e082ca6b7bbb779b52aad69f8c4a3620b | 349b528452369759fa570d36ae3489bfd9609f64 | refs/heads/master | 2022-05-09T13:30:12.493178 | 2019-12-17T15:52:51 | 2019-12-17T15:52:51 | 228,650,159 | 0 | 0 | null | 2022-04-22T22:57:22 | 2019-12-17T15:50:45 | Python | UTF-8 | Python | false | false | 4,303 | py | """
Django settings for sporthub project.
Generated by 'django-admin startproject' using Django 1.11.26.
For more information on this file, see
https://docs.djangoproject.com/en/1.11/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.11/ref/settings/
"""
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'qu40=oz3p%l0ej-7-b+9*7+@1^)y&fb1e3k@+@-^x^pf!wo(#x'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = ['mysite.com', 'localhost', '127.0.0.1']
# Application definition
INSTALLED_APPS = [
'account',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'social_django',
'fieldsapp',
'crispy_forms',
]
CRISPY_TEMPLATE_PACK = 'bootstrap4'
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'sporthub.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(BASE_DIR, 'templates')
],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'sporthub.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/1.11/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Asia/Bishkek'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/
STATIC_URL = '/static/'
STATICFILES_DIRS =[
os.path.join(BASE_DIR, 'static')
]
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
LOGIN_REDIRECT_URL = 'dashboard'
LOGIN_URL = 'login'
LOGOUT_URL = 'logout'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
AUTHENTICATION_BACKENDS = [
'django.contrib.auth.backends.ModelBackend',
'account.authentication.EmailAuthBackend',
'social_core.backends.facebook.FacebookOAuth2',
'social_core.backends.twitter.TwitterOAuth',
'social_core.backends.google.GoogleOAuth2',
]
SOCIAL_AUTH_FACEBOOK_KEY = '2154714614837357'
SOCIAL_AUTH_FACEBOOK_SECRET = 'c0f33b00efc22d24cd5c269314974cc9'
SOCIAL_AUTH_FACEBOOK_SCOPE = ['email']
SOCIAL_AUTH_TWITTER_KEY = 'XXX' # Twitter Consumer Key
SOCIAL_AUTH_TWITTER_SECRET = 'XXX' # Twitter Consumer Secret
SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = '11457369489-atfkrl6s5pg0je1lfjee7bb6hob62kg9.apps.googleusercontent.com'
SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET = 'yzT41pSaii4cnv2H-jla_JQD' | [
"[email protected]"
]
| |
1711f9fe6583e0525560bad95419872022ed4f1f | 879e06ea72c26dc4e7647fbd9e6eedb6bd3f0129 | /PKD/ch01/co11p224.py | 1d6d70bc9e80923c0205926e0e8d1f08ee862d04 | []
| no_license | IEP/submissions | 6b27f1ef5518ce7ebc60525b2e2e237c4a6bebec | 235aceee8bc48395b7fea25d00344554b22144f6 | refs/heads/master | 2022-04-15T09:08:48.391941 | 2020-04-05T15:08:16 | 2020-04-05T15:08:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 343 | py | #!/bin/python
a = input()
b = input()
flag = False
o = 'Tentu saja bisa!'
if len(a) == len(b)+1:
b += ' '
for i in range(len(a)):
if not (a[i] == b[i] or a[i] == b[i-1]):
if not flag:
flag = True
else:
o = 'Wah, tidak bisa :('
else:
o = 'Wah, tidak bisa :('
print(o)
| [
"[email protected]"
]
| |
643c167da61137f80baf505c741c81ef55235688 | 91075a58261b9858b6bba98968eca7f486175891 | /62_quickWeather.py | 1fa7bdcf712264adf01301da1841571191232f76 | []
| no_license | bingo8670/automat_the_boring_stuff_with_python | 4b144cfd58dd25ffd57bab205719d13c103320e3 | 493da9438ae7053d6140b67c53fcba95fe3deb18 | refs/heads/master | 2020-03-25T23:57:54.305785 | 2018-12-14T09:07:21 | 2018-12-14T09:07:21 | 144,301,078 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 946 | py | #! python3
# quickWeather.py - Prints the weather for a location from the command line.
import json, requests, sys
# Compute location from command line arguments.
if len(sys.argv) < 2:
print('Usage: quickWeather.py location')
sys.exit()
location = ' '.join(sys.argv[1:])
# Download the JSON data from OpenWeatherMap.org's API.
url ='http://api.openweathermap.org/data/2.5/forecast/daily?q=%s&cnt=3' % (location)
response = requests.get(url)
response.raise_for_status()
# Load JSON data into a Python variable. weatherData = json.loads(response.text) # Print weather descriptions.
w = weatherData['list']
print('Current weather in %s:' % (location))
print(w[0]['weather'][0]['main'], '-', w[0]['weather'][0]['description'])
print()
print('Tomorrow:')
print(w[1]['weather'][0]['main'], '-', w[1]['weather'][0]['description'])
print()
print('Day after tomorrow:')
print(w[2]['weather'][0]['main'], '-', w[2]['weather'][0]['description'])
| [
"[email protected]"
]
| |
796c928dadf5c6278d15c714e6bd6781ff12818f | 81c8baf31e15cf132b22cc489e7c8fc7b86003a4 | /linuxos/context_processors.py | 4ffb841705a623f5e4eac674d4a08e6f88c10080 | [
"MIT"
]
| permissive | LinuxOSsk/Shakal-NG | 0b0030af95a8dad4b120ae076920aa3a4020c125 | 93631496637cd3847c1f4afd91a9881cafb0ad83 | refs/heads/master | 2023-09-04T04:27:05.481496 | 2023-08-30T04:10:41 | 2023-08-30T04:10:41 | 2,168,932 | 11 | 8 | MIT | 2023-08-16T03:34:02 | 2011-08-07T14:36:25 | Python | UTF-8 | Python | false | false | 280 | py | # -*- coding: utf-8 -*-
from django.conf import settings as django_settings
def settings(request):
return {
'ANONYMOUS_COMMENTS': django_settings.ANONYMOUS_COMMENTS,
'ANONYMOUS_NEWS': django_settings.ANONYMOUS_NEWS,
'ANONYMOUS_TOPIC': django_settings.ANONYMOUS_TOPIC,
}
| [
"[email protected]"
]
| |
0214efaebbae426a3c2b41965d990bd4a617d92e | bc5484a8173bd937c56fb9a4c0dc6a54a5bb4d62 | /Set .union().py | 20b5ce453c1b811502f07c9ba7a3b3a9cfd5b817 | []
| no_license | PiyushChandra17/HackerRank_Python | 4686cc872ac622d1ec7b8206cca0efccdc15f235 | 443fa8484c81a56d652d546fa7cc4a0ba24b8185 | refs/heads/main | 2023-01-24T18:45:55.673808 | 2020-12-09T00:02:16 | 2020-12-09T00:02:16 | 319,788,277 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 97 | py |
_, A = input(),set(input().split())
_, B = input(),set(input().split())
print(len(A.union(B)))
| [
"[email protected]"
]
| |
5348f68bdd375eb497ae98d8ed944d330932b35f | 597ed154876611a3d65ca346574f4696259d6e27 | /dbaas/account/forms/user.py | 05ce9c8dfc4d9ad444b5f31238c03b90d4befc9e | []
| permissive | soitun/database-as-a-service | 41984d6d2177734b57d726cd3cca7cf0d8c5f5d6 | 1282a46a9437ba6d47c467f315b5b6a3ac0af4fa | refs/heads/master | 2023-06-24T17:04:49.523596 | 2018-03-15T19:35:10 | 2018-03-15T19:35:10 | 128,066,738 | 0 | 0 | BSD-3-Clause | 2022-05-10T22:39:58 | 2018-04-04T13:33:42 | Python | UTF-8 | Python | false | false | 1,538 | py | # -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
import logging
from django.utils.translation import ugettext_lazy as _
from django.contrib.auth.forms import UserChangeForm, UserCreationForm
from django import forms
LOG = logging.getLogger(__name__)
class CustomUserChangeForm(UserChangeForm):
def __init__(self, *args, **kwargs):
super(CustomUserChangeForm, self).__init__(*args, **kwargs)
user_field = forms.RegexField(
label=_("Username"), max_length=100, regex=r'^[\w.@+-]+$',
help_text=_("Required. 100 characters or fewer. Letters, digits and "
"@/./+/-/_ only."),
error_messages={
'invalid': _("This value may contain only letters, numbers and "
"@/./+/-/_ characters.")
}
)
self.fields['username'] = user_field
class CustomUserCreationForm(UserCreationForm):
def __init__(self, *args, **kwargs):
super(CustomUserCreationForm, self).__init__(*args, **kwargs)
user_field = forms.RegexField(
label=_("Username"), max_length=100, regex=r'^[\w.@+-]+$',
help_text=_("Required. 100 characters or fewer. Letters, digits and "
"@/./+/-/_ only."),
error_messages={
'invalid': _("This value may contain only letters, numbers and "
"@/./+/-/_ characters.")
}
)
self.fields['username'] = user_field
| [
"[email protected]"
]
| |
818277c61c410adf352a1317283a04d8cb8c17ac | d5328a2837883aaccdae8f7367cc4787ae70e070 | /Processors/DataProcessor.py | c12c65b609679d60ce974a260dfb182a22e28a8a | []
| no_license | FishRedLeaf/Bert-TextClassification | 3845e09dc1b25e66c7cfeffb3ce14bbd22dcef15 | b9da0b7a1f1964b482cfbedcad913498ffe7feb9 | refs/heads/master | 2020-05-28T09:33:11.638594 | 2019-05-24T10:19:40 | 2019-05-24T10:19:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,048 | py | # coding=utf-8
import csv
import sys
class DataProcessor(object):
"""Base class for data converters for sequence classification data sets."""
def get_train_examples(self, data_dir):
"""Gets a collection of `InputExample`s for the train set."""
raise NotImplementedError()
def get_dev_examples(self, data_dir):
"""Gets a collection of `InputExample`s for the dev set."""
raise NotImplementedError()
def get_labels(self):
"""Gets the list of labels for this data set."""
raise NotImplementedError()
@classmethod
def _read_tsv(cls, input_file, quotechar=None):
"""Reads a tab separated value file."""
with open(input_file, "r", encoding='utf-8') as f:
reader = csv.reader(f, delimiter="\t", quotechar=quotechar)
lines = []
for line in reader:
if sys.version_info[0] == 2:
line = list(unicode(cell, 'utf-8') for cell in line)
lines.append(line)
return lines
| [
"[email protected]"
]
| |
44fe4c04c6ddd445c93ccb8e9984814ada833c22 | f0a62605171bc62eb68dd884c77cf146657ec5cb | /library/f5bigip_net_vlan_interface.py | bb60660e07979ad7089d4656178a45cb28f870a6 | [
"Apache-2.0"
]
| permissive | erjac77/ansible-role-f5 | dd5cc32c4cc4c79d6eba669269e0d6e978314d66 | c45b5d9d5f34a8ac6d19ded836d0a6b7ee7f8056 | refs/heads/master | 2020-04-06T08:13:14.095083 | 2020-02-16T23:44:13 | 2020-02-16T23:44:13 | 240,129,047 | 3 | 1 | null | null | null | null | UTF-8 | Python | false | false | 4,146 | py | #!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright 2016 Eric Jacob <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
ANSIBLE_METADATA = {
"metadata_version": "1.1",
"status": ["preview"],
"supported_by": "community",
}
DOCUMENTATION = """
---
module: f5bigip_net_vlan_interface
short_description: BIG-IP net vlan interface module
description:
- Configures a tagged or untagged interface and trunk for a VLAN.
version_added: "1.0.0" # of erjac77.f5 role
author:
- "Eric Jacob (@erjac77)"
options:
tag_mode:
description:
- Specifies the tag mode of the interface or trunk associated with.
choices: ['customer', 'service', 'double', 'none']
tagged:
description:
- Specifies the type of the interface.
choices: ['true', 'false']
untagged:
description:
- Specifies the type of the interface.
choices: ['true', 'false']
vlan:
description:
- Specifies the vlan in which the interface belongs.
required: true
extends_documentation_fragment:
- f5_common
- f5_app_service
- f5_name
- f5_partition
- f5_state
"""
EXAMPLES = """
- name: Add NET VLAN Interface
f5bigip_net_vlan_interface:
provider:
server: "{{ ansible_host }}"
server_port: "{{ http_port | default(443) }}"
user: "{{ http_user }}"
password: "{{ http_pass }}"
validate_certs: false
name: 1.1
untagged: true
tag_mode: none
vlan: /Common/internal
state: present
delegate_to: localhost
"""
RETURN = """ # """
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.erjac77.network.f5.common import F5_NAMED_OBJ_ARGS
from ansible.module_utils.erjac77.network.f5.common import F5_PROVIDER_ARGS
from ansible.module_utils.erjac77.network.f5.bigip import F5BigIpNamedObject
class ModuleParams(object):
@property
def argument_spec(self):
argument_spec = dict(
tag_mode=dict(
type="str", choices=["customer", "service", "double", "none"]
),
tagged=dict(type="bool"),
untagged=dict(type="bool"),
vlan=dict(type="str", required=True),
)
argument_spec.update(F5_PROVIDER_ARGS)
argument_spec.update(F5_NAMED_OBJ_ARGS)
del argument_spec["partition"]
return argument_spec
@property
def supports_check_mode(self):
return True
@property
def mutually_exclusive(self):
return [["tagged", "untagged"]]
class F5BigIpNetVlanInterface(F5BigIpNamedObject):
def _set_crud_methods(self):
vlan = self._api.tm.net.vlans.vlan.load(
**self._get_resource_id_from_path(self._params["vlan"])
)
self._methods = {
"create": vlan.interfaces_s.interfaces.create,
"read": vlan.interfaces_s.interfaces.load,
"update": vlan.interfaces_s.interfaces.update,
"delete": vlan.interfaces_s.interfaces.delete,
"exists": vlan.interfaces_s.interfaces.exists,
}
del self._params["vlan"]
def main():
params = ModuleParams()
module = AnsibleModule(
argument_spec=params.argument_spec,
supports_check_mode=params.supports_check_mode,
mutually_exclusive=params.mutually_exclusive,
)
try:
obj = F5BigIpNetVlanInterface(check_mode=module.check_mode, **module.params)
result = obj.flush()
module.exit_json(**result)
except Exception as exc:
module.fail_json(msg=str(exc))
if __name__ == "__main__":
main()
| [
"[email protected]"
]
| |
1d1723243121552343f803b0adc17d95025ac667 | 11aaeaeb55d587a950456fd1480063e1aed1d9e5 | /.history/ex45-test_20190612192241.py | 37276da8d14d02df67279a69ce50e3a8905fe3b3 | []
| no_license | Gr4cchus/Learn-Python-3-The-Hard-Way | 8ce9e68f6a91ea33ea45fe64bfff82d65422c4a8 | f5fa34db16cdd6377faa7fcf45c70f94bb4aec0d | refs/heads/master | 2020-05-17T23:18:29.483160 | 2019-06-26T18:42:52 | 2019-06-26T18:42:52 | 184,023,439 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,746 | py |
class Scenes(object):
# def __init__(self):
# # self.starting_room = starting_room
# # self.locations = {
# # 'room1': Room1(),
# # 'room2': Room2()
# # }
map_list = [
'room1',
'room2',
'finish'
]
def start(self):
print("You are at the start")
print("Where would you like to go")
self.locations()
def room1(self):
print("You enter room 1")
print("Where would you like to go")
def room2(self):
print("You enter room 2")
print("Where would you like to go")
def finish(self):
print("You have finished")
exit(0)
def locations(self):
print("defself.map_list)
for i in self.map_list:
print(i)
# def locations(self):
# dict_locations = {
# 'room1': room1(),
# 'room2': room2()
# }
# return dict_locations
# dict_locations = {
# 'room1': room1(),
# 'room2': room2()
# }
# class Locations(Scenes):
# pass
# def map(self):
# dict_locations = {
# 'room1': room1(),
# 'room2': room2()
# }
# return dict_locations
# class Engine():
# def __init__(self, map):
# self.map = map
# def play(self):
# while True:
# # a = self.map.dict_locations
# print('yes')
thescenes = Scenes()
# thelocations = Locations()
# thedict = thelocations.map()
# while True:
# print("loop")
# thelocations.map.dict_locations.get('room1')
thescenes.start()
action = input("> ")
if action in thescenes.locations.map_list:
print("success")
| [
"[email protected]"
]
| |
d906481dbbceaebae4e4370ca5579524e678f153 | 9d9e0a269aca2280e841a083a5e10dc24a0eb14d | /build/rosserial/rosserial_mbed/catkin_generated/pkg.installspace.context.pc.py | 6241f97f8af16ab6afe029d36c62ce4e12ddfe1e | []
| no_license | JoseBalbuena181096/ROS_TUTORIAL | 9e4eb8116366f5c4e449afe2d16a6954fa9c9b05 | caba9b86f8456a660e8256abb8b75f45ed3b6dd7 | refs/heads/master | 2020-06-27T12:25:24.553275 | 2019-08-01T01:34:54 | 2019-08-01T01:34:54 | 199,954,345 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 463 | py | # generated from catkin/cmake/template/pkg.context.pc.in
CATKIN_PACKAGE_PREFIX = ""
PROJECT_PKG_CONFIG_INCLUDE_DIRS = "/home/jose/catkin_ws/install/include".split(';') if "/home/jose/catkin_ws/install/include" != "" else []
PROJECT_CATKIN_DEPENDS = "message_runtime".replace(';', ' ')
PKG_CONFIG_LIBRARIES_WITH_PREFIX = "".split(';') if "" != "" else []
PROJECT_NAME = "rosserial_mbed"
PROJECT_SPACE_DIR = "/home/jose/catkin_ws/install"
PROJECT_VERSION = "0.8.0"
| [
"[email protected]"
]
| |
a01b5418aa330eafea4e8e610fc1e9de8a1fa572 | 9ca9226e11162d39dd5ef2db23b853bfac80020b | /pages/tuozhen_NewsdetailPage.py | ac64187510e909cac772d477e4c490ff91729503 | []
| no_license | chenshl/py_app_autoTest | ede64a5f380926aa191e9f1ba86955eb6bd3725e | 5957112bf20f577ed71d851e73e1e1ce1800ff79 | refs/heads/master | 2020-03-12T11:02:51.630080 | 2018-04-29T08:49:39 | 2018-04-29T08:49:39 | 130,587,156 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 802 | py | #!/usr/bin/python
# coding:utf-8
# @author : csl
# @date : 2018/04/29 09:04
# 新闻详情页面
from appium import webdriver
from base.Element import Element
class NewsdetailPage(Element):
#评论框
comment = "//android.widget.EditText[contains(@text, '说两句')]"
comment_comment = "很好的移动医疗平台"
submit_comment = "//android.widget.Button[contains(@text, '提交评论')]"
#提交评论
def comment_click(self):
self.get_xpath(self.comment).send_keys(self.comment_comment)
self.wait_for_xpath(self.submit_comment)
self.get_xpath(self.submit_comment).click()
#登录后返回直接提交
def comment_submit_click(self):
self.wait_for_xpath(self.submit_comment)
self.get_xpath(self.submit_comment).click() | [
"[email protected]"
]
| |
9be5a3a01f914b8842b74aea6fd0a01f02607b5e | 0032c98333ffc0efdb920ecca31ab224378880e5 | /rpi-tutorial/RaspEasy1.py | c6acfd285bdcdc7fae9df32146d5ae3281c0daba | []
| no_license | raspibrick/install | bd1c6f9a8cb524f2ab5a2c17ad8c5463b768dffa | 96288d6ca21abd8fb993cc376e37c16473b54dd5 | refs/heads/master | 2021-01-10T05:00:39.159879 | 2019-07-25T09:46:04 | 2019-07-25T09:46:04 | 40,703,681 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 451 | py | # RaspEasy1.py
# Button press/release to switch on/off LED
import RPi.GPIO as GPIO
P_BUTTON = 12 # Button A
#P_BUTTON = 13 # Button B
P_LED = 7 # LED A
#P_LED = 11 # LED B
def setup():
GPIO.setmode(GPIO.BOARD)
GPIO.setup(P_BUTTON, GPIO.IN)
GPIO.setup(P_LED, GPIO.OUT)
print "starting..."
setup()
while True:
if GPIO.input(P_BUTTON) == GPIO.HIGH:
GPIO.output(P_LED, GPIO.HIGH)
else:
GPIO.output(P_LED, GPIO.LOW)
| [
"[email protected]"
]
| |
25df04cd684e2c1b6cf277adaf476d8e349154a0 | b74320ad439e37dfa48cd8db38dab3b7a20a36ff | /src/diffusers/utils/dummy_pt_objects.py | f4020b9b5cac491e2145c9c63b89c6e10f9e056e | [
"Apache-2.0"
]
| permissive | huggingface/diffusers | c82beba1ec5f0aba01b6744040a5accc41ec2493 | 5eeedd9e3336882d598091e191559f67433b6427 | refs/heads/main | 2023-08-29T01:22:52.237910 | 2023-08-28T18:16:27 | 2023-08-28T18:16:27 | 498,011,141 | 17,308 | 3,158 | Apache-2.0 | 2023-09-14T20:57:44 | 2022-05-30T16:04:02 | Python | UTF-8 | Python | false | false | 22,204 | py | # This file is autogenerated by the command `make fix-copies`, do not edit.
from ..utils import DummyObject, requires_backends
class AsymmetricAutoencoderKL(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class AutoencoderKL(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class AutoencoderTiny(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class ControlNetModel(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class ModelMixin(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class MultiAdapter(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class PriorTransformer(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class T2IAdapter(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class T5FilmDecoder(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class Transformer2DModel(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class UNet1DModel(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class UNet2DConditionModel(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class UNet2DModel(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class UNet3DConditionModel(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class VQModel(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
def get_constant_schedule(*args, **kwargs):
requires_backends(get_constant_schedule, ["torch"])
def get_constant_schedule_with_warmup(*args, **kwargs):
requires_backends(get_constant_schedule_with_warmup, ["torch"])
def get_cosine_schedule_with_warmup(*args, **kwargs):
requires_backends(get_cosine_schedule_with_warmup, ["torch"])
def get_cosine_with_hard_restarts_schedule_with_warmup(*args, **kwargs):
requires_backends(get_cosine_with_hard_restarts_schedule_with_warmup, ["torch"])
def get_linear_schedule_with_warmup(*args, **kwargs):
requires_backends(get_linear_schedule_with_warmup, ["torch"])
def get_polynomial_decay_schedule_with_warmup(*args, **kwargs):
requires_backends(get_polynomial_decay_schedule_with_warmup, ["torch"])
def get_scheduler(*args, **kwargs):
requires_backends(get_scheduler, ["torch"])
class AudioPipelineOutput(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class AutoPipelineForImage2Image(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class AutoPipelineForInpainting(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class AutoPipelineForText2Image(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class ConsistencyModelPipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DanceDiffusionPipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DDIMPipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DDPMPipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DiffusionPipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DiTPipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class ImagePipelineOutput(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class KarrasVePipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class LDMPipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class LDMSuperResolutionPipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class PNDMPipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class RePaintPipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class ScoreSdeVePipeline(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class CMStochasticIterativeScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DDIMInverseScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DDIMParallelScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DDIMScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DDPMParallelScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DDPMScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DEISMultistepScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DPMSolverMultistepInverseScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DPMSolverMultistepScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class DPMSolverSinglestepScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class EulerAncestralDiscreteScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class EulerDiscreteScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class HeunDiscreteScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class IPNDMScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class KarrasVeScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class KDPM2AncestralDiscreteScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class KDPM2DiscreteScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class PNDMScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class RePaintScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class SchedulerMixin(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class ScoreSdeVeScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class UnCLIPScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class UniPCMultistepScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class VQDiffusionScheduler(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
class EMAModel(metaclass=DummyObject):
_backends = ["torch"]
def __init__(self, *args, **kwargs):
requires_backends(self, ["torch"])
@classmethod
def from_config(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
@classmethod
def from_pretrained(cls, *args, **kwargs):
requires_backends(cls, ["torch"])
| [
"[email protected]"
]
| |
47ae774d608c22a3626c9bee64788db4ff3229a6 | 88ae8695987ada722184307301e221e1ba3cc2fa | /v8/tools/release/mergeinfo.py | 7136463afb265929947d5bc1429e69855cdc0582 | [
"BSD-3-Clause",
"SunPro",
"Apache-2.0"
]
| permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | Python | false | false | 5,496 | py | #!/usr/bin/env python3
# Copyright 2015 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# for py2/py3 compatibility
from __future__ import print_function
import argparse
import os
import sys
import re
from subprocess import Popen, PIPE
GIT_OPTION_HASH_ONLY = '--pretty=format:%H'
GIT_OPTION_NO_DIFF = '--quiet'
GIT_OPTION_ONELINE = '--oneline'
def git_execute(working_dir, args, verbose=False):
command = ["git", "-C", working_dir] + args
if verbose:
print("Git working dir: " + working_dir)
print("Executing git command:" + str(command))
p = Popen(args=command, stdin=PIPE, stdout=PIPE, stderr=PIPE)
output, err = p.communicate()
if p.returncode != 0:
raise Exception(err)
output = output.decode('utf-8')
if verbose:
print("Git return value: " + output)
return output
def describe_commit(git_working_dir, hash_to_search, one_line=False):
if one_line:
return git_execute(git_working_dir, ['show',
GIT_OPTION_NO_DIFF,
GIT_OPTION_ONELINE,
hash_to_search]).strip()
return git_execute(git_working_dir, ['show',
GIT_OPTION_NO_DIFF,
hash_to_search]).strip()
def get_followup_commits(git_working_dir, hash_to_search):
cmd = ['log', '--grep=' + hash_to_search, GIT_OPTION_HASH_ONLY,
'remotes/origin/main'];
return git_execute(git_working_dir, cmd).strip().splitlines()
def get_merge_commits(git_working_dir, hash_to_search):
merges = get_related_commits_not_on_main(git_working_dir, hash_to_search)
false_merges = get_related_commits_not_on_main(
git_working_dir, 'Cr-Branched-From: ' + hash_to_search)
false_merges = set(false_merges)
return ([merge_commit for merge_commit in merges
if merge_commit not in false_merges])
def get_related_commits_not_on_main(git_working_dir, grep_command):
commits = git_execute(git_working_dir, ['log',
'--all',
'--grep=' + grep_command,
GIT_OPTION_ONELINE,
'--decorate',
'--not',
'remotes/origin/main',
GIT_OPTION_HASH_ONLY])
return commits.splitlines()
def get_branches_for_commit(git_working_dir, hash_to_search):
branches = git_execute(git_working_dir, ['branch',
'--contains',
hash_to_search,
'-a']).strip()
branches = branches.splitlines()
return {branch.strip() for branch in branches}
def is_lkgr(branches):
return 'remotes/origin/lkgr' in branches
def get_first_canary(branches):
canaries = ([currentBranch for currentBranch in branches if
currentBranch.startswith('remotes/origin/chromium/')])
canaries.sort()
if len(canaries) == 0:
return 'No Canary coverage'
return canaries[0].split('/')[-1]
def get_first_v8_version(branches):
version_re = re.compile("remotes/origin/[0-9]+\.[0-9]+\.[0-9]+")
versions = [branch for branch in branches if version_re.match(branch)]
if len(versions) == 0:
return "--"
version = versions[0].split("/")[-1]
return version
def print_analysis(git_working_dir, hash_to_search):
print('1.) Searching for "' + hash_to_search + '"')
print('=====================ORIGINAL COMMIT START===================')
print(describe_commit(git_working_dir, hash_to_search))
print('=====================ORIGINAL COMMIT END=====================')
print('2.) General information:')
branches = get_branches_for_commit(git_working_dir, hash_to_search)
print('Is LKGR: ' + str(is_lkgr(branches)))
print('Is on Canary: ' + str(get_first_canary(branches)))
print('First V8 branch: ' + str(get_first_v8_version(branches)) + \
' (Might not be the rolled version)')
print('3.) Found follow-up commits, reverts and ports:')
followups = get_followup_commits(git_working_dir, hash_to_search)
for followup in followups:
print(describe_commit(git_working_dir, followup, True))
print('4.) Found merges:')
merges = get_merge_commits(git_working_dir, hash_to_search)
for currentMerge in merges:
print(describe_commit(git_working_dir, currentMerge, True))
print('---Merged to:')
mergeOutput = git_execute(git_working_dir, ['branch',
'--contains',
currentMerge,
'-r']).strip()
print(mergeOutput)
print('Finished successfully')
if __name__ == '__main__': # pragma: no cover
parser = argparse.ArgumentParser('Tool to check where a git commit was'
' merged and reverted.')
parser.add_argument('-g', '--git-dir', required=False, default='.',
help='The path to your git working directory.')
parser.add_argument('hash',
nargs=1,
help='Hash of the commit to be searched.')
args = sys.argv[1:]
options = parser.parse_args(args)
sys.exit(print_analysis(options.git_dir, options.hash[0]))
| [
"[email protected]"
]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.